Mail : Add autoexpunge and Archive box.

This commit is contained in:
Dmitry Voronin 2024-08-30 06:20:09 +03:00
parent 907b0720ca
commit 3349b9a200
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -129,6 +129,14 @@ in {
dkimKeyDirectory = "/var/dkim";
mailboxes = {
All = {
auto = "subscribe";
specialUse = "All";
};
Archive = {
auto = "subscribe";
specialUse = "Archive";
};
Drafts = {
auto = "subscribe";
specialUse = "Drafts";
@ -136,14 +144,16 @@ in {
Junk = {
auto = "subscribe";
specialUse = "Junk";
autoexpunge = "7d";
};
Sent = {
auto = "subscribe";
specialUse = "Sent";
};
Trash = {
auto = "no";
auto = "subscribe";
specialUse = "Trash";
autoexpunge = "30d";
};
};