diff options
author | varac <varacanero@zeromail.org> | 2014-03-26 13:37:56 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-03-26 13:37:56 +0100 |
commit | ce35a9dc3457f87ebd8f87decfad1a55e7cfa27a (patch) | |
tree | c8538a52738b401ba1cb85b4690a2e7b415a182b /puppet/modules/site_postfix/manifests | |
parent | f3deb7db2648080bbe74dd4de9c7a45caadaff80 (diff) | |
parent | e7332f2370db83523c52ca2cf5510db001469093 (diff) |
Merge branch '0.6' of ssh://code.leap.se/leap_platform into 0.6
Diffstat (limited to 'puppet/modules/site_postfix/manifests')
-rw-r--r-- | puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp b/puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp index aea66f78..83e27376 100644 --- a/puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp +++ b/puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp @@ -1,11 +1,13 @@ +# Defines which mail addresses shouldn't be available and where they should fwd class site_postfix::mx::reserved_aliases { postfix::mailalias { - [ 'postmaster', 'hostmaster', 'domainadmin', 'certmaster', 'ssladmin', - 'arin-admin', 'administrator', 'webmaster', 'www-data', 'www', - 'nobody', 'sys', 'postgresql', 'mysql', 'bin', 'cron', 'lp', 'games', - 'maildrop', 'abuse', 'noc', 'security', 'usenet', 'news', 'uucp', - 'ftp' ]: + [ 'abuse', 'admin', 'arin-admin', 'administrator', 'bin', 'cron', + 'certmaster', 'domainadmin', 'games', 'ftp', 'hostmaster', 'lp', + 'maildrop', 'mysql', 'news', 'nobody', 'noc', 'postmaster', 'postgresql', + 'security', 'ssladmin', 'sys', 'usenet', 'uucp', 'webmaster', 'www', + 'www-data', + ]: ensure => present, recipient => 'root' } |