From e499d962d6e1749a28ff9a6a182c33c93619693c Mon Sep 17 00:00:00 2001 From: toufic ar Date: Wed, 8 Jul 2026 22:52:51 +0300 Subject: mailserver update options --- aphrodite/mail/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/aphrodite/mail/default.nix b/aphrodite/mail/default.nix index c12e79d..de09a0e 100644 --- a/aphrodite/mail/default.nix +++ b/aphrodite/mail/default.nix @@ -24,6 +24,8 @@ in { systemDomain = domainFqdn; systemName = domainFqdn; systemContact = "postmaster@${domainFqdn}"; + workarounds.all = true; + hierarchySeparator = "/"; dmarcReporting.enable = true; tlsrpt.enable = true; @@ -34,23 +36,24 @@ in { mailboxes = { Archive = { auto = "subscribe"; - specialUse = "Archive"; + special_use = "\\Archive"; }; Drafts = { auto = "subscribe"; - specialUse = "Drafts"; + special_use = "\\Drafts"; }; Junk = { auto = "subscribe"; - specialUse = "Junk"; + special_use = "\\Junk"; }; Sent = { auto = "subscribe"; - specialUse = "Sent"; + special_use = "\\Sent"; }; Trash = { auto = "subscribe"; - specialUse = "Trash"; + fts_autoindex = false; + special_use = "\\Trash"; }; }; @@ -63,7 +66,6 @@ in { sendOnly = cfg.sendOnly; }) config.customOps.mailAccounts; - certificateScheme = "acme"; }; services.roundcube = { -- cgit v1.3.1