On Fri, 2006-06-09 at 11:01 -0400, Timothy Meader wrote:
My issue is that, when running both from xinetd, IMAP runs fine, but then, when you try to POP in to check mail on the same box, it seems that the login section is handled via pop3-login...
Yes, others have noticed that before too, but I hadn't had time to look at it. Now that I did, it was a simple fix :) Index: src/master/login-process.c =================================================================== RCS file: /var/lib/cvs/dovecot/src/master/login-process.c,v retrieving revision 1.73 diff -u -r1.73 login-process.c --- src/master/login-process.c 14 Apr 2006 18:20:57 -0000 1.73 +++ src/master/login-process.c 11 Jun 2006 14:58:47 -0000 @@ -207,7 +207,7 @@ if (strcmp(proto, "imap") == 0) protocol = MAIL_PROTOCOL_IMAP; else if (strcmp(proto, "pop3") == 0) - protocol = MAIL_PROTOCOL_IMAP; + protocol = MAIL_PROTOCOL_POP3; else { i_error("login: Unknown protocol '%s'", proto); return FALSE;