6 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] "unable to create dot...
FromSent OnAttachments
Russell L. HarrisNov 7, 2006 6:15 pm 
Sam VarshavchikNov 7, 2006 7:26 pm 
Russell L. HarrisNov 7, 2006 7:57 pm 
Sam VarshavchikNov 8, 2006 4:03 am 
Russell L. HarrisNov 8, 2006 2:25 pm 
Sam VarshavchikNov 8, 2006 4:05 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: [maildropl] "unable to create dot-lock" error with maildirActions...
From:Sam Varshavchik (mrs@courier-mta.com)
Date:Nov 8, 2006 4:05:13 pm
List:net.sourceforge.lists.courier-maildrop

Russell L. Harris writes:

I still need to run again one experiment. In attempting to sort on the "To:" and "From:" headers from multiple addresses, the first construction below appeared to give trouble:

if ( ( /^(To||From):.*(red||green||blue) ) to $MAILDIR/colour

while the second was successful:

if ( ( /^(To||From):.*red/ ) \

There's no such thing as "||" in regular expressions. You probably mean a single |.

| in regular expressions, and || in maildrop expressions, are two completely different things.