diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-05-05 14:11:02 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-05-05 14:11:02 +0100 |
commit | 5ee3071696cdde66a26b8366b1b99ff0d6f307fe (patch) | |
tree | adcadc2d406f3ff0086bcb45bbe7ef16857e26ab /share | |
parent | af9a357a6b13874ec6e1ccf30da00ef091a1d6d6 (diff) | |
download | pykolab-5ee3071696cdde66a26b8366b1b99ff0d6f307fe.tar.gz |
Correct smtpd_*_restrictions referring to a variable that is going to be expanded during parsing
Diffstat (limited to 'share')
-rw-r--r-- | share/templates/master.cf.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/templates/master.cf.tpl b/share/templates/master.cf.tpl index 139313e..df22651 100644 --- a/share/templates/master.cf.tpl +++ b/share/templates/master.cf.tpl @@ -19,9 +19,9 @@ submission inet n - n - - smtpd -o smtpd_sasl_auth_enable=yes -o smtpd_sasl_authenticated_header=yes -o smtpd_client_restrictions=permit_sasl_authenticated,reject - -o smtpd_data_restrictions=$submission_data_restrictions - -o smtpd_recipient_restrictions=$submission_recipient_restrictions - -o smtpd_sender_restrictions=$submission_sender_restrictions + -o smtpd_data_restrictions=\$submission_data_restrictions + -o smtpd_recipient_restrictions=\$submission_recipient_restrictions + -o smtpd_sender_restrictions=\$submission_sender_restrictions #smtps inet n - n - - smtpd # -o syslog_name=postfix/smtps |