From 0a99895ead5fec3e48719761a142a1c0a25d244c Mon Sep 17 00:00:00 2001 From: thomascube Date: Thu, 5 Jun 2008 10:33:29 +0000 Subject: Fix fallback if no message strucutre is provided by the imap server --- program/include/rcube_imap.php | 5 ++++- program/steps/mail/func.inc | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 6ce683aa0..5e56eedb3 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -1248,7 +1248,10 @@ class rcube_imap */ function &get_body($uid, $part=1) { - return $this->get_message_part($uid, $part); + $headers = $this->get_headers($uid); + return rcube_charset_convert( + $this->mime_decode($this->get_message_part($uid, $part), 'quoted-printable'), + $headers->charset ? $headers->charset : $this->default_charset); } diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index ac4eb6b01..ddaf29063 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -728,7 +728,7 @@ function rcmail_message_body($attrib) } } else - $out .= $MESSAGE->body; + $out .= html::div('message-part', html::div('pre', $MESSAGE->body)); $ctype_primary = strtolower($MESSAGE->structure->ctype_primary); -- cgit v1.2.3