Postfix for non-mailhost #17

Merged
otthorn merged 9 commits from configure_postfix_for_non_mailhost into master 2021-02-16 02:51:21 +01:00
Showing only changes of commit f08b11445d - Show all commits

View file

@ -0,0 +1,14 @@
---
- name: Install postfix
apt:
name: postfix
update_cache: true
register: result
retries: 3
until: result is succeeded
- name: Configure postfix
template:
src: main.cf.j2
dest: /etc/postfix/main.cf
notify: restart postfix