Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. if
  2. anyof(
  3. exists [
  4. "Auto-Submitted",
  5. "X-CSA-Complaints",
  6. "X-mail_abuse_inquiries",
  7. "Feedback-ID",
  8. "List-Unsubscribe"
  9. ],
  10. header :contains "Return-Path" [
  11. "wordfly.com",
  12. "amazonses.com",
  13. "salesforce.com"
  14. ],
  15. header :is "Precedence" [
  16. "bulk",
  17. "list"
  18. ],
  19. address :is :localpart ["from", "all"] [
  20. "do-not-reply",
  21. "donotreply",
  22. "no-reply",
  23. "noreply",
  24. "notification",
  25. "notifications"
  26. ]
  27. )
  28. {
  29. fileinto "INBOX.Notifications";
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement