Hi, somehow a lot of spam doesn't get identified by imapassassin. But if i run spamassassin directly on the spammail, then it is tagged as spam. Is imapassassin not compatible with spamassassin 2.63 ?
Logged In: NO
I found that my IMAP server would add CRs before LFs which made some rules work badly. Could be just my rules, but try it:
$Message =~ s/\015\012/\012/g;
Add this just after "my $Message = ..."
Log in to post a comment.
Logged In: NO
I found that my IMAP server would add CRs before LFs which
made some rules work badly. Could be just my rules, but try it:
$Message =~ s/\015\012/\012/g;
Add this just after "my $Message = ..."