diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/postfix/templates/main.cf | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/modules/postfix/templates/main.cf b/modules/postfix/templates/main.cf index 55482540..ae65b0bf 100644 --- a/modules/postfix/templates/main.cf +++ b/modules/postfix/templates/main.cf @@ -132,17 +132,21 @@ smtpd_data_restrictions = permit_mynetworks reject_unauth_pipelining reject_multi_recipient_bounce -smtpd_recipient_restrictions = reject_non_fqdn_recipient - reject_non_fqdn_sender +smtpd_recipient_restrictions = permit_mynetworks # not done yet, not sure if we need to offer this kind of service # permit_sasl_authenticated - permit_mynetworks - reject_unauth_destination reject_non_fqdn_helo_hostname + reject_non_fqdn_recipient + reject_non_fqdn_sender + check_sender_access hash:/etc/postfix/access + reject_rhsbl_helo dbl.spamhaus.org + reject_rhsbl_reverse_client dbl.spamhaus.org + reject_rhsbl_sender dbl.spamhaus.org + reject_rbl_client dbl.spamhaus.org + reject_unauth_destination reject_unknown_sender_domain reject_unknown_client <%- if classes.include?('postgrey') -%> check_policy_service unix:extern/postgrey/socket <%- end -%> - check_sender_access hash:/etc/postfix/access <%- end -%> |