diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-10 01:21:34 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:52:55 +0200 |
commit | 199a909669e821c05d85172b4645e0c46dc1cff4 (patch) | |
tree | c4dfa560070c322e566640fd57285af8daec2da8 /roles/MSA | |
parent | ee046343f3bbb43dc48a8ad72b5cb16dc0a24ee6 (diff) |
Fix $smtpd_sender_restrictions.
On the MDA the domain is our 'mda.fripost.org', there is no need to
perform an extra DNS lookup.
The MSA does not perform local or virtual delivery, but relays
everything to the outgoing SMTP proxy.
On the MX, there is no need to check for recipient validity as we are
the final destination; but unsure that the RCPT TO address is a valid
recipient before doing the greylisting.
Diffstat (limited to 'roles/MSA')
-rw-r--r-- | roles/MSA/templates/etc/postfix/main.cf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/MSA/templates/etc/postfix/main.cf.j2 b/roles/MSA/templates/etc/postfix/main.cf.j2 index 36ec8d2..b23d6bb 100644 --- a/roles/MSA/templates/etc/postfix/main.cf.j2 +++ b/roles/MSA/templates/etc/postfix/main.cf.j2 @@ -118,7 +118,7 @@ smtpd_recipient_restrictions = reject_unknown_recipient_domain permit_mynetworks permit_sasl_authenticated - reject_unauth_destination + reject smtpd_data_restrictions = reject_unauth_pipelining |