ID:               38195
 User updated by:  sam at ims dot net
 Reported By:      sam at ims dot net
 Status:           Bogus
 Bug Type:         *Network Functions
 Operating System: Fedora Core 4
 PHP Version:      5.1.4
 New Comment:

Yeah, I guess you're right - even though getmxrr worked perfectly fine
just before I compiled and upgraded PHP 5.1.4.  Must be a problem with
my machine that PHP 5.1.4 exposed.  I guess that's not a bug, although
it certainly cost me in web app failure until I found out that it was a
PHP call that had worked on that server fine for 5 years and suddenly
was broken with a new PHP version.  But, ya know, I think I'll tell my
clients that were very upset about it that it's a PHP bug, anyway,
because I sure didn't change anything else on the server!


Previous Comments:
------------------------------------------------------------------------

[2006-07-25 06:58:29] [EMAIL PROTECTED]

Obviously something is wrong on your FC4 machine and nobody except you
can find out what exactly is broken there.

------------------------------------------------------------------------

[2006-07-24 18:12:01] sam at ims dot net

Doesn't work here (FC 4 machine), but checkdnsrr does:

[EMAIL PROTECTED]:~> php -r 'var_dump(getmxrr("yahoo.com", $var));
var_dump($var);'
[EMAIL PROTECTED]:~>
[EMAIL PROTECTED]:~> php -r 'var_dump(checkdnsrr("yahoo.com"));'
bool(true)
[EMAIL PROTECTED]:~> uname -a
Linux snoopy 2.6.15-1.1830_FC4smp #1 SMP Thu Feb 2 17:39:38 EST 2006
i686 i686 i386 GNU/Linux
s

All works here (FC 5 machine):

[EMAIL PROTECTED]:~> php -r 'var_dump(getmxrr("yahoo.com", $var));
var_dump($var);'
bool(true)
array(4) {
  [0]=>
  string(18) "mx2.mail.yahoo.com"
  [1]=>
  string(18) "mx3.mail.yahoo.com"
  [2]=>
  string(18) "mx4.mail.yahoo.com"
  [3]=>
  string(18) "mx1.mail.yahoo.com"
}
[EMAIL PROTECTED]:~> uname -a
Linux lassie 2.6.17-1.2157_FC5 #1 Tue Jul 11 22:55:46 EDT 2006 i686
athlon i386 GNU/Linux
[EMAIL PROTECTED]:~>

------------------------------------------------------------------------

[2006-07-24 17:02:35] [EMAIL PROTECTED]

Works perfectly fine here:

# php -r 'var_dump(getmxrr("yahoo.com", $var)); var_dump($var);'
bool(true)
array(4) {
  [0]=>
  string(18) "mx3.mail.yahoo.com"
  [1]=>
  string(18) "mx4.mail.yahoo.com"
  [2]=>
  string(18) "mx1.mail.yahoo.com"
  [3]=>
  string(18) "mx2.mail.yahoo.com"
}


------------------------------------------------------------------------

[2006-07-24 16:36:30] sam at ims dot net

Description:
------------
After upgrading from PHP 4.4.1 to PHP 5.1.4, the getmxrr function
ceased to work.  It does not throw an error message, but simply
terminates the HTTP response at the call.  I've switched to checkdnsrr,
which works fine, and is probably a more appropriate call, but since
getmxrr is still in the documentation for version 5, this appears to be
a bug.

Reproduce code:
---------------
if (getmxrr($host, $email)) return TRUE;

Expected result:
----------------
TRUE returned if $email corresponds to a domain with an MX record;
FALSE otherwise.

Actual result:
--------------
Termination of HTTP response.  Neither TRUE nor FALSE returned. 
Nothing appears in the Apache error log.


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=38195&edit=1

Reply via email to