ID:               25254
 Updated by:       [EMAIL PROTECTED]
 Reported By:      ts at dreamcoder dot dk
-Status:           Open
+Status:           Bogus
 Bug Type:         Mail related
 Operating System: Linux
 PHP Version:      4.3.3
 New Comment:

Works fine with sendmail.



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

[2003-10-08 13:52:16] ts at dreamcoder dot dk

I just tested this with 4.3.4RC2-dev (as requested), it's exactly the
same problem

I also tried sending mail using PHPMailer (the class).
Sending mails directly to the SMTP with \r\n works just fine

However when using PHP's mail() and \r\n, it fails to send correctly,
as described in the original bug

I have PostFix 2.0.16 installed - if that has any relevance
I cannot rule out this could be a bug in Postfix, but I doubt it

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

[2003-10-07 19:16:11] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip



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

[2003-08-27 01:13:50] ts at dreamcoder dot dk

It's still an issue in terms of BC.

As I mentioned, it worked fine in 4.3.2

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

[2003-08-26 23:50:45] [EMAIL PROTECTED]

Either using \r\n or just \n works just fine for me.
Not PHP bug.


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

[2003-08-26 11:59:33] ts at dreamcoder dot dk

Description:
------------
When running the attached code, the mail headers will not be sent
correctly

This results in the mailheaders becomming corrupt and send two
linebreaks, thus dumping the remaining headers to the mail body. Notice
how two Message-Id's and Date headers are sent with the mail

The attached code worked fine in PHP 4.3.2. But also works when using
\n instead of \r\n

Reproduce code:
---------------
<?php
    echo mail("[EMAIL PROTECTED]", "Test Mail", "Hello",
         "From: John <[EMAIL PROTECTED]>\r\n"
        ."X-Engine: This\r\n"
        ."X-Mailer: PHP/" . phpversion());
?>

Expected result:
----------------
Headers:

From: John <[EMAIL PROTECTED]>
X-Engine: This
X-Mailer: PHP/4.3.3
Message-Id: <[EMAIL PROTECTED]>
Date: Tue, 26 Aug 2003 18:48:02 +0200 (CEST)

Hello

Actual result:
--------------
Headers:

From: John <[EMAIL PROTECTED]>
X-Engine: This
Message-ID: <[EMAIL PROTECTED]>
Date: Tue, 26 Aug 2003 18:48:09 +0200

X-Mailer: PHP/4.3.3
Message-Id: <[EMAIL PROTECTED]>
Date: Tue, 26 Aug 2003 18:48:02 +0200 (CEST)

Hello


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


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

Reply via email to