ansible-role-postfix/tasks/install.yml

26 lines
534 B
YAML
Raw Permalink 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
2023-05-09 09:24:25 +02:00
- python3-certbot-apache
2022-10-11 09:19:06 +02:00
- 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
2023-02-22 13:57:12 +01:00
- prometheus-postfix-exporter
2022-10-11 09:19:06 +02:00
state: latest
2022-12-13 14:17:54 +01:00
update_cache: true