summaryrefslogtreecommitdiffstats
path: root/roles/lists/templates
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2015-09-16 00:08:37 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-09-16 00:08:37 +0200
commit425c79ad30740340c46770315b9b6c7b06a04347 (patch)
tree1a7a7b541604b804f554e3879d6e9719bf7da3fa /roles/lists/templates
parent6e210e7ef813814f7ca1317b134a91bd6bb5b0fe (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/lists/templates')
-rw-r--r--roles/lists/templates/etc/postfix/main.cf.j24
1 files changed, 1 insertions, 3 deletions
diff --git a/roles/lists/templates/etc/postfix/main.cf.j2 b/roles/lists/templates/etc/postfix/main.cf.j2
index d286f27..b314d95 100644
--- a/roles/lists/templates/etc/postfix/main.cf.j2
+++ b/roles/lists/templates/etc/postfix/main.cf.j2
@@ -69,31 +69,29 @@ smtpd_tls_fingerprint_digest = sha256
strict_rfc821_envelopes = yes
smtpd_delay_reject = yes
disable_vrfy_command = yes
smtpd_client_restrictions =
permit_mynetworks
permit_tls_clientcerts
# We are the only ones using this proxy, but if things go wrong we
# want to know why
defer
smtpd_helo_required = yes
smtpd_helo_restrictions =
reject_invalid_helo_hostname
smtpd_sender_restrictions =
reject_non_fqdn_sender
smtpd_relay_restrictions =
+ reject_non_fqdn_recipient
permit_mynetworks
permit_tls_clientcerts
reject
-smtpd_recipient_restrictions =
- reject_non_fqdn_recipient
-
smtpd_data_restrictions =
reject_unauth_pipelining
# vim: set filetype=pfmain :