configure mailman; group mailman tasks together
[ansible.git] / roles / email / tasks / main.yml
1 # daemons
2 - import_tasks: opendkim.yml
3   tags: opendkim
4   when: postfix.opendkim is defined
5 - import_tasks: dovecot.yml
6   when: postfix.dovecot is defined
7   tags: dovecot
8 - import_tasks: mailman.yml
9   when: postfix.mailman is defined and postfix.mailman
10   tags: mailman
11 - import_tasks: postfix.yml
12   tags: postfix
13 # some basic security stuff that relies on working email
14 - name: install apticron
15   apt: name=apticron state=latest