]> gitweb.fluxo.info Git - puppet-mail.git/commitdiff
Removing noplaintext from smtpd_sasl_security_options as that prevents dovecot sasl...
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 8 Aug 2010 18:01:05 +0000 (15:01 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 8 Aug 2010 18:01:05 +0000 (15:01 -0300)
manifests/sasl.pp

index 91f60d8953804be8e7a190922d055f3e6fd1d7a8..be5619579b8a6face24eaf1851eb2e21c9c87f79 100644 (file)
@@ -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' }
 }