summaryrefslogtreecommitdiffstats
path: root/roles/IMAP/tasks/mda.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/IMAP/tasks/mda.yml')
-rw-r--r--roles/IMAP/tasks/mda.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/IMAP/tasks/mda.yml b/roles/IMAP/tasks/mda.yml
index cef40a0..1aac519 100644
--- a/roles/IMAP/tasks/mda.yml
+++ b/roles/IMAP/tasks/mda.yml
@@ -9,28 +9,28 @@
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
state=directory
owner=root group=root
mode=0755
- name: Copy lookup 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
+ - mailbox.cf
+ - transport_content_filter.cf
- name: Start Postfix
service: name=postfix state=started
when: not r.changed
- meta: flush_handlers