From 0d1a1fdb690cd88496776f1571416e468a51ce71 Mon Sep 17 00:00:00 2001 From: mh Date: Sun, 6 Dec 2009 23:02:23 +0100 Subject: initial release of the new dovecot module --- files/sieve/default.sieve | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 files/sieve/default.sieve (limited to 'files/sieve/default.sieve') diff --git a/files/sieve/default.sieve b/files/sieve/default.sieve new file mode 100644 index 0000000..c63a86e --- /dev/null +++ b/files/sieve/default.sieve @@ -0,0 +1,16 @@ +##### We will 'require' necessary modules first. +# Comments can be C-style or bash/perl/python style + +require [ "fileinto" ]; + + +##### Filter the spam into your spam folder. This is done +# on the global sieve script by default IF you don't have +# a .dovecot.sieve file. When you create your sieve script, +# the global one will be disabled so you have to filter +# the spam in your own script. +if header :is "X-Spam-Flag" "YES" { + fileinto "spam"; + stop; #---- this stops further processing; + #prevents sending replies and/or redirecting(forwarding) +} -- cgit v1.2.3