diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/header_checks.pp | 14 | ||||
-rw-r--r-- | manifests/system.pp | 1 |
2 files changed, 2 insertions, 13 deletions
diff --git a/manifests/header_checks.pp b/manifests/header_checks.pp index 8b74a5e..d58d1c3 100644 --- a/manifests/header_checks.pp +++ b/manifests/header_checks.pp @@ -1,15 +1,3 @@ class mail::header_checks { - # Header checks - postfix::config { "header_checks": - value => 'regexp:/etc/postfix/header_checks', - require => File['/etc/postfix/header_checks'], - } - - file { "/etc/postfix/header_checks": - ensure => present, - owner => root, - group => root, - mode => 0644, - content => template('mail/postfix/header_checks.erb'), - } + # Place additional header checks here } diff --git a/manifests/system.pp b/manifests/system.pp index 9a67de4..ac39929 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -4,6 +4,7 @@ class mail::system { $postfix_use_dovecot_lda = "yes" $postfix_use_schleuder = "yes" $postfix_use_sympa = "yes" + $postfix_anon_sasl = "yes" $postfix_mydestination = '$myhostname, localhost.$mydomain, localhost' $postfix_default_relay_domains = '$mydestination' |