My QMR install is completed and was almost perfect. Unfortunately incoming SMTP mail is stuck in queue and not being delivered to the mailbox. I've gone back over the steps listed in the qmail-scanner section of the install and verified I've followed the steps verbatim. Originally, when I ran the test_installation script during yesterdays install, the test e-mails were delivered to the postmaster mailbox and everyting was working as it should. Now they just sit in queue. Here's a copy of my qmail-smtp/run script which looks fine to me:
#!/bin/sh
QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl" export QMAILQUEUE
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
LOCAL=`head -1 /var/qmail/control/me`
if [ -z "$QMAILDUID" -o -z "$NOFILESGID" -o -z "$MAXSMTPD" -o -z "$LOCAL" ]; then
echo QMAILDUID, NOFILESGID, MAXSMTPD, or LOCAL is unset in
echo /var/qmail/supervise/qmail-smtpd/run
exit 1
fi
if [ ! -f /var/qmail/control/rcpthosts ]; then
echo "No /var/qmail/control/rcpthosts!"
echo "Refusing to start SMTP listener because it'll create an open relay"
exit 1
fi
exec /usr/local/bin/softlimit -m 10000000 \
/usr/local/bin/tcpserver -v -R -l "$LOCAL" -x /etc/tcp.smtp.cdb -c "$MAXSMTPD" \
-u "$QMAILDUID" -g "$NOFILESGID" 0 smtp \
/var/qmail/bin/qmail-smtpd xxxxxxxxxxxx.com \
/usr/home/vpopmail/bin/vchkpw /usr/bin/true 2>&1
I've rechecked and retested the steps in Part 14 - Qmail-Scanner + Clam Anti-Virus + Spamassassin. All requirements are met and all tests pass except the test e-mails. When I finished these steps yesterday, everything worked fine. No changes have been made to the installation. I've verified that all the proper services are running and the ports are listening. SMTP gives the same result regardless of where the mail comes from. I've tried flushing the queue and starting fresh, stopping and restarting the services, and even (cringe) rebooting. I'm stumped..... Help?
Mark
------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
