ansible-role-postfix/tasks/install.yml

22 lines
442 B
YAML
Raw Normal View History

2022-10-11 09:19:06 +02:00
---
- name: Ensure mail server software is present
apt:
name:
- postfix-mysql
- postfix-doc
- certbot
- libsasl2-2
- libsasl2-modules
- libsasl2-modules-sql
- sasl2-bin
- libpam-mysql
- openssl
- postfix-policyd-spf-python
- altermime
- gamin
- amavisd-new
- spamassassin
- opendkim
- opendkim-tools
state: latest
update_cache: true