|
Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com |
Re: FILTER_README suggestions
From: Darron Froese (darron
nonfiction.ca)
Date: Fri Sep 01 2006 - 12:10:28 CDT
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 1-Sep-06, at 10:40 AM, Wietse Venema wrote:
> If you have examples to share, it will save me time.
This is a Sieve recipe that is available to our users:
# Delete SpamAssassin blacklisted mails.
if header :comparator "i;ascii-casemap" :contains "X-Spam-Status"
"BLACKLISTED" {
discard;
stop;
}
# Delete high score SPAM above 14 SA score (configurable).
if allof ( header :comparator "i;ascii-casemap" :matches "Subject"
"[SPAM]*", header :value "gt" :comparator "i;ascii-numeric" "X-Spam-
Score" ["14"] ) {
discard;
stop;
}
# Filter Lower Scored Spam for checking.
if header :comparator "i;ascii-casemap" :matches "Subject" "[SPAM]*" {
fileinto "INBOX.spam";
stop;
}
It's their choice what they want to do for their own accounts - this
is my personal setup - all managed via a web interface.
--
darron froese
principal
nonfiction studios inc.
t 403.686.8887
c 403.819.7887
f 403.313.9233
w http://nonfiction.ca/
e darron
nonfiction.ca
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]