- fix parsing bodystructure of messages with "Content-Type: multipart/related; type=multipart/alternative"

release-0.6
alecpl 14 years ago
parent 7c866e47e8
commit 6749e45ed3

@ -1757,7 +1757,7 @@ class rcube_imap
// build parts list for headers pre-fetching
for ($i=0, $count=0; $i<count($part); $i++) {
if (is_array($part[$i]) && count($part[$i]) > 3) {
if (is_array($part[$i]) && count($part[$i]) > 4) {
// fetch message headers if message/rfc822
// or named part (could contain Content-Location header)
if (!is_array($part[$i][0])) {
@ -1787,7 +1787,7 @@ class rcube_imap
}
$struct->parts = array();
for ($i=0, $count=0; $i<count($part); $i++) {
if (is_array($part[$i]) && count($part[$i]) > 3) {
if (is_array($part[$i]) && count($part[$i]) > 4) {
$tmp_part_id = $struct->mime_id ? $struct->mime_id.'.'.($i+1) : $i+1;
$struct->parts[] = $this->_structure_part($part[$i], ++$count, $struct->mime_id,
$mime_part_headers[$tmp_part_id], $raw_part_headers[$tmp_part_id]);

Loading…
Cancel
Save