diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-09-16 00:08:37 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-09-16 00:08:37 +0200 |
commit | 425c79ad30740340c46770315b9b6c7b06a04347 (patch) | |
tree | 1a7a7b541604b804f554e3879d6e9719bf7da3fa /roles/MSA/templates/etc | |
parent | 6e210e7ef813814f7ca1317b134a91bd6bb5b0fe (diff) |
Fix address verification probes on the MSA.
Put all relay restrictions under smtpd_relay_restrictions and leave
smtpd_recipient_restrictions empty, since we don't do DNSBL.
Diffstat (limited to 'roles/MSA/templates/etc')
-rw-r--r-- | roles/MSA/templates/etc/postfix/main.cf.j2 | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/roles/MSA/templates/etc/postfix/main.cf.j2 b/roles/MSA/templates/etc/postfix/main.cf.j2 index 6e13cff..efcebef 100644 --- a/roles/MSA/templates/etc/postfix/main.cf.j2 +++ b/roles/MSA/templates/etc/postfix/main.cf.j2 @@ -98,33 +98,31 @@ strict_rfc821_envelopes = yes smtpd_delay_reject = yes disable_vrfy_command = yes address_verify_sender = $double_bounce_sender@$mydomain unverified_recipient_defer_code = 250 unverified_recipient_reject_code = 550 smtpd_client_restrictions = permit_sasl_authenticated reject smtpd_helo_required = yes smtpd_helo_restrictions = reject_invalid_helo_hostname smtpd_sender_restrictions = reject_non_fqdn_sender reject_unknown_sender_domain smtpd_relay_restrictions = - permit_mynetworks - permit_sasl_authenticated - reject - -smtpd_recipient_restrictions = reject_non_fqdn_recipient reject_unknown_recipient_domain reject_unverified_recipient + permit_mynetworks + permit_sasl_authenticated + reject smtpd_data_restrictions = reject_unauth_pipelining # vim: set filetype=pfmain : |