You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
- name: install Amavis
|
|
ansible.builtin.apt:
|
|
name:
|
|
- postgrey
|
|
- amavisd-new
|
|
state: present
|
|
tags:
|
|
- amavis
|
|
|
|
- name: configure Amavis
|
|
ansible.builtin.template:
|
|
src: amavis.conf.j2
|
|
dest: /etc/amavis/conf.d/49-evolinux-defaults
|
|
mode: "0644"
|
|
notify: restart amavis
|
|
tags:
|
|
- amavis
|