dovecot.conf 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. protocols = imap pop3
  2. listen = *, ::
  3. base_dir = /run/dovecot/
  4. login_greeting = Mail Delivery Agent
  5. !include conf.d/*.conf
  6. !include_try conf.d/domains/*.conf
  7. service stats {
  8. unix_listener stats-writer {
  9. group = mail
  10. mode = 0660
  11. user = dovecot
  12. }
  13. }
  14. namespace {
  15. type = private
  16. separator = /
  17. inbox = yes
  18. list = yes
  19. mailbox Archive {
  20. auto = subscribe
  21. special_use = \Archive
  22. }
  23. mailbox Drafts {
  24. auto = subscribe
  25. special_use = \Drafts
  26. }
  27. mailbox Trash {
  28. auto = subscribe
  29. special_use = \Trash
  30. }
  31. mailbox "Deleted Messages" {
  32. auto = no
  33. special_use = \Trash
  34. }
  35. mailbox Spam {
  36. auto = subscribe
  37. special_use = \Junk
  38. }
  39. mailbox Junk {
  40. auto = no
  41. special_use = \Junk
  42. }
  43. mailbox Sent {
  44. auto = subscribe
  45. special_use = \Sent
  46. }
  47. mailbox "Sent Mail" {
  48. auto = no
  49. special_use = \Sent
  50. }
  51. mailbox "Sent Messages" {
  52. auto = no
  53. special_use = \Sent
  54. }
  55. }