chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Chicken-users] POP3 egg: issue and possible fix.


From: Geoffrey
Subject: [Chicken-users] POP3 egg: issue and possible fix.
Date: Sat, 25 May 2013 15:13:35 +1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130510 Thunderbird/17.0.6

The commercial mail server i connect to sends a simple +OK after a USER. It doesn't have any trailing characters, so this match from the pop3.scm fetch proc fails:
    (match (string-match "(\\+OK|\\-ERR) (.*)" ln)

I changed it (somewhat inexpertly) to:
    (match (string-match "(\\+OK|\\-ERR) *(.*)" ln)

and it works.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]