DK wrote:
There is a howto here:
http://www.dbmail.org/dokuwiki/doku.php?id=dbmail_filters-howto
or simple sieve-script, if 2.1.x version in use. like:
require ["fileinto"];
#spam rule
if header :contains "X-Spam-Status" "Yes" {
#or if header :contains "Subject" "****SPAM****"
fileinto "Spam";
#or INBOX/Spam or FOO/BAR
stop;
}
also you can experiment with SA's score for sort junk mail in separate
categories. good howtos and examples can be found here: http://sieve.info
note that's dbmail use "/" for separator, not "."
Alexander