php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #66733 Sent mails are lacking important header fields
Submitted: 2014-02-18 14:54 UTC Modified: 2022-01-20 16:32 UTC
From: cmbecker69 at gmx dot de Assigned: peehaa (profile)
Status: Wont fix Package: Website problem
PHP Version: Irrelevant OS: irrelevant
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: cmbecker69 at gmx dot de
New email:
PHP Version: OS:

 

 [2014-02-18 14:54 UTC] cmbecker69 at gmx dot de
Description:
------------
The emails sent to subscribers of bug reports are lacking a
Content-Type header field. According to RFC 2045 section 5.2[1]
such messages are treated as with the default Content-Type:

  Content-type: text/plain; charset=us-ascii

This might cause MUAs to incorrectly display characters outside
the ASCII range.

Adding
  
  Content-Type: text/plain; charset=UTF-8
  
should solve the issue.

Furthermore the Content-Transfer-Encoding is missing, so according
to RFC 2045 section 6.1[2] it defaults to

  Content-Transfer-Encoding: 7bit
  
However, it should be

  Content-Transfer-Encoding: 8bit
  
[1] <https://tools.ietf.org/html/rfc2045#section-5.2>
[2] <https://tools.ietf.org/html/rfc2045#section-6.1>


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2019-12-11 15:42 UTC] peehaa@php.net
-Assigned To: +Assigned To: peehaa
 [2022-01-20 16:32 UTC] cmb@php.net
-Status: Assigned +Status: Wont fix
 [2022-01-20 16:32 UTC] cmb@php.net
Given that bugsnet has been superseded by GH issues, it is
sufficiently safe to assume that this issue won't be fixed.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Oct 09 03:01:28 2024 UTC