4 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] filtering by subject
FromSent OnAttachments
Jerry M. Howell IIOct 3, 2004 9:46 am 
Sam VarshavchikOct 3, 2004 10:32 am 
Thorsten HaudeOct 3, 2004 11:29 am 
Jerry M. Howell IIOct 3, 2004 11:58 am 
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 by subjectActions...
From:Sam Varshavchik (mrs@courier-mta.com)
Date:Oct 3, 2004 10:32:19 am
List:net.sourceforge.lists.courier-maildrop

Jerry M. Howell II writes:

« HTML content follows »

hello all,      I've finaly got maildrop up and running and it's working great. Only have one problem. I can't seem to get it working with a subject. Here is what I tried and it didn't work   if (/^Subject:.*Nightly Qmail Stats Report*/)     to /home/vpopmail/domains/usalug.org/geeshock/Maildir/.reports   I'm prety sure it has to do with the spaces but not sure exactly how to modify this expresion.

I don't think you want to match the following header:

Subject: Nightly Qmail Stats Reportttttttttttttttttttttttttttttttttttttt

If you want to match arbitrary whitespace, use:

if (/^Subject:.*Nightly +Qmail +Stats +Report/)