diff options
Diffstat (limited to 'pigeonhole/examples/vacation.sieve')
-rw-r--r-- | pigeonhole/examples/vacation.sieve | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pigeonhole/examples/vacation.sieve b/pigeonhole/examples/vacation.sieve new file mode 100644 index 0000000..660b9c5 --- /dev/null +++ b/pigeonhole/examples/vacation.sieve @@ -0,0 +1,23 @@ +require ["fileinto","reject", "vacation"]; +if allof (header :contains "X-Spam-Flag" "YES") +{ + discard ; +} + +elsif allof (header :contains "subject" "<quation>") +{ +vacation +:addresses "<name@domain.ru>" +:subject "<Answear>" +:mime "MIME-Version: 1.0 +Content-Type: text/html; charset=KOI8-R +Content-Transfer-Encoding: 7bit +<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"> +<HTML><HEAD><META http-equiv=Content-Type content=\"text/html; charset=windows-KOI8-R\"> +</HEAD><BODY>123</BODY></HTML>"; + discard ; +} +else +{ + keep; +} |