2023-01-30 22:33:01 +01:00
|
|
|
---
|
|
|
|
- name: Create MySQL virtual forwardings map file
|
|
|
|
template:
|
2023-01-30 22:37:46 +01:00
|
|
|
dest: /etc/postfix/mysql-virtual_forwardings_dbmail.cf
|
2023-01-30 22:33:01 +01:00
|
|
|
src: mysql-virtual_forwardings_dbmail.cf.j2
|
|
|
|
notify: Restart postfix
|
|
|
|
|
|
|
|
- name: Configure Postfix virtual mailbox maps
|
|
|
|
lineinfile:
|
|
|
|
path: /etc/postfix/main.cf
|
|
|
|
regexp: '^virtual_mailbox_domains = '
|
|
|
|
line: virtual_mailbox_domains = proxy:mysql:/etc/postfix/mysql-virtual_domains.cf proxy:mysql:/etc/postfix/mysql-virtual_forwardings_dbmail.cf
|
|
|
|
backup: true
|
|
|
|
notify: Restart postfix
|
|
|
|
|
|
|
|
|