| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- protocols = imap pop3
- mail_driver = maildir
- mail_home = /srv/vmail/%{user | lower}
- mail_path = ~/mail
- mailbox_list_layout = maildir++
- mailbox_list_storage_escape_char = ^
- # MailHub's Maildir adapter stores folder names in IMAP Modified UTF-7 so it
- # remains compatible with imported Vesta/Dovecot Maildir++ trees.
- mailbox_list_utf8 = no
- mail_uid = 1000
- mail_gid = 1000
- ssl = yes
- namespace inbox {
- inbox = yes
- separator = /
- mailbox Archive {
- auto = subscribe
- special_use = \Archive
- }
- mailbox Drafts {
- auto = subscribe
- special_use = \Drafts
- }
- mailbox Junk {
- auto = subscribe
- special_use = \Junk
- }
- mailbox Sent {
- auto = subscribe
- special_use = \Sent
- }
- mailbox Trash {
- auto = subscribe
- special_use = \Trash
- }
- }
- service imap-login {
- chroot =
- inet_listener imaps {
- ssl = yes
- }
- }
- service pop3-login {
- chroot =
- inet_listener pop3s {
- ssl = yes
- }
- }
|