mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
I think it was added to improve the mail reputation (avoid being filtered as spam), but at lot has changed since it was added (+5 years ago), so let's remove it.
17 lines
388 B
YAML
17 lines
388 B
YAML
- name: Restart postfix
|
|
service:
|
|
name: postfix
|
|
state: restarted
|
|
|
|
- name: Reload postfix # noqa no-changed-when
|
|
command: postfix reload
|
|
|
|
- name: Postmap additional files # noqa no-changed-when
|
|
command: postmap /etc/postfix/{{ item }}
|
|
loop:
|
|
- domains
|
|
- msa_header_checks
|
|
|
|
- name: Update aliases db # noqa no-changed-when
|
|
command: postalias /etc/postfix/aliases
|