From 54c09abbf49c48cd22483d62cfde8f21ebc7db6e Mon Sep 17 00:00:00 2001 From: ymage Date: Sat, 27 Dec 2025 00:08:11 +0100 Subject: [PATCH] Update trash.md Replace priority with trash_priority --- docs/core/plugins/trash.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/core/plugins/trash.md b/docs/core/plugins/trash.md index ef522ac86..cdd5d6145 100644 --- a/docs/core/plugins/trash.md +++ b/docs/core/plugins/trash.md @@ -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 } ``` :::