fix: display inline text attachment as attachment too, as they are part of a multipart/mixed mail, and was not displayed as attachment, but indicated as mail with attachment by headerinformation

This commit is contained in:
Klaus Leithoff 2010-06-02 08:19:09 +00:00
parent 063e451437
commit 3a74183a4f

View File

@ -2205,7 +2205,7 @@
{ {
$attachments = array_merge($this->getMessageAttachments($_uid, '', $subPart), $attachments); $attachments = array_merge($this->getMessageAttachments($_uid, '', $subPart), $attachments);
} }
continue; if (!($subPart->type=='TEXT' && $subPart->disposition =='INLINE' && $subPart->filename)) continue;
} }
// fetch the subparts for this part // fetch the subparts for this part