From f735d5afd9fe573ae34bf8cd39f81277df629b76 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Fri, 2 Apr 2021 19:19:48 +0200 Subject: [PATCH] email: rename folder Junk->Spam --- email.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/email.nix b/email.nix index 80ae588..7d1a463 100644 --- a/email.nix +++ b/email.nix @@ -24,6 +24,14 @@ "abuse@eurofusion.eu" = "rnhmjoj@eurofusion.eu"; }; + mailboxes = { + # default IMAP folders + Sent = { specialUse = "Sent"; auto = "subscribe"; }; + Drafts = { specialUse = "Drafts"; auto = "subscribe"; }; + Spam = { specialUse = "Junk"; auto = "subscribe"; }; + Trash = { specialUse = "Trash"; auto = "no"; }; + }; + # Use Let's Encrypt certificate certificateScheme = 3;