mg
03d10acea6
Tags angepasst Postfix Rolle erweitert mit Sender-Mail rewrite Port für Strato angepasst Rolle postfix in haertung eingebaut Bugfix: Vars2 Bugfix: Vars Doku postfix angepasst Defaults Postfix aktualisiert f2b Vars in GroupVars Fail2Ban parametrisiert KeePass: Postfix Absenderpasswort aktualisiert Vars und defaults ergänzt Rolle umbenannt in anderen Rollen Rolle umbenannt: mgrote.postfix-gmail --> mgrote.postfix postfix GroupVars auf Strato umgestellt postfix defaults aktualisiert Variablennamen postfix umbenannt Keepass: gmail_nutzer_passwort --> postfix_absender_passwort Co-authored-by: Michael Grote <38253905+quotengrote@users.noreply.github.com> Reviewed-on: mg/ansible#12
18 lines
503 B
YAML
18 lines
503 B
YAML
- name: hash_sasl_passwd
|
|
become: yes
|
|
command: /usr/sbin/postmap hash:/etc/postfix/sasl_passwd
|
|
|
|
- name: hash_sender_canonical
|
|
become: yes
|
|
command: /usr/sbin/postmap hash:/etc/postfix/sender_canonical
|
|
|
|
- name: postfix_reload
|
|
become: yes
|
|
systemd:
|
|
name: postfix
|
|
enabled: yes
|
|
state: restarted
|
|
notify: postfix_testmail
|
|
|
|
- name: postfix_testmail
|
|
shell: echo "postfix ist eingerichtet" | mail -s "{{ ansible_hostname }} - postfix" {{ empfaenger_mail }}
|