You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
1.2 KiB

  1. ##
  2. ## Mailbox definitions
  3. ##
  4. # NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf.
  5. namespace inbox {
  6. #mailbox name {
  7. # auto=create will automatically create this mailbox.
  8. # auto=subscribe will both create and subscribe to the mailbox.
  9. #auto = no
  10. # Space separated list of IMAP SPECIAL-USE attributes as specified by
  11. # RFC 6154: \All \Archive \Drafts \Flagged \Junk \Sent \Trash
  12. #special_use =
  13. #}
  14. # These mailboxes are widely used and could perhaps be created automatically:
  15. #mailbox Drafts {
  16. # special_use = \Drafts
  17. #}
  18. mailbox INBOX.Junk {
  19. auto = subscribe
  20. special_use = \Junk
  21. }
  22. mailbox INBOX.Trash {
  23. auto = subscribe
  24. special_use = \Trash
  25. }
  26. # For \Sent mailboxes there are two widely used names. We'll mark both of
  27. # them as \Sent. User typically deletes one of them if duplicates are created.
  28. mailbox INBOX.Sent {
  29. special_use = \Sent
  30. }
  31. #mailbox "Sent Messages" {
  32. # special_use = \Sent
  33. #}
  34. # If you have a virtual "All messages" mailbox:
  35. #mailbox virtual/All {
  36. # special_use = \All
  37. #}
  38. # If you have a virtual "Flagged" mailbox:
  39. #mailbox virtual/Flagged {
  40. # special_use = \Flagged
  41. #}
  42. }