[vchkpw] POP gives strange RETR answers

2003-12-02 Thread Marc Schneider
Hi, I have a problem with my QMail - Vpopmail - QMail Scanner installation. I don't know whether it's VPopmail related, so hopefully I'm in the right mailing list :) My System is running debian 3.0 and is installed along the instructions of Michael Bowe with some changes as I'm installing the

Re: [vchkpw] POP gives strange RETR answers

2003-12-02 Thread Tom Collins
On Tuesday, December 2, 2003, at 06:34 AM, Marc Schneider wrote: What I'm getting is a wrong answer the RETR queries (authentication works fine). When I Telnet the pop3 port I get: Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. +OK [EMAIL PROTECTED] USER myusername +OK

RE: [vchkpw] POP gives strange RETR answers

2003-12-02 Thread Marc Schneider
I actually found the problem - it was the qmail pop3d I was using, not the courier-imap one. The qmail-maildir++.patch killed the pop3d.c - it forgot to change two puts(). Although it works now, I'm slightly confused: The qmail-maildir++.patch is quite old - I'm surely not the first one to use

Re: [vchkpw] POP gives strange RETR answers

2003-12-02 Thread Oden Eriksson
tisdagen den 2 december 2003 18.59 skrev Marc Schneider: [...] Anyway, just in case somebody is interested, the lines 309:314 of qmail-pop3d.c have to be changed from /* okay(); */ - puts(+OK ); put(strnum,fmt_ulong(strnum,m[i].size)); - puts( octets\r\n); flush(); to /*

AW: [vchkpw] POP gives strange RETR answers

2003-12-02 Thread Marc Schneider
It has to be debian specific because the patch I have has these changes, get the current one here: http://www.shupp.org/ Or rather the fixed one in the latest vpopmail tarball. I got the patch from shupp.org. It fixes all the puts() == substdio_puts() apart from the two in the pop_top()