Enable Sieve and ManageSieve for Dovecot

Enables both sieve and managesieved, and adds a global rule that moves
detected spam to a user's Junk folder automatically
This commit is contained in:
2026-08-15 17:29:41 -06:00
parent 7345eaceb1
commit 451903f663
7 changed files with 87 additions and 3 deletions
@@ -0,0 +1,6 @@
require ["fileinto", "mailbox"];
if header :contains "X-Spam-Flag" "YES" {
fileinto :create "Junk";
stop;
}