hi all!
i´ve running qmail and pop3d for a few month´s without problems...
now i´ve mounted the /home -dir over nfs instead on a local disk
qmail delivers the mails in the Maildir -dirs without problems,
but when i fetch mail through pop-3 the pop3d doesn´t find the mails.
the mailclients say "no new mail" but in Maildir/new i have lots of new
mail!?!?!?!?
what´s the problem??
ciao carsten
my tcp-server start/stop script: (but this shouldn´t be the problem)
#####################################
#!/bin/sh
case "$1" in
'start')
/usr/local/bin/tcpserver -v -R -H -lenterprise.intertrend.de -c
400 -u 506 -g 104 -x /etc/tcp.smtp.cdb 10.0.0.10 smtp
/var/qmail/bin/qmail-smtpd 2>&1 | /var/qmail/bin/splogger smtpd 3 &
/usr/local/bin/tcpserver -R -H 10.0.0.10 110
/var/qmail/bin/qmail-popup pop-2.lg.intertrend.de /bin/checkpassword
/var/qmail/bin/qmail-pop3d Maildir 2>&1 | /var/qmail/bin/splogger pop3d &
;;
'stop')
killall /usr/local/bin/tcpserver
;;
*)
echo "Usage: $0 { start | stop }"
;;
esac
exit 0
#######################################