Add sieve plugin to dovecot
This commit is contained in:
parent
6891a6e771
commit
9ce0ae045f
1 changed files with 9 additions and 0 deletions
|
@ -117,3 +117,12 @@
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: "640"
|
mode: "640"
|
||||||
|
|
||||||
|
- name: Add sieve plugin
|
||||||
|
become: true
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/dovecot/conf.d/20-lmtp.conf
|
||||||
|
regexp: '^(\s*)#?mail_plugins =.*'
|
||||||
|
backrefs: true
|
||||||
|
line: '\1mail_plugins = $mail_plugins sieve'
|
||||||
|
notify: Reload dovecot service
|
||||||
|
|
Loading…
Reference in a new issue