Franziska Kunsmann
f56703df2e
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good
The latter is YES even if the overall score is very low because of IP allowlisting.
11 lines
209 B
Sieve
11 lines
209 B
Sieve
require ["fileinto", "imap4flags"];
|
|
|
|
if header :contains "X-Spam-Status" "Yes" {
|
|
setflag "\\seen";
|
|
fileinto "Junk";
|
|
}
|
|
|
|
if header :contains "X-Spam" "Yes" {
|
|
setflag "\\seen";
|
|
fileinto "Junk";
|
|
}
|