1 message in net.sourceforge.lists.courier-users[courier-users] courier-0.26/courier/...
FromSent OnAttachments
Yozo TODASep 7, 2000 7:41 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[courier-users] courier-0.26/courier/pop3login.cActions...
From:Yozo TODA (yo@ipc.chiba-u.ac.jp)
Date:Sep 7, 2000 7:41:36 am
List:net.sourceforge.lists.courier-users

hi. I'm trying to install courier-0.26 on solaris8/sparc. checking if pop3d works, I noticed that I can't use space (character code 0x20) in passwd string. actually space and tab characters cannot be used in password string. I believe the following patch should be applied. (sorry, but I don't check it myself yet...)

host% gdiff -u courier-0.26/courier/pop3login.c{.orig,} --- courier-0.26/courier/pop3login.c.orig Mon Mar 6 11:22:19 2000 +++ courier-0.26/courier/pop3login.c Thu Sep 7 23:35:23 2000 @@ -150,7 +150,7 @@ } } else if (strcmp(p, "PASS") == 0) { - p=strtok(0, " \t\r"); + p=strtok(0, "\r");

if (!user || p == 0) { host%

-- yozo.