diff options
| author | 2024-07-30 20:10:35 +0200 | |
|---|---|---|
| committer | 2024-07-31 13:25:57 +0100 | |
| commit | efc8f04bb15fe4de2cd94e188423bf94dd0ab0a9 (patch) | |
| tree | e6f944d6017b65a3b5dfcee49c8a72c3810b3b71 /ansible/roles/postfix | |
| parent | postfix: basic anti-abuse parameters (diff) | |
neomutt: configure neomutt folder used by postfix
Diffstat (limited to 'ansible/roles/postfix')
| -rw-r--r-- | ansible/roles/postfix/meta/main.yml | 4 | ||||
| -rw-r--r-- | ansible/roles/postfix/tasks/main.yml | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ansible/roles/postfix/meta/main.yml b/ansible/roles/postfix/meta/main.yml new file mode 100644 index 0000000..addf15d --- /dev/null +++ b/ansible/roles/postfix/meta/main.yml @@ -0,0 +1,4 @@ +--- +dependencies: + # Mail client + - neomutt diff --git a/ansible/roles/postfix/tasks/main.yml b/ansible/roles/postfix/tasks/main.yml index 3340989..b8f3a35 100644 --- a/ansible/roles/postfix/tasks/main.yml +++ b/ansible/roles/postfix/tasks/main.yml @@ -1,5 +1,5 @@ --- -- name: Install postfix & mail client +- name: Install postfix & tools package: name: # Postfix & routing plugins @@ -9,8 +9,6 @@ - postsrsd # Security and anti-spam tools - postfix-policyd-spf-python - # Mail clients - - neomutt state: present tags: - role::postfix |