diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-05-16 18:26:53 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-05-16 18:26:55 +0200 |
commit | 2f9574850b356a746ee3ff9a8a311c450784b53c (patch) | |
tree | b4da3e9490c148c2ec1a67e7900bc6adaa27ffb9 /roles/MX/handlers | |
parent | 809a185dca11424cef6220b5314a8b7aed487164 (diff) |
MX: Install OpenDMARC to add Authentication-Results headers.
On the infrastructure boundary. We don't reject/quarantine as it would
affect members who forward their mail sent to <user@example.com> to
<user@fripost.org>. Members can install Sieve rules to send any
messages with failed Authentication-Results headers directly in their
spambox.
Diffstat (limited to 'roles/MX/handlers')
-rw-r--r-- | roles/MX/handlers/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/MX/handlers/main.yml b/roles/MX/handlers/main.yml index 9edf610..00223a5 100644 --- a/roles/MX/handlers/main.yml +++ b/roles/MX/handlers/main.yml @@ -1,6 +1,15 @@ --- +- name: systemctl daemon-reload + command: /bin/systemctl daemon-reload + - name: Reload Postfix service: name=postfix state=reloaded - name: Restart munin-node service: name=munin-node state=restarted + +- name: Stop OpenDMARC + service: name=opendmarc.service state=stopped + +- name: Restart OpenDMARC + service: name=opendmarc.socket state=restarted |