10 lines
197 B
Sieve
10 lines
197 B
Sieve
require ["regex","fileinto", "mailbox"];
|
|
# rule:[SPAM]
|
|
if anyof(
|
|
header :contains "X-Spam-Flag" "YES",
|
|
header :matches "X-Bogosity" "Spam*" )
|
|
{
|
|
fileinto :create "Junk";
|
|
stop;
|
|
}
|