summaryrefslogtreecommitdiff
path: root/aphrodite/mail/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'aphrodite/mail/default.nix')
-rw-r--r--aphrodite/mail/default.nix14
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 = {