diff options
| author | toufic ar <contact@toufy.me> | 2026-07-08 22:52:51 +0300 |
|---|---|---|
| committer | toufic ar <contact@toufy.me> | 2026-07-08 22:52:51 +0300 |
| commit | e499d962d6e1749a28ff9a6a182c33c93619693c (patch) | |
| tree | e6ebbb14012441500504101a7d59843097212342 | |
| parent | 315c66056d00ab9fb63bddebaa693a8f51bddff0 (diff) | |
| download | servers-e499d962d6e1749a28ff9a6a182c33c93619693c.tar.gz servers-e499d962d6e1749a28ff9a6a182c33c93619693c.zip | |
mailserver update options
| -rw-r--r-- | aphrodite/mail/default.nix | 14 |
1 files 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 = { |
