> This is what happens when I telnet port 110.
> #telnet mail.server 110
> trying xxx.xxx.xxx.xxx
> connected to mail server
> Escape character is '^]'
> +ok <573.950693006@INIT VERSION=sysvinit-2.74
> user mike
> +ok
> pass gomike
> -ERR authorization failed
> Connection closed by foreign host
>
> I can't for the life of me figure out what the problem is! I have red all
> the checkpassword doc's and qmail faq's I can fined but see nothing on
this
> problem.
The most common problem is that the line you're using to start up the
POP3 daemon doesn't have the correct path to the password checking program.
For example, with:
env - PATH="/var/qmail/bin:/usr/local/bin" tcpserver 0 pop-3
/var/qmail/bin/qmail-popup codon.com /virtuals/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir &
the "/virtuals/bin/vchkpw" is the program used by the daemon to check the
user's password. Check and make sure that your startup line points to a
program that actually exists. : )
steve