Both Kerio Webmail or Kerio Outlook Connector allow you to write your own message processing rules. These let you do such things as automatically put messages into specified folders, reject messages outright and so on. You create these rules with a rules wizard that lets you check off the desired conditions and actions. That looks like this:
Once you have created a rule with the rule designer, a new option appears: "Edit Script"
If you use that, you are actually editing a Sieve script. Sieve is a mail filtering language and editing the scripts directly allows you to do things that the wizard rule creator will not.
For example, let's say your users get spam mail that pretends to be from "support@yourcompany.com". You need to send them legitimate mail using that address, and you are concerned that they may be confused and unable to know whether the mail really was from you. Here's a rule that might help:
if allof ( address :all :contains "From" "support@yourcompany.com", not header :contains "Received" "10.6.32.30") { fileinto "Junk E-mail"; stop; }
This says if the mail says it comes from "support@yourcompany.com", but doesn't have a received header that matches your IP address, it's junk. You can't create that rule with the wizard because the wizard doesn't know about "header" matches. You probably need a more complex rule, but this is the basic idea.
Note this special note from Kerio's manual:
Search Google for "sieve script examples" to find other folks scripts.
If you have access to the Kerio server itself, you can also edit user's "filter.siv" files with a text editor.
Got something to add? Send me email.
More Articles by Anthony Lawrence © 2013-06-10 Anthony Lawrence
We are questioning more than the philosophy behind our dependence upon limited and limiting systems. We question the power structures that have grown up around such systems. (Frank Herbert)
Printer Friendly Version
Using Sieve for spam in Kerio Mailserver Copyright © December 2006 Tony Lawrence
Have you tried Searching this site?
This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more.
Contact us
Printer Friendly Version