--TEST-- Main test of script parser --SKIPIF-- --FILE-- as_text(); ?> --EXPECT-- require ["fileinto","vacation","reject","relational","comparator-i;ascii-numeric"]; # rule:[spam] if header :contains "X-DSPAM-Result" "Spam" { fileinto "Spam"; stop; } # rule:[test1] if header :contains ["From","To"] "test@domain.tld" { discard; stop; } # rule:[test2] if anyof (not header :contains "Subject" "[test]", header :contains "Subject" "[test2]") { fileinto "test"; stop; } # rule:[test-vacation] if header :contains "Subject" "vacation" { vacation :days 1 text: # test test test /* test */ test . ; stop; } # rule:[comments] if true { stop; } # rule:[reject] if size :over 5000K { reject "Message over 5MB size limit. Please contact me before sending this."; } # rule:[redirect] if header :value "ge" :comparator "i;ascii-numeric" "X-Spam-score" "14" { redirect "test@test.tld"; }