ID: 35253
User updated by: s dot masugata at digicom dot dnp dot co dot jp
Reported By: s dot masugata at digicom dot dnp dot co dot jp
-Status: Feedback
+Status: Open
Bug Type: mbstring related
Operating System: Solaris8
PHP Version: 5CVS, 4CVS (2005-11-17) (snap)
New Comment:
Thank you for reply. :)
Sorry, Mistaking by the sample scripts to have been specified by me
of.
it's as the following:
<?php
declare( encoding="EUC-JP" );
$A = " ".
" ";
$encode = mb_encode_mimeheader( $A, "EUC-JP", "B" );
$Cc = "Cc: ".$encode." <[EMAIL PROTECTED]>";
mail( "[EMAIL PROTECTED]", "TEST Subject", "TEST Body",
$Cc );
?>
Cc:
=?EUC-JP?B?pKKkoqSipKKkoqSipKKkoqSipKKkoqSipKKkoqSipKKkoqSipKKkoqSipKI=?=
=?EUC-JP?B?pKKkoqSipKKkoqSipKKkoqSipKKkoqSipKKkoqSipKKkoqSipKKkoqSipKI=?=
=?EUC-JP?B?pKKkog==?= <[EMAIL PROTECTED]>
Because it doesn't consider a field identifier "Cc: " about the
mb_encode_mimeheader function, the field length at the head exceeds 76
characters.
It found the patch which solves this problem.
http://www.geocities.jp/rui_hirokawa/php/patch/php4_mb_mime_offset.patch.txt
Please committing, I'm happy. :)
rui knows details.
Previous Comments:
------------------------------------------------------------------------
[2005-11-17 14:17:22] [EMAIL PROTECTED]
Please put the reproduce script somewhere and paste the link here, so
it won't get corrupted by the bug system.
------------------------------------------------------------------------
[2005-11-17 13:21:43] s dot masugata at digicom dot dnp dot co dot jp
Attempted to try in php5-200511170730 but the status doesn't change.
------------------------------------------------------------------------
[2005-11-17 09:21:34] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php5-latest.tar.gz
For Windows:
http://snaps.php.net/win32/php5-win32-latest.zip
------------------------------------------------------------------------
[2005-11-17 06:04:38] s dot masugata at digicom dot dnp dot co dot jp
Description:
------------
Length of the encoded character string violates a RFC.
It violates a RFC when encoding a character string using the
mb_encode_mimeheader function.
As for the e-mail header, the total of the field identifier, the field
value and the line feed character is defined as being less than 76
characters.
It processes mb_encode_mimeheader function only using the field value.
Therefore, the field length at the head violates a RFC.
Reproduce code:
---------------
<?php
declare( encoding="EUC-JP" );
$A = " ".
" ";
$encode = mb_encode_mimeheader( $A, "EUC-JP", "B" );
mail ( "[EMAIL PROTECTED]", $encode, "TEST" );
?>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=35253&edit=1