From 3349b9a2007d4668f3198a3677029e8402772731 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Fri, 30 Aug 2024 06:20:09 +0300 Subject: [PATCH] Mail : Add autoexpunge and Archive box. --- container/Mail.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/container/Mail.nix b/container/Mail.nix index 10646f6..9d6e44e 100644 --- a/container/Mail.nix +++ b/container/Mail.nix @@ -129,21 +129,31 @@ in { dkimKeyDirectory = "/var/dkim"; mailboxes = { + All = { + auto = "subscribe"; + specialUse = "All"; + }; + Archive = { + auto = "subscribe"; + specialUse = "Archive"; + }; Drafts = { auto = "subscribe"; specialUse = "Drafts"; }; Junk = { - auto = "subscribe"; - specialUse = "Junk"; + auto = "subscribe"; + specialUse = "Junk"; + autoexpunge = "7d"; }; Sent = { auto = "subscribe"; specialUse = "Sent"; }; Trash = { - auto = "no"; - specialUse = "Trash"; + auto = "subscribe"; + specialUse = "Trash"; + autoexpunge = "30d"; }; };