Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

parser_index 563B

123456789101112131415161718192021222324
  1. require ["comparator-i;ascii-numeric","date","fileinto","index","relational"];
  2. # rule:[index-header1]
  3. if header :index 1 :last :contains "X-DSPAM-Result" "Spam"
  4. {
  5. fileinto "Spam";
  6. stop;
  7. }
  8. # rule:[index-header2]
  9. if header :index 2 :contains ["From","To"] "test@domain.tld"
  10. {
  11. discard;
  12. stop;
  13. }
  14. # rule:[index-address]
  15. if address :index 1 :is "From" "nagios@domain.tld"
  16. {
  17. fileinto "domain.tld";
  18. stop;
  19. }
  20. # rule:[index-date]
  21. if date :index 1 :last :zone "-0500" :value "gt" :comparator "i;ascii-numeric" "received" "iso8601" "2007-02-26T09:00:00-05:00"
  22. {
  23. stop;
  24. }