25 lines
491 B
Plaintext
25 lines
491 B
Plaintext
|
# define any special IMAP folders here. You can force them to be created or
|
||
|
# created+subscribed automatically used the `auto` option.
|
||
|
namespace inbox {
|
||
|
mailbox Drafts {
|
||
|
auto = subscribe
|
||
|
special_use = \Drafts
|
||
|
}
|
||
|
mailbox Junk {
|
||
|
auto = create
|
||
|
special_use = \Junk
|
||
|
}
|
||
|
mailbox Trash {
|
||
|
auto = create
|
||
|
special_use = \Trash
|
||
|
}
|
||
|
mailbox Archive {
|
||
|
auto = subscribe
|
||
|
special_use = \Archive
|
||
|
}
|
||
|
mailbox Sent {
|
||
|
auto = subscribe
|
||
|
special_use = \Sent
|
||
|
}
|
||
|
}
|