3 messages in net.sourceforge.lists.courier-usersRe: [courier-users] I suck with .mail...
FromSent OnAttachments
Jonathan NicholsFeb 25, 2005 11:18 am 
Gordon MessmerFeb 25, 2005 11:55 am 
Jonathan NicholsFeb 25, 2005 2:10 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] I suck with .mailfiltersActions...
From:Gordon Messmer (yiny@eburg.com)
Date:Feb 25, 2005 11:55:02 am
List:net.sourceforge.lists.courier-users

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" }