13 lines
208 B
YAML
13 lines
208 B
YAML
|
---
|
||
|
- name: Install dependencies
|
||
|
pacman: name={{item}} state=present
|
||
|
with_items:
|
||
|
- postfix
|
||
|
- dovecot
|
||
|
- pigeonhole
|
||
|
- spamassassin
|
||
|
- procmail
|
||
|
notify:
|
||
|
- restart postfix
|
||
|
- restart dovecot
|