3 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] maildrop with sendmail
FromSent OnAttachments
Mark NienbergJun 5, 2006 2:13 pm 
Devin RubiaJun 6, 2006 6:03 am 
Mark NienbergJun 6, 2006 11:30 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] maildrop with sendmailActions...
From:Mark Nienberg (gma@tippingmar.com)
Date:Jun 6, 2006 11:30:02 am
List:net.sourceforge.lists.courier-maildrop

Devin Rubia wrote:

On Mon, Jun 05, 2006 at 02:14:14PM -0700, Mark Nienberg wrote:

I'm testing maildrop as a replacement for procmail on a Fedora Core 5 server with sendmail 8.13.6. [SNIP] My /etc/maildroprc is as follows:

SHELL="/bin/bash" logfile "/var/log/maildrop.log" VERBOSE="4" if (/^Subject: {Spam?/)

[SNIP]

The "{" in the regular expression may be botching it.

Try:

if (/^Subject: \{Spam?/)

That's a good idea. Although your suggestion didn't work either, it prompted me to change the configuration to the very simple:

SHELL="/bin/bash" logfile "/var/log/maildrop.log" VERBOSE="4" to "$HOME/Maildir/"

and that works! So now I just have to get the regex problem worked out. Thanks for your help. Mark