mailhub.conf 1020 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. protocols = imap pop3
  2. mail_driver = maildir
  3. mail_home = /srv/vmail/%{user | lower}
  4. mail_path = ~/mail
  5. mailbox_list_layout = maildir++
  6. mailbox_list_storage_escape_char = ^
  7. # MailHub's Maildir adapter stores folder names in IMAP Modified UTF-7 so it
  8. # remains compatible with imported Vesta/Dovecot Maildir++ trees.
  9. mailbox_list_utf8 = no
  10. mail_uid = 1000
  11. mail_gid = 1000
  12. ssl = yes
  13. namespace inbox {
  14. inbox = yes
  15. separator = /
  16. mailbox Archive {
  17. auto = subscribe
  18. special_use = \Archive
  19. }
  20. mailbox Drafts {
  21. auto = subscribe
  22. special_use = \Drafts
  23. }
  24. mailbox Junk {
  25. auto = subscribe
  26. special_use = \Junk
  27. }
  28. mailbox Sent {
  29. auto = subscribe
  30. special_use = \Sent
  31. }
  32. mailbox Trash {
  33. auto = subscribe
  34. special_use = \Trash
  35. }
  36. }
  37. service imap-login {
  38. chroot =
  39. process_min_avail = 1
  40. process_limit = 24
  41. inet_listener imaps {
  42. ssl = yes
  43. }
  44. }
  45. service pop3-login {
  46. chroot =
  47. process_min_avail = 0
  48. process_limit = 8
  49. inet_listener pop3s {
  50. ssl = yes
  51. }
  52. }