php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #66535 X-PHP-Originating-Script adds newline if no custom headers are given
Submitted: 2014-01-21 17:16 UTC Modified: 2014-02-28 14:46 UTC
From: datibbaw@php.net Assigned: datibbaw (profile)
Status: Closed Package: *Mail Related
PHP Version: 5.5.8 OS: N/A
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: datibbaw@php.net
New email:
PHP Version: OS:

 

 [2014-01-21 17:16 UTC] datibbaw@php.net
Description:
------------
A newline is added to the mail headers when mail.add_x_header is used and no other headers are passed to mail().

The scenario in which custom headers are used was already fixed in #48620, back in 2009; this is different.

Test script:
---------------
assert(ini_get('mail.add_x_header') == 1);
mail("me@example.com", "Test", "A line of text.");

Expected result:
----------------
From: me@mymachine.local (Me)
X-PHP-Originating-Script: 501:-

A line of text.

Actual result:
--------------
From: me@mymachine.local (Me)
X-PHP-Originating-Script: 501:-


A line of text.

Patches

Pull Requests

Pull requests:

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2014-02-28 14:46 UTC] datibbaw@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: datibbaw
 [2014-02-28 14:46 UTC] datibbaw@php.net
The fix for this bug has been committed.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.

 For Windows:

http://windows.php.net/snapshots/
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Jan 02 12:01:29 2025 UTC