From:             thouraud at bondy dot ird dot fr
Operating system: solaris 9
PHP version:      4.3.3
PHP Bug Type:     Mail related
Bug description:  mail() always return FALSE

Description:
------------
The mail() function always return FALSE.
Even if the mail is sent !

Test with the sun's sendmail and postfix 2.0.16.
The mail can go out with no problem.

The result get the same safe_mode or not.

apache 1.3.28 with php as a module

Reproduce code:
---------------
<?php
  $ret = mail ("[EMAIL PROTECTED]", 
               "sujet " . date("l dS of F Y h:i:s A"),
               "corps\nl2\nl3\n",
               "From: [EMAIL PROTECTED]"
               ."Reply-To: [EMAIL PROTECTED]"
              ) ;

  print "ret = $ret<hr>" ;
  if ($ret) {
    print 'OK<br>' ;
  } else {
    print 'KO<br>' ;
  }

?>


Expected result:
----------------
if we can send mail to [EMAIL PROTECTED]
then OK and [EMAIL PROTECTED] receive the mail.


if any error to sent mail 
then KO and no mail !

Actual result:
--------------
always KO

but the mail are been received !

-- 
Edit bug report at http://bugs.php.net/?id=25862&edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=25862&r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=25862&r=trysnapshot5
Fixed in CVS:               http://bugs.php.net/fix.php?id=25862&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=25862&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=25862&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=25862&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=25862&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=25862&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=25862&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=25862&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=25862&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=25862&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=25862&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=25862&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=25862&r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=25862&r=float

Reply via email to