summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib/Mail/mimeDecode.php
diff options
context:
space:
mode:
authorvengadrew <vengadrew@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-04-26 23:38:24 +0000
committervengadrew <vengadrew@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-04-26 23:38:24 +0000
commitb056da3a73ad32d2083e2870e2135d6374c83e6b (patch)
tree74d4f7ea8a0d1fe33d832d8549c4b25860fd129a /roundcubemail/program/lib/Mail/mimeDecode.php
parent9a789308f21190cc32577ab57c367b5aa0593dd2 (diff)
Updated Mail::Mime libraries to latest CVS. Changes are bug fixes ONLY.
git-svn-id: https://svn.roundcube.net/trunk@202 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/Mail/mimeDecode.php')
-rw-r--r--roundcubemail/program/lib/Mail/mimeDecode.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/lib/Mail/mimeDecode.php b/roundcubemail/program/lib/Mail/mimeDecode.php
index 851481434..963c86009 100644
--- a/roundcubemail/program/lib/Mail/mimeDecode.php
+++ b/roundcubemail/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':