Skip to content

Commit 1fd378b

Browse files
committed
Fix Dovecot configuration file
1 parent 63bdc74 commit 1fd378b

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed
Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
disable_plaintext_auth = no
2-
mail_location = maildir:/home/glpi/Maildir
1+
auth_allow_cleartext = no
2+
mail_driver = maildir
3+
mail_path = /home/glpi/Maildir
34
mail_max_userip_connections = 10000
45

5-
passdb {
6+
passdb password_file {
67
driver = passwd-file
7-
args = /etc/dovecot/passwd
8+
passwd_file_path = /etc/dovecot/passwd
89
}
9-
userdb {
10-
driver = static
11-
# 1000 is uid/gid of glpi user
12-
args = uid=1000 gid=1000 home=/home/glpi
10+
userdb static {
11+
fields {
12+
uid = 1000
13+
gid = 1000
14+
home = /home/glpi
15+
}
1316
}

0 commit comments

Comments
 (0)