Re: Getting error when starting qmail.

1999-05-20 Thread Chris Johnson

On Thu, May 21, 1998 at 12:59:12AM +0200, Victor Regnér wrote:
> 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

You've already got something listening on either port 25 or port 110. This
could be another instance of tcpserver you've already started, or perhaps
you've still got sendmail running. You might also check your inetd.conf file to
see if there's something enabled for your POP3 port.

Chris



Getting error when starting qmail.

1999-05-20 Thread Victor Regnér



I get this error when I start qmail
 
Starting qmail local servicesStarting qmail 
stmp serviceStarting 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