From: Silvio Rhatto Date: Sun, 8 Aug 2010 18:01:05 +0000 (-0300) Subject: Removing noplaintext from smtpd_sasl_security_options as that prevents dovecot sasl... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=c1105b21452d84383b284690af70f3796e706749;p=puppet-mail.git Removing noplaintext from smtpd_sasl_security_options as that prevents dovecot sasl auth to work --- 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' } }