trash_priority
| Default | [None] | 
|---|---|
| Value | unsigned integer | 
If non-zero, enables the trash plugin for the mailbox with the specified priority. Mailboxes with smaller priority number are emptied before mailboxes with a larger priority number. If there are multiple mailboxes with the same priority, expunge the oldest mail from them first.
Example where Trash is emptied before Spam:
namespace inbox {
  mailbox Trash {
    trash_priority = 1
  }
  mailbox Spam {
    trash_priority = 2
  }
}