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 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: 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

Add a Patch

Pull Requests

Add a Pull Request

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: Fri Apr 26 18:01:31 2024 UTC