Ok guys, I'm at my wits end. I looked everywhere and I just can't find the answer I need. I have an FC4 32-bit server fully updated as of 4-5-06. I have a Sendmail server running on it to handle all of my mail delivery. I wanted to switch to qmail. First thing I did was uninstall sendmail. Then followed the qmail instructions word for word. But yet when I set it to use (atleased I think i'm setting it to use) /var/spool/mail/ directory for a single file mailbox just like sendmail was doing, it decides to queue all of the e-mails and not deliver them. My logs are empty! No errors! When I stat it everything shows up running. I've downloaded and ran that inst_check script and It finds no problems. The entire qmail directory and all residing files are owned by qmaild and the group qmail. They are all (temporarily, untill i get this sorted out) set to full rights from everyone. Following this sentence will be a list of my config files, I hope someone can help because this is driving me nuts for the many hours I have wasted on this.
rc script:
Code:
#!/bin/sh
# Using splogger to send the log through syslog.
# Using binmail to deliver messages to /var/spool/mail/$USER by default.
# Using SVR4 binmail interface: /bin/mail -r
exec env - PATH="/var/qmail/bin:$PATH" \
qmail-start \
'|preline -f /bin/mail -r "${SENDER:-MAILER-DAEMON}" -d "$USER"' \
splogger qmail
rcpthosts
Code:
localhost
growthconcepts.net
myleetpc.com
atxgaming.com
Supervise qmail-smtpd/run
Code:
#!/bin/sh
QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
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 1024000000 \
/usr/local/bin/tcpserver -v -R -l "$LOCAL" -x /etc/tcp.smtp.cdb -c "$MAXSMTPD" \
-u "$QMAILDUID" -g "$NOFILESGID" 0 25 /var/qmail/bin/qmail-smtpd 2>&1
Supervise qmail-smtpd/log/run
Code:
#!/bin/sh
exec /usr/local/bin/setuidgid qmaill /usr/local/bin/multilog t /var/log/qmail/smtpd
Supervise qmail-send/run
Code:
#!/bin/sh
exec /var/qmail/rc
Supervise qmail-send/log/run
Code:
#!/bin/sh
exec /usr/local/bin/setuidgid qmaill /usr/local/bin/multilog t /var/log/qmail
Let me know if you guys notice a problem. Also if you need anymore config files just ask. THANKS IN ADVANCE!!! Damn this thing is driving me nuts....