diff options
author | 2024-07-30 00:17:23 +0100 | |
---|---|---|
committer | 2024-07-31 13:25:56 +0100 | |
commit | 341f594544dc603eebb351dd0d40f54227dc5217 (patch) | |
tree | 94dd8d3921e92e554b3e38be07fa0526c6194d04 | |
parent | dmarc: add opendmarc role (diff) |
postfix: run received messages through opendmarc
-rw-r--r-- | ansible/roles/postfix/templates/main.cf.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ansible/roles/postfix/templates/main.cf.j2 b/ansible/roles/postfix/templates/main.cf.j2 index bd28cc4..b145556 100644 --- a/ansible/roles/postfix/templates/main.cf.j2 +++ b/ansible/roles/postfix/templates/main.cf.j2 @@ -23,10 +23,10 @@ smtpd_relay_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, - reject_unauth_pipelining + reject_unauth_pipelining, check_policy_service unix:private/policyd-spf, -smtpd_milters = inet:localhost:8891 +smtpd_milters = inet:localhost:8891,inet:localhost:8893 non_smtpd_milters = $smtpd_milters myorigin = /etc/mailname |