Hi,
I'm using maildrop 1.6.3 on Linux (kernel 2.6.11-1.1369_FC4).
Recently I switched to using a script for delivery of my messages.The
filter rules file is attached with this mail. However, I've been getting
the following log file trace since then. The values of the variables
and fields printed in the log message are all correct.The log message is
something like :
Starting Maildrop Delivery
LFROM = <sone from addr>
mail sent to = <sone to addr>
LOGNAME =<sone non-root username>
recipient =
hostname = <some hostname>
Starting delivery_script
Date: Thu Feb 16 15:59:07 2006
From: <some from address>
Subj: This Week at HSN
!Err: |
/var/qmail/delivery_scripts/delivery_script.sh (66613)
I've double-checked the script and nothingseems to be wrong there. I
even replaced the script's content with a simple "echo" and then "exit"
with proper codes but the log message is the same.
Please could you educate me about any of these:
1.> Is there a method to find out what exactly is going wrong? I mean
are there any LOG LEVEL in maildrop logging which could spit out more
detailed failure logs.
2.> Is someone able to directly say what has gone wrong? I mean, has
someone already experienced this kind of error?
Please do reply with whatever pointers you have.
Thanks,
--
__________________________
Madhur Kumar Tanwani
madh...@gmail.com
Ph.: 0253-5614792.
__________________________
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ A bus station is where a bus stops. A train station
+ is where train stops. On my desk, I have a work station...
+ What more can I say !
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
logfile "/var/qmail/delivery_scripts/maildrop.log"
log "Starting Maildrop Delivery"
if ( /^From:.*/ )
{
LFROM = $MATCH
}
if ( /^To:.*/ )
{
RCPT_TO = $MATCH
}
log "LFROM = " $LFROM
log "mail sent to = " $RCPT_TO
log "LOGNAME =" $LOGNAME
log "recipient =" $RECIPIENT
log "hostname = " $HOSTNAME
log "Starting delivery_script"
to "| /var/qmail/delivery_scripts/delivery_script.sh"