dovecot.conf 976 B

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