php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #17585 net/SMTP.php fails with dashes
Submitted: 2002-06-03 20:55 UTC Modified: 2002-06-04 02:40 UTC
From: juegajedrez at hotmail dot com Assigned:
Status: Not a bug Package: PEAR related
PHP Version: 4.2.1 OS: Windows 2000
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
49 + 19 = ?
Subscribe to this entry?

 
 [2002-06-03 20:55 UTC] juegajedrez at hotmail dot com
When connecting to a Microsoft Exchange Server (acad.ursinus.edu:25), pear/net/SMTP.php fails to correctly parse the server response in the ValidateAndParseResponse() function. the code segment: 

1} else {
2    $reply_code = strtok($this->lastline, '-');
3    if (strcmp($code, $reply_code)) {
4	$this->code = $reply_code;
5	return true;
6    }
7}

is incorrect on line 3. We want this to return true (as it does above the code shown) when "if(!(strcmp($code, $reply_code)))" returns true. Without this change, The code will not parse valid responses from the server if they are followed with a dash. 
I downloaded the most recent version of php just a few days ago, and it contains this error. I tried to verify that this error still exists by using the CVS, but I could not find the net/SMTP.php file there. If it has been fixed, I apologize for the repitition.

peace
Bill Mill

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-03 21:04 UTC] juegajedrez at hotmail dot com
Sorry about that not found on the CVS thing, I'm a moron. The file on the CVS still contains this error - Bill
 [2002-06-03 21:49 UTC] juegajedrez at hotmail dot com
My fault. Misunderstood the algorithm. more patience before a post next time :(
 [2002-06-04 02:40 UTC] tal@php.net
Not a bug -- Marking as Bogus.

-Tal
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 06:01:29 2024 UTC