diff options
-rw-r--r-- | manifests/sasl.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/sasl.pp b/manifests/sasl.pp index 91f60d8..be56195 100644 --- a/manifests/sasl.pp +++ b/manifests/sasl.pp @@ -3,10 +3,10 @@ class mail::sasl { postfix::config { "smtpd_sasl_type": value => 'dovecot' } postfix::config { "smtpd_sasl_auth_enable": value => 'yes' } postfix::config { "smtpd_sasl_local_domain": value => '$myhostname' } - postfix::config { "smtpd_sasl_security_options": value => 'noanonymous, noplaintext' } + postfix::config { "smtpd_sasl_security_options": value => 'noanonymous' } postfix::config { "smtpd_sasl_tls_security_options": value => 'noanonymous' } - postfix::config { "broken_sasl_auth_clients": value => 'yes' } + postfix::config { "smtpd_sasl_path": value => 'private/auth' } postfix::config { "smtpd_sasl_authenticated_header": value => 'yes' } postfix::config { "smtpd_tls_auth_only": value => 'yes' } - postfix::config { "smtpd_sasl_path": value => 'private/auth' } + postfix::config { "broken_sasl_auth_clients": value => 'yes' } } |