I have qmail, qmail-smtpd, and qmail-pop3d running on my system, all in "default" 
configurations (in /var/qmail/*, using daemontools/tcpserver, etc.). Qmail-pop3d is 
nicely running and logging things, but qmail-smtpd is dumping all messages to the 
console (tty1) - can anyone help me fix this? It's driving me nuts, as I obviously now 
have no log of what's going on with my smtp server. Here's the 
/service/qmail-smtpd/run script:

#!/bin/sh
QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
exec /usr/local/bin/softlimit -m 2000000 \
    /usr/local/bin/tcpserver -v -R -H -l 0 -c "$MAXSMTPD" \
        -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp /var/qmail/bin/qmail-smtpd 2>&1

and the /service/qmail-smtpd/log/run script:

#!/bin/sh
exec /usr/local/bin/setuidgid qmaill /usr/local/bin/multilog t /var/log/qmail/smtpd

and for comparison (the working config, I can read logfiles/whatnot) the 
qmail-pop3d/run and log/run files:

#!/bin/sh
exec /usr/local/bin/softlimit -m 2000000 \
        /usr/local/bin/tcpserver -v -R -H -l 0 0 pop3 /var/qmail/bin/qmail-popup \
        iron.tetsubo.com /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1


#!/bin/sh
exec /usr/local/bin/setuidgid qmaill /usr/local/bin/multilog t \
        /var/log/qmail/pop3d


Please note I'm not subscribed to the mailing list. Thanks for any help!

dave

Reply via email to