diff options
author | svncommit <devs@roundcube.net> | 2006-04-26 23:38:24 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-04-26 23:38:24 +0000 |
commit | 856110d981f93484e2ef3c5edf3d5f5039d3e698 (patch) | |
tree | 1f1ff4f7a50213ebd1ec0a7638a8d6e4d556a1e1 /program/lib/Mail/mimeDecode.php | |
parent | f8d0a5cb18456756cfe08626b851aaaa4953faa3 (diff) |
Updated Mail::Mime libraries to latest CVS. Changes are bug fixes ONLY.
Diffstat (limited to 'program/lib/Mail/mimeDecode.php')
-rw-r--r-- | program/lib/Mail/mimeDecode.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Mail/mimeDecode.php b/program/lib/Mail/mimeDecode.php index 851481434..963c86009 100644 --- a/program/lib/Mail/mimeDecode.php +++ b/program/lib/Mail/mimeDecode.php @@ -62,7 +62,6 @@ require_once 'PEAR.php'; * print_r($structure); * * TODO: -* o Implement multipart/appledouble * o UTF8: ??? > 4. We have also found a solution for decoding the UTF-8 @@ -247,7 +246,7 @@ class Mail_mimeDecode extends PEAR $return->ctype_primary = $regs[1]; $return->ctype_secondary = $regs[2]; } - + if (isset($content_type['other'])) { while (list($p_name, $p_value) = each($content_type['other'])) { $return->ctype_parameters[$p_name] = $p_value; @@ -284,6 +283,7 @@ class Mail_mimeDecode extends PEAR break; case 'multipart/parallel': + case 'multipart/appledouble': // Appledouble mail case 'multipart/report': // RFC1892 case 'multipart/signed': // PGP case 'multipart/digest': |