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