mail: Autoexpunge Junk and Trash after 60 days

This commit is contained in:
Charlotte Van Petegem 2023-12-28 13:46:11 +01:00
parent 71ba9ba18c
commit 5c99d153e9
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -71,6 +71,26 @@ in
memoryLimit = 4000;
};
lmtpSaveToDetailMailbox = "no";
mailboxes = {
Trash = {
auto = "no";
specialUse = "Trash";
autoexpunge = "60d";
};
Junk = {
auto = "subscribe";
specialUse = "Junk";
autoexpunge = "60d";
};
Drafts = {
auto = "subscribe";
specialUse = "Drafts";
};
Sent = {
auto = "subscribe";
specialUse = "Sent";
};
};
extraVirtualAliases = {
"team@accentor.tech" = [ "charlotte@vanpetegem.be" "robbe@vanpetegem.be" ];
};