cjbriere wrote:
>
> Hello all,, my inetd line is as follows:
> pop3 stream tcp nowait root /var/qmail/bin/qmail-popup qmail-popup
> ns1.thenethost.com /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d
> Maildir
>
> ...all on one line. I can log into sqwebmail and check my email. But when I
> try to use say, outlook express using pop...I get..
> Oct 3 14:30:53 ns1 vpopmail[7671]: vchkpw: make user dir failed
> This is being run on OpenBSD 2.7....any suggestions? Thanks
Try running pop with tcpserver and not inet. Here is a sample
startup line:
HOSTNAME=`hostname`
env - PATH="/var/qmail/bin:/usr/local/bin" \
tcpserver -H -R -l$HOSTNAME -c100 0 110 /var/qmail/bin/qmail-popup \
$HOSTNAME \
/home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir &
Ken Jones