From 1bc48e3ee8d7bc73ed384803309f04c0068eafcc Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 16 Jun 2008 08:06:53 +0000 Subject: - Fixed forwarding messages with one HTML attachment (#1484442) - Fixed encoding of message/rfc822 attachments and image/pjpeg handling (#1484914) --- program/steps/mail/compose.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'program/steps/mail') diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 855066b0c..0bfcaf2cd 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -522,7 +522,7 @@ function rcmail_create_forward_body($body, $bodyIsHtml) // add attachments if (!isset($_SESSION['compose']['forward_attachments']) && is_array($MESSAGE->mime_parts)) - rcmail_write_compose_attachments($MESSAGE); + rcmail_write_compose_attachments($MESSAGE, $bodyIsHtml); return $prefix.$body; } @@ -539,13 +539,13 @@ function rcmail_create_draft_body($body, $bodyIsHtml) if (!isset($_SESSION['compose']['forward_attachments']) && is_array($MESSAGE->mime_parts) && count($MESSAGE->mime_parts) > 0) - rcmail_write_compose_attachments($MESSAGE); + rcmail_write_compose_attachments($MESSAGE, $bodyIsHtml); return $body; } -function rcmail_write_compose_attachments(&$message) +function rcmail_write_compose_attachments(&$message, $bodyIsHtml) { global $RCMAIL, $IMAP; @@ -556,7 +556,7 @@ function rcmail_write_compose_attachments(&$message) foreach ((array)$message->mime_parts as $pid => $part) { - if ($part->ctype_primary != 'message' && + if (($part->ctype_primary != 'message' || !$bodyIsHtml) && ($part->disposition=='attachment' || $part->disposition=='inline' || $part->headers['content-id'] || (empty($part->disposition) && $part->filename))) { -- cgit v1.2.3