Add imap_sieve plugin

This commit is contained in:
Tunui Franken 2024-07-25 19:04:59 +02:00
parent dfef9192ef
commit b1c0a4f8a1

View file

@ -192,3 +192,12 @@
- Junk
- Trash
notify: Reload dovecot service
- name: Add imap_sieve plugin
become: true
ansible.builtin.lineinfile:
path: /etc/dovecot/conf.d/20-imap.conf
regexp: '^(\s*)#?mail_plugins =.*'
backrefs: true
line: '\1mail_plugins = $mail_plugins quota imap_sieve'
notify: Reload dovecot service