docker-image-dovecot/15-mailboxes.conf
Mauro Torrez 10d675e8a5
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
add antispam support using imap sieve
2022-08-07 18:19:52 -03:00

38 lines
896 B
Plaintext

# NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf.
namespace inbox {
# These mailboxes are widely used and could perhaps be created automatically:
mailbox Drafts {
special_use = \Drafts
auto = subscribe
}
mailbox Junk {
special_use = \Junk
auto = subscribe
}
mailbox Trash {
special_use = \Trash
auto = subscribe
}
# For \Sent mailboxes there are two widely used names. We'll mark both of
# them as \Sent. User typically deletes one of them if duplicates are created.
mailbox Sent {
special_use = \Sent
}
mailbox "Sent Messages" {
special_use = \Sent
}
# If you have a virtual "All messages" mailbox:
mailbox virtual/All {
special_use = \All
comment = All messages
}
# If you have a virtual "Flagged" mailbox:
mailbox virtual/Flagged {
special_use = \Flagged
comment = Flagged messages
}
}