ansible/mail.yml
Crest e882a4760b Install passlib module for default Python version.
Referencing the package to install by origin port
instead of resulting package name picks the default
flavor of the port thus avoids depending on a specific
Python version.

Updates #33.
2024-10-02 14:39:11 +02:00

24 lines
428 B
YAML

---
- name: Install passlib
hosts:
- localhost
become: true
tasks:
- name: Install passlib
ansible.builtin.package:
name: security/py-passlib
state: present
- name: Deploy mail servers
hosts:
- mail
become: true
roles:
- role: dovecot
tags: [dovecot]
- role: rspamd
tags: [rspamd]
- role: postfix
tags: [postfix]
- role: mlmmj
tags: [mlmmj]