Update to 2023-11-22 16:00

This commit is contained in:
Daniel Berteaud
2023-11-22 16:00:28 +01:00
parent 91c6eec01c
commit e76462f776
6 changed files with 41 additions and 8 deletions

View File

@@ -1,5 +1,21 @@
---
- name: restart postfix
service: name=postfix state=restarted
- name: reload postfix
service: name=postfix state=reloaded
- name: rehash relay_auth
command: postmap /etc/postfix/relay_auth
notify: reload postfix
- name: rehash relay_domains
command: postmap /etc/postfix/relay_domains
notify: reload postfix
- name: rehash transport_maps
command: postmap /etc/postfix/transport_maps
notify: reload postfix
...