I get this error when I start qmail
 
Starting qmail local services
Starting qmail stmp service
Starting qmail pop3 service
[root@dns qmail]# tcpserver: fatal: unable to bind: address already used
 
 
I use this script to start Qmail.
 
#!/bin/sh
 
# Using splogger to send the log through syslog.
# Using qmail-local to deliver messages to ~/Mailbox by default.
 
echo "Starting qmail local services"
exec env - PATH="/var/qmail/bin:$PATH" \
qmail-start ./Maildir/ splogger qmail &
 
echo "Starting qmail stmp service"
/usr/local/bin/tcpserver -H -R -x/etc/tcp.smtp.cdb -u 502 -g 501 0 smtp /var/qmail/bin/qmail-smtpd &
 
echo "Starting qmail pop3 service"
/usr/local/bin/tcpserver -H -R 0 pop3 /var/qmail/bin/qmail-popup 195.17.251.137 \
/bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir &
 
 
Anyone got any idea why I get this message?.
 
 
Victor
 

Reply via email to