3 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] Filtering on Spam-Level
FromSent OnAttachments
Rob BrandtJul 2, 2003 11:28 am 
Eric SJul 2, 2003 12:08 pm 
Rob BrandtJul 2, 2003 11:11 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] Filtering on Spam-LevelActions...
From:Rob Brandt (bro@csd-bes.net)
Date:Jul 2, 2003 11:11:51 pm
List:net.sourceforge.lists.courier-maildrop

Yes, thanks; this works.

Rob

Quoting Eric S <ej@bfd.com>:

On Wed, 2 Jul 2003, Rob Brandt wrote:

I have two clauses in maildrop to do this, and they don't seem to be working:

if ((/^X-Spam-Level: "******"/)) { to "(path to my spam box)" }

followed by

if ((/^X-Spam-Level: "***"/)) { to "(path to my spam-maybe box)" }

I know that the * symbol is special for expressions, but the man page indicates that you can't use it in expressions without quotes around it, which I have, so I guess that should be OK(?). Or maybe it needs to be slashed?

Slashed. In most computer docs, "*" would mean "in quotes" whereas \* would mean quoted.

So try

/^X-Spam-Level: \*\*\*\*\*\*/

instead.