Ano-Tech Computers
Enter keyword:

vpopmail fails to authenticate users after install
Problem:
After compiling and installing qmail and vpopmail, users can't log into the POP3 service.
 
Solution:
For some weird reason, vpopmail doesn't look for /etc/passwd per default(!!!) so you have to explicitly tell it to do so.

1. Go to the vpopmail source directory
2. Reset the source with "make distclean"
3. Reconfigure with "./configure --enable-logging=y --enable-passwd=y"
4. Recompile with "make"
5. Re-install with "make install-strip"
6. Finally, restart qmail with "service qmail restart"

Here's the full command-line:
"make distclean; ./configure --enable-logging=y --enable-passwd=y; make; make install-strip; service qmail restart"


 
Discuss this solution
Did this article solve your problem? Yes No Did not apply

We welcome anyone who is willing to contribute to this public knowledge base, contact siteadmin@atc.no if you have information you would like to share. The idea is not to replace the commercial support sites, but to publish those hard-to-find solutions you've found yourself looking for over and over again.

Show all articles