diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2013-12-11 01:03:42 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:51:21 +0200 |
commit | bd92a9f645f53da01c13d1411cef7fe20fdd4503 (patch) | |
tree | 1ed620eecf14fcf3c6b6995e91418a4531bd1a80 /roles/IMAP/tasks | |
parent | 025db13070cabde62aed0b9c694baaaa4538b205 (diff) |
wibble
Diffstat (limited to 'roles/IMAP/tasks')
-rw-r--r-- | roles/IMAP/tasks/mda.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/IMAP/tasks/mda.yml b/roles/IMAP/tasks/mda.yml index 39938fd..0d41669 100644 --- a/roles/IMAP/tasks/mda.yml +++ b/roles/IMAP/tasks/mda.yml @@ -1,36 +1,36 @@ - name: Install Postfix apt: pkg={{ item }} with_items: - postfix - postfix-ldap - name: Configure Postfix template: src=etc/postfix/main.cf.j2 dest=/etc/postfix-{{ postfix_instance[inst].name }}/main.cf owner=root group=root mode=0644 register: r notify: - Restart Postfix - name: Create directory /etc/postfix-.../virtual file: path=/etc/postfix-{{ postfix_instance[inst].name }}/virtual - owner=root group=root state=directory + owner=root group=root mode=0755 - name: Copy lookups tables copy: src=etc/postfix/virtual/{{ item }} dest=/etc/postfix-{{ postfix_instance[inst].name }}/virtual/{{ item }} owner=root group=root mode=0644 with_items: - mailbox_domains.cf - mailbox_maps.cf - transport_content_filter_maps.cf - name: Start Postfix service: name=postfix state=started when: not r.changed - meta: flush_handlers |