Displaying 1 result from an estimated 1 matches for "junkfilter".
Did you mean:
janfilter
2010 May 20
2
POP3 Problem with SPAM-Mail's over sieve
Hi together,
i am currently using dovecot 1.2.10 with the sieve-plugin and use a
sieve-filter to sort the SPAM-Mail's directly into a Junk-Folder:
require "fileinto";
# rule:[junkfilter]
if header :contains "X-Spam-Flag" "YES" {
fileinto "Junk";
}
My problem is now, if i try to retrieve the Mails via POP3, i did not get the
SPAM-Mail's in the Junk-Folder, only the normal ones, that are not filtered
over the sieve plugin.
Could anyone tell m...