php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #41466 Pear Mail
Submitted: 2007-05-22 16:59 UTC Modified: 2007-05-22 17:08 UTC
From: takahashi at jme dot jp Assigned:
Status: Not a bug Package: *Mail Related
PHP Version: 5.2.2 OS: OpenSUSE
Private report: No CVE-ID: None
 [2007-05-22 16:59 UTC] takahashi at jme dot jp
Description:
------------
Pear Mail Bugs

Reproduce code:
---------------
<?php
require_once("Mail/mimeDecode.php");

$mail = file_get_contents($source);
$decoder = new Mail_mimeDecode($mail);
$params['include_bodies'] = true;
$params['decode_bodies']  = true;
$params['decode_headers'] = true;
$structure = $decoder->decode($params);

echo '<pre>';
print_r($structure);
?>

Expected result:
----------------
stdClass Object
(
    [headers] => Array
        (
            [return-path] => 
            [delivered-to] => xxxx@xxxx
            [received] => Array
                (
                    [0] => (qmail 21297 invoked by uid 0); 20 May 2007   02:56:28 -0000
                    [1] => from unknown (HELO 000.000.000.000) (210.236.59.29) by 0.0.0.3 with SMTP; 20 May 2007 02:56:28 -0000
                )

            [from] => "&#34276;&#23665;&#24693;&#22856;" 
            [reply-to] => Array
                (
                    [0] => "&#34276;&#23665;&#24693;&#22856;" 
                    [1] => 
                )

            [to] => xxx@xxx.xxx
            [subject] => &#20013;&#12391;&#12418;&#22823;&#19976;&#22827;&#12391;&#12377;&#9834;
        )

    [ctype_primary] => text
    [ctype_secondary] => plain
    [Date] => Sun, 20 May 2007 12:52:08 -0800
    [X-Info] => xxx@xxx.xxx
    [MIME-Version] => 1.0
    [Content-Type] => text/plain
    [List-Id] => 8
    [Content-Transfer-Encoding] => 7bit
    [body] =>


Actual result:
--------------
stdClass Object
(
    [headers] => Array
        (
            [return-path] => 
            [delivered-to] => xxxx@xxxx
            [received] => Array
                (
                    [0] => (qmail 21297 invoked by uid 0); 20 May 2007 02:56:28 -0000
                    [1] => from unknown (HELO 000.000.000.000) (210.236.59.29) by 0.0.0.0 with SMTP; 20 May 2007 02:56:28 -0000
                )

            [from] => "&#34276;&#23665;&#24693;&#22856;" 
            [reply-to] => Array
                (
                    [0] => "&#34276;&#23665;&#24693;&#22856;" 
                    [1] => 
                )

            [to] => xxx@xxx.xxx
            [subject] => &#20013;&#12391;&#12418;&#22823;&#19976;&#22827;&#12391;&#12377;&#9834;
        )

    [ctype_primary] => text
    [ctype_secondary] => plain
    [body] => Date: Sun, 20 May 2007 12:52:08 -0800
X-Info:xxx@xxx.xxx
MIME-Version: 1.0
Content-Type: text/plain
List-Id: 8
Content-Transfer-Encoding: 7bit

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-05-22 17:08 UTC] sniper@php.net
Correct place to report bugs in PEAR: http://pear.php.net/bugs/
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 18:01:28 2024 UTC