diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-03 04:26:26 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:52:20 +0200 |
commit | 1c357b55931a0d4fbd15d51d61ec4e81d4f38aa5 (patch) | |
tree | d5f37b52487f75c3ffe40a39c94ea570c32816a5 /roles/amavis/handlers | |
parent | dfe8b222dc5067e1019d7ab5744df55b2c314ce8 (diff) |
Install amavisd-new on the outgoing SMTP proxy.
For DKIM signing and virus checking.
Diffstat (limited to 'roles/amavis/handlers')
-rw-r--r-- | roles/amavis/handlers/main.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/amavis/handlers/main.yml b/roles/amavis/handlers/main.yml new file mode 100644 index 0000000..65287e3 --- /dev/null +++ b/roles/amavis/handlers/main.yml @@ -0,0 +1,10 @@ +--- +- name: Restart ClamAV + service: name=clamav-daemon state=restarted + +- name: Publish the public key in the DNS zone + # See the output of 'sudo genkeypair.sh dkim --privkey=/var/lib/dkim/outgoing.fripost.org.key' + fail: "msg={{ dkim.stdout }}" + +- name: Restart Amavis + service: name=amavis state=restarted |