2 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] Maildrop delivering d...
FromSent OnAttachments
HelpMePleaseeMay 8, 2003 12:09 pm 
Devin RubiaMay 9, 2003 6:39 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 delivering duplicate message instead of replying to sender..bActions...
From:Devin Rubia (dev@thezone.net)
Date:May 9, 2003 6:39:49 am
List:net.sourceforge.lists.courier-maildrop

On Thu, May 08, 2003 at 12:04:27PM -0700, HelpMePleasee wrote:

if ((hasaddr("use@company.com"))) { AUTOREPLYFROM=$FROM `/usr/local/bin/mailbot -A "X-Sender: $FROM" -A "From: $AUTOREPLYFROM" -m
"/home/vmail/user2/Maildir/autoresponses/vacation" $SENDMAIL -t -f ""` }

to "/home/vmail/user2/Maildir/."

You are calling mailbot incorrectly. It expects to see a message on stdin that it can extract a from address to send the autoreply to.

Instead of using backticks, you should deliver the message through mailbot using cc. ex:

if ((hasaddr("use@company.com"))) { AUTOREPLYFROM=$FROM cc "| /usr/local/bin/mailbot -A 'X-Sender: $FROM' -A 'From: $AUTOREPLYFROM' -m
'/home/vmail/user2/Maildir/autoresponses/vacation' $SENDMAIL -t -f ''" }

Also, is your auto-response a proper MIME file? If not, use the -t flag instead of the -m flag.