ID:               25862
 User updated by:  thouraud at bondy dot ird dot fr
 Reported By:      thouraud at bondy dot ird dot fr
-Status:           Feedback
+Status:           Open
 Bug Type:         Mail related
 Operating System: solaris 9
 PHP Version:      4.3.3
 New Comment:

the configure line is :

./configure  --with-apxs=/opt/apache/bin/apxs --prefix=/opt/apache
--with-config-file-path=/opt/apache/conf --with-mysql --disable-debug
--enable-trans-sid --with-oci8=/opt/oracle/product/9201 --enable-dbase
--enable-safe-mode --disable-magic-quotes --enable-sigchild
--enable-ldap --with-zlib=/opt/sfwplus --enable-mbstring
--enable-mbregex --enable-zend-multibyte --enable-bcmath
--enable-calendar --enable-exif --with-jpeg-dir=/opt/sfwplus
--with-png-dir=/opt/sfwplus --with-tiff-dir=/opt/sfwplus --with-gd
--with-iconv --with-pgsql=/opt/postgres


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

[2003-10-14 10:34:18] [EMAIL PROTECTED]

What was the configure line you used to configure PHP?


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

[2003-10-14 08:26:31] thouraud at bondy dot ird dot fr

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 this bug report at http://bugs.php.net/?id=25862&edit=1

Reply via email to