php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #56626 Extra header in the mail sent
Submitted: 2005-11-02 05:37 UTC Modified: 2006-02-19 14:20 UTC
From: arnaud@php.net Assigned: pajoye (profile)
Status: Closed Package: PECL bug system (PECL)
PHP Version: Irrelevant OS:
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: arnaud@php.net
New email:
PHP Version: OS:

 

 [2005-11-02 05:37 UTC] arnaud@php.net
Description:
------------
This small patch will add an extra header to the mail being sent to allow easier filtering.

Index: report.php
===================================================================
RCS file: /repository/pearweb/public_html/bugs/report.php,v
retrieving revision 1.49
diff -u -r1.49 report.php
--- report.php  20 Jul 2005 22:42:18 -0000      1.49
+++ report.php  2 Nov 2005 10:35:20 -0000
@@ -234,6 +234,7 @@
             // }
 
             $extra_headers  = 'From: '           . $protected_email . "\n";
+            $extra_headers .= 'X-PHP-BugTracker: PEARbug' . "\n";
             $extra_headers .= 'X-PHP-Bug: '      . $cid . "\n";
             $extra_headers .= 'X-PHP-Type: '     . rinse($_POST['in']['bug_type']) . "\n";
             $extra_headers .= 'X-PHP-Version: '  . rinse($_POST['in']['php_version']) . "\n"; 


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-02-19 14:20 UTC] pajoye@php.net
This bug has been fixed in CVS.

If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET).

If this was a problem with the pear.php.net website, the change should be live shortly.

Otherwise, the fix will appear in the package's next release.

Thank you for the report and for helping us make PEAR better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 15:01:28 2024 UTC