From:             cmbecker69 at gmx dot de
Operating system: irrelevant
PHP version:      Irrelevant
Package:          Website problem
Bug Type:         Bug
Bug description:Sent mails are lacking important header fields

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>


-- 
Edit bug report at https://bugs.php.net/bug.php?id=66733&edit=1
-- 
Try a snapshot (PHP 5.4):   
https://bugs.php.net/fix.php?id=66733&r=trysnapshot54
Try a snapshot (PHP 5.5):   
https://bugs.php.net/fix.php?id=66733&r=trysnapshot55
Try a snapshot (trunk):     
https://bugs.php.net/fix.php?id=66733&r=trysnapshottrunk
Fixed in SVN:               https://bugs.php.net/fix.php?id=66733&r=fixed
Fixed in release:           https://bugs.php.net/fix.php?id=66733&r=alreadyfixed
Need backtrace:             https://bugs.php.net/fix.php?id=66733&r=needtrace
Need Reproduce Script:      https://bugs.php.net/fix.php?id=66733&r=needscript
Try newer version:          https://bugs.php.net/fix.php?id=66733&r=oldversion
Not developer issue:        https://bugs.php.net/fix.php?id=66733&r=support
Expected behavior:          https://bugs.php.net/fix.php?id=66733&r=notwrong
Not enough info:            
https://bugs.php.net/fix.php?id=66733&r=notenoughinfo
Submitted twice:            
https://bugs.php.net/fix.php?id=66733&r=submittedtwice
register_globals:           https://bugs.php.net/fix.php?id=66733&r=globals
PHP 4 support discontinued: https://bugs.php.net/fix.php?id=66733&r=php4
Daylight Savings:           https://bugs.php.net/fix.php?id=66733&r=dst
IIS Stability:              https://bugs.php.net/fix.php?id=66733&r=isapi
Install GNU Sed:            https://bugs.php.net/fix.php?id=66733&r=gnused
Floating point limitations: https://bugs.php.net/fix.php?id=66733&r=float
No Zend Extensions:         https://bugs.php.net/fix.php?id=66733&r=nozend
MySQL Configuration Error:  https://bugs.php.net/fix.php?id=66733&r=mysqlcfg


-- 
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to