Add mail_uid / mail_gid for dovecot
This commit is contained in:
parent
2ec6a089e1
commit
ebb45b3a4a
1 changed files with 16 additions and 0 deletions
|
@ -101,6 +101,22 @@
|
||||||
line: 'mail_location = maildir:~/Maildir'
|
line: 'mail_location = maildir:~/Maildir'
|
||||||
notify: Reload dovecot service
|
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
|
- name: Add quota plugin
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.lineinfile:
|
ansible.builtin.lineinfile:
|
||||||
|
|
Loading…
Add table
Reference in a new issue