Russ, This may be because you are setting the pop3 user in your run script. Look at mine and try removing the vpopmail user.
#!/bin/sh exec /usr/local/bin/softlimit -m 3000000 \ /usr/local/bin/tcpserver \ -H -l mailhost.net \ -v -x /etc/tcp.pop3.cdb -c 50 -R 0 pop3 \ /var/qmail/bin/qmail-popup mailhost.net \ /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 2>&1 Also, you don't need to use the /etc/tcp.pop3.cdb file. I just choose to. -- Regards, Tom > Here's my /service/qmail-pop3d/run file: > > #!/bin/sh > VPOPMAILUID=`id -u vpopmail` > VPOPMAILGID=`id -g vpopmail` > exec /usr/local/bin/softlimit -m 3000000 \ > /usr/local/bin/tcpserver -H -R -v \ > -u"$VPOPMAILUID" -g"$VPOPMAILGID" \ > -c100 pop3 \ > /var/qmail/bin/qmail-popup judah.khouse.org \ > /home/vpopmail/bin/vchkpw \ > /var/qmail/bin/qmail-pop3d Maildir 2>&1 > > My qmail install includes the patch < qmail-maildir++.patch. > -------------------------------------- > > Everything installs and appears to be ready to go. mysql logging works > and > this is what I get in all my logs: > > vchkpw-pop3: vpopmail user not found <user>@<domain>:<ip address> > > In the "error" column of vlog, it says: 1 > > If I do the exact same thing, changing --enable-mysql=y to > --enable-mysql=n > and (obviously) not running the vconvert, everything is peachy, although > not > using mysql. > > Any suggestions? Is there something I'm not seeing? Any particular logs > that I should be checking?