]> git.donarmstrong.com Git - dsa-puppet.git/commitdiff
We want to drop some aliases on exim systems
authorStephen Gran <steve@lobefin.net>
Sat, 29 Jun 2013 15:07:43 +0000 (16:07 +0100)
committerStephen Gran <steve@lobefin.net>
Sat, 29 Jun 2013 15:08:45 +0000 (16:08 +0100)
These do not affect the aliases in use on mail domains, just on the bare
machine name - so we are removing hostmast@franck.debian.org, not
hostmaster@ftp-master.debian.org, and so on.

Signed-off-by: Stephen Gran <steve@lobefin.net>
modules/exim/manifests/init.pp

index 727a097b1e2b3b34f5022f6ae33e2d95517dea66..9f362243fc08e28f3f6b7bde38c1e2b66c3bd804 100644 (file)
@@ -38,7 +38,7 @@ class exim {
                ensure  => absent,
                force   => true,
        }
-        # git checkouts through puppet.  yummy.
+       # git checkouts through puppet.  yummy.
        file { '/etc/exim4/email-virtualdomains':
                recurse => true,
                source => 'puppet:///modules/exim/email-virtualdomains',
@@ -150,11 +150,11 @@ class exim {
                domain      => 'ip6',
                rule        => "&SERVICE_RANGE(tcp, $mail_port, \$SMTP_V6_SOURCES)"
        }
-       dnsextras::tlsa_record{ "tlsa-mailport":
-               zone => 'debian.org',
+       dnsextras::tlsa_record{ 'tlsa-mailport':
+               zone     => 'debian.org',
                certfile => "/etc/puppet/modules/exim/files/certs/${::fqdn}.crt",
-               port => "$mail_port",
-               hostname => "$::fqdn",
+               port     => $mail_port,
+               hostname => $::fqdn,
        }
 
        # Do we actually want this?  I'm only doing it because it's harmless
@@ -166,4 +166,17 @@ class exim {
                rule        => '&SERVICE(tcp, 113)'
        }
 
+       # These only affect the alias @$fqdn, not say, @debian.org
+
+       mailalias { [
+               'postmaster',
+               'hostmaster',
+               'usenet',
+               'webmaster',
+               'abuse',
+               'noc',
+               'security',
+       ]:
+               ensure => absent
+       }
 }