Merge pull request #932 from ioannidesalex/patch-10

Dovecot fix for folders creation
This commit is contained in:
Serghey Rodin 2016-11-23 19:16:52 +03:00 committed by GitHub
commit ebdb1c4109

View file

@ -2,3 +2,23 @@ protocols = imap pop3
listen = *, :: listen = *, ::
base_dir = /var/run/dovecot/ base_dir = /var/run/dovecot/
!include conf.d/*.conf !include conf.d/*.conf
namespace {
type = private
separator = /
prefix =
inbox = yes
mailbox Sent {
auto = subscribe
special_use = \Sent
}
mailbox Drafts {
auto = subscribe
special_use = \Drafts
}
mailbox Trash {
auto = subscribe
special_use = \Trash
}
}