Blackhole E-mail for some list owner addresses

For a few months we've been under a massive flood of spam targeting
the *-owner addresses of a number of our public mailing lists. As an
interim workaround, reject messages to the ones getting targeted
providing a custom rejection message explaining the situation.

Change-Id: I3f26963ce25875f1330a5be2447977a56a5ce84e
This commit is contained in:
Jeremy Stanley 2017-12-22 17:55:58 +00:00
parent c757a7f1c5
commit c96b265bdc

View File

@ -13,6 +13,25 @@ class openstack_project::lists(
mailman_domains => [$listdomain],
smtp_accept_max => '100',
smtp_accept_max_per_host => '10',
extra_aliases => {
'community-owner' => 'spam',
'foundation-owner' => 'spam',
'legal-discuss-owner' => 'spam',
'mailman-owner' => 'spam',
'marketing-owner' => 'spam',
'openstack-announce-owner' => 'spam',
'openstack-dev-owner' => 'spam',
'openstack-docs-owner' => 'spam',
'openstack-i18n-owner' => 'spam',
'openstack-operators-owner' => 'spam',
'openstack-owner' => 'spam',
'openstack-security-owner' => 'spam',
'openstack-tc-owner' => 'spam',
'openstack-vi-owner' => 'spam',
'user-committee-owner' => 'spam',
'women-of-openstack-owner' => 'spam',
'spam' => ':fail: delivery temporarily disabled due to ongoing spam flood',
},
}
class { 'mailman':