From f1bed7462cf076270c53ca67979390741e812e7b Mon Sep 17 00:00:00 2001 From: svncommit Date: Wed, 26 Apr 2006 21:31:53 +0000 Subject: Corrected issue displaying attachments that use content-description rather than filename or name disposition headers --- program/steps/mail/func.inc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'program/steps') diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 21ae0b56d..6a24c02d5 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -917,7 +917,13 @@ function rcmail_parse_message($structure, $arg=array(), $recursive=FALSE) 'size' => strlen($IMAP->mime_decode($mail_part->body, $mail_part->headers['content-transfer-encoding'])) /*, 'content' => $mail_part->body */); - + else if ($mail_part->headers['content-description']) + $a_attachments[] = array('filename' => rcube_imap::decode_mime_string($mail_part->headers['content-description']), + 'encoding' => strtolower($mail_part->headers['content-transfer-encoding']), + 'mimetype' => strtolower("$primary_type/$secondary_type"), + 'part_id' => $mail_part->mime_id, + 'size' => strlen($IMAP->mime_decode($mail_part->body, $mail_part->headers['content-transfer-encoding'])) /*, + 'content' => $mail_part->body */); } } -- cgit v1.2.3