Add mail_uid / mail_gid for dovecot

This commit is contained in:
Tunui Franken 2025-03-25 12:19:08 +01:00
parent 2ec6a089e1
commit ebb45b3a4a

View file

@ -101,6 +101,22 @@
line: 'mail_location = maildir:~/Maildir'
notify: Reload dovecot service
- name: Configure mail_uid
become: true
ansible.builtin.lineinfile:
path: /etc/dovecot/conf.d/10-mail.conf
regexp: '^#?mail_uid =.*'
line: 'mail_uid = 5000'
notify: Reload dovecot service
- name: Configure mail_gid
become: true
ansible.builtin.lineinfile:
path: /etc/dovecot/conf.d/10-mail.conf
regexp: '^#?mail_gid =.*'
line: 'mail_gid = 5000'
notify: Reload dovecot service
- name: Add quota plugin
become: true
ansible.builtin.lineinfile: