Jonathan Nichols wrote:

The header for this list has this: List-Id: deviants.weak.org

#Deviants users list
if ( /^List-Id: .+ <deviants.weak.org>/ )
{
        to "$HOME/.maildir/.Deviants"
}

It'll never match because your pattern requires at least two spaces, and at least one character between them. It also requires brackets around "deviants.weak.org", which aren't present in the header you're receiving. If the list header is a fixed string, then don't use wildcard matches. You're just wasting CPU time. :)


#Deviants users list
if ( /^List-Id: deviants.weak.org/ )
{
        to "$HOME/.maildir/.Deviants"
}


------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ courier-users mailing list courier-users@lists.sourceforge.net Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to