Skip to content

Instantly share code, notes, and snippets.

@drscream
Created January 31, 2015 16:02
Show Gist options
  • Save drscream/dcbf17db05ee082dad59 to your computer and use it in GitHub Desktop.
Save drscream/dcbf17db05ee082dad59 to your computer and use it in GitHub Desktop.
if allof(
header :contains ["X-Spam-Flag"] "YES",
header :value "ge" :comparator "i;ascii-numeric" ["X-Spam-score"] ["15"],
not header :contains "X-Spam-Score" "-",
not header :contains "X-Spam-Score" "0.0"
) {
discard;
stop;
}
if anyof(
header :contains ["X-Spam-Flag"] "YES",
header :matches ["X-Antivirus-Spam-Check"] "spam *"
) {
fileinto "Junk Messages";
stop;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment