Lars Holmström wrote:
I have recently start receiving spam mails that usually has the following two 
lines in the mailheader.


From: "[%from_name%]" <[%from_email%]>
To: [%to%]

I would like some help with the maildrop filtering.

I tested with the following

#-------
if (/^From: \[*\]/ )
{
    exception {
        to $HOME/Maildir/.spam2/
        }
}
#-------
but with little success.
Apart from getting the expression wrong (you're confusing '*' in shell and '*' in regular expressions), this is a bad idea.
This would block
   From: [mouss] <[EMAIL PROTECTED]>

better check for the absence of a '@'.



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to