Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/core/plugins/trash.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ mail_plugins {
namespace inbox {
# Spam mailbox is emptied before Trash
mailbox Spam {
priority = 1
trash_priority = 1
}

# Trash mailbox is emptied before Sent
mailbox Trash {
priority = 2
trash_priority = 2
}

# If both Sent and "Sent Messages" mailboxes exist, the next oldest message
# to be deleted is looked up from both of the mailboxes.
mailbox Sent {
priority = 3
trash_priority = 3
}
mailbox "Sent Messages" {
priority = 3
trash_priority = 3
}
```
:::
Expand Down