Enables both sieve and managesieved, and adds a global rule that moves detected spam to a user's Junk folder automatically
7 lines
113 B
Sieve
7 lines
113 B
Sieve
require ["fileinto", "mailbox"];
|
|
|
|
if header :contains "X-Spam-Flag" "YES" {
|
|
fileinto :create "Junk";
|
|
stop;
|
|
}
|