mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
- Sieve script detects spam headers used by Rspamd and SpamAssassin - Autosubscribe to Archive, Drafts, Junk, Sent, Trash - Autoexpunge Trash and Junk folders - INBOX.Junk -> Junk, INBOX.Trash -> Trash, Sent Messages -> Sent
44 lines
775 B
Plaintext
44 lines
775 B
Plaintext
# Direct edits to this file will be lost!
|
|
# Manage your settings on Plinth <https://localhost/plinth/apps/email_server>
|
|
|
|
namespace inbox {
|
|
mailbox Archive {
|
|
auto = subscribe
|
|
special_use = \Archive
|
|
}
|
|
mailbox Drafts {
|
|
auto = subscribe
|
|
special_use = \Drafts
|
|
}
|
|
mailbox Junk {
|
|
auto = subscribe
|
|
autoexpunge = 30d
|
|
special_use = \Junk
|
|
}
|
|
mailbox Trash {
|
|
auto = subscribe
|
|
autoexpunge = 30d
|
|
special_use = \Trash
|
|
}
|
|
|
|
mailbox INBOX.Junk {
|
|
auto = no
|
|
autoexpunge = 30d
|
|
special_use = \Junk
|
|
}
|
|
mailbox INBOX.Trash {
|
|
auto = no
|
|
autoexpunge = 30d
|
|
special_use = \Trash
|
|
}
|
|
|
|
mailbox Sent {
|
|
auto = subscribe
|
|
special_use = \Sent
|
|
}
|
|
mailbox "Sent Messages" {
|
|
auto = no
|
|
special_use = \Sent
|
|
}
|
|
}
|