Advertisement
svxvcer

Untitled

Oct 23rd, 2021
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  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.  
  8. namespace {
  9. type = private
  10. separator = /
  11. inbox = yes
  12. list = yes
  13.  
  14. mailbox Archive {
  15. auto = subscribe
  16. special_use = \Archive
  17. }
  18.  
  19. mailbox Drafts {
  20. auto = subscribe
  21. special_use = \Drafts
  22. }
  23.  
  24. mailbox Trash {
  25. auto = subscribe
  26. special_use = \Trash
  27. }
  28.  
  29. mailbox "Deleted Messages" {
  30. auto = no
  31. special_use = \Trash
  32. }
  33.  
  34. mailbox Spam {
  35. auto = subscribe
  36. special_use = \Junk
  37. }
  38.  
  39. mailbox Junk {
  40. auto = no
  41. special_use = \Junk
  42. }
  43.  
  44. mailbox Sent {
  45. auto = subscribe
  46. special_use = \Sent
  47. }
  48.  
  49. mailbox "Sent Mail" {
  50. auto = no
  51. special_use = \Sent
  52. }
  53.  
  54. mailbox "Sent Messages" {
  55. auto = no
  56. special_use = \Sent
  57. }
  58. }
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement