Guest User

Untitled

a guest
Dec 18th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. mail_plugins = $mail_plugins mailbox_alias
  2.  
  3. plugin {
  4. mailbox_alias_old = Sent
  5. mailbox_alias_new = Sent Messages
  6. mailbox_alias_old2 = Sent
  7. mailbox_alias_new2 = Verzonden items
  8. mailbox_alias_old3 = Sent
  9. mailbox_alias_new3 = Sent Items
  10. }
  11.  
  12. # NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf.
  13. namespace inbox {
  14. # These mailboxes are widely used and could perhaps be created automatically:
  15. mailbox INBOX.Drafts {
  16. auto = subscribe
  17. special_use = Drafts
  18. }
  19. mailbox INBOX.Junk {
  20. auto = subscribe
  21. special_use = Junk
  22. }
  23. mailbox INBOX.Trash {
  24. auto = subscribe
  25. special_use = Trash
  26. }
  27.  
  28. # For Sent mailboxes there are two widely used names. We'll mark both of
  29. # them as Sent. User typically deletes one of them if duplicates are created.
  30. mailbox Sent {
  31. special_use = Sent
  32. }
  33. mailbox "Sent Messages" {
  34. special_use = Sent
  35. }
  36. mailbox "Verzonden items" {
  37. auto = create
  38. special_use = Sent
  39. }
  40. mailbox "Sent Items" {
  41. auto = create
  42. special_use = Sent
  43. }
  44.  
  45. }
Add Comment
Please, Sign In to add comment