ansible-role-postfix/tasks/install.yml

24 lines
467 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
2022-12-13 14:17:54 +01:00
- python3-pymysql
2022-10-11 09:19:06 +02:00
state: latest
2022-12-13 14:17:54 +01:00
update_cache: true