[tpop3d-discuss] CVS problems

Jonathan jonathan at woaf.net
Sat, 28 Dec 2002 13:40:15 +0000


--------------Boundary-00=_3N0UKR79L7AK62M8OXJV
Content-Type: text/plain;
  charset="us-ascii"
Content-Transfer-Encoding: 8bit

Couple of problems with the current CVS...

First off there's a little bug in the config parsing code, more specifically 
that for the listen-address. It picks up the '(' before the domain name as 
part of the domain name, badly breaking APOP and a few other things. I've 
attached a patch.

Secondly I'm having weird problems with Outlook Express users downloading 
attachments. Their connections are getting timed out while downloading the 
message (I think). I'm not convinced that this isn't down to user error, and 
was wondering if anyone else has had similar problems. Because of a lack of 
Outlook Express users who are prepared to act as test victims for 1MB emails 
I'm having a few problems confirming this one ;)

-- 
Jonathan Oddy
Woaf Tech Ltd.
--------------Boundary-00=_3N0UKR79L7AK62M8OXJV
Content-Type: text/x-diff;
  charset="us-ascii";
  name="fixparselistenersbug.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="fixparselistenersbug.diff"

--- main.c	Sat Dec 28 13:27:56 2002
+++ main.c.new	Sat Dec 28 13:27:31 2002
@@ -200,6 +200,7 @@
 #endif
         } else if (*p == '(') {
             /* Explicit domain. */
+	    ++p;
             i = strcspn(p, ")");
             if (p[i] != ')') {
                 log_print(LOG_ERR, _("parse_listeners: `%s': missing `)'"), s);

--------------Boundary-00=_3N0UKR79L7AK62M8OXJV--