Menu

#464 POP3.php doesn't match OK string from POP server

User_Authentication
closed
5
2012-10-11
2005-04-19
No

PHPWiki 1.3.11 on Mac OSX 10.3.8, PHP 4.3.10, mySQL

PHPWiki was unable to authenticate against our POP3
server. I found I could fix this by changing
if (! strncmp("+OK ", $line, 4))
to
if (! strncmp("+OK", $line, 3))

in lines 49 and 60 of lib/WikiUser/POP3.php.

Discussion

  • Reini Urban

    Reini Urban - 2005-04-21

    Logged In: YES
    user_id=13755

    May I ask which pop server software?

    I'll commit a fix soon.

     
  • Jacob Siehler

    Jacob Siehler - 2005-04-29

    Logged In: YES
    user_id=1262608

    The POP3 server software is the GroupWise Internet Agent
    (GWIA) of
    Novell GroupWise 6.5 SP4.

     
  • Reini Urban

    Reini Urban - 2005-05-04

    Logged In: YES
    user_id=13755

    committed 2005/04/23 11:17:41
    thanks

     

Log in to post a comment.