blob: fbc127ab5c4d77642002bfdc2feaa7b5569eb876 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class mail::sasl {
# 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' }
postfix::config { "smtpd_sasl_tls_security_options": value => 'noanonymous' }
postfix::config { "smtpd_sasl_path": value => 'private/auth' }
postfix::config { "smtpd_tls_auth_only": value => 'yes' }
postfix::config { "broken_sasl_auth_clients": value => 'yes' }
}
|