X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=90c7215f0ae220240466d88e3313cc91ff2252d7;hb=a0fef6da0165f633881f5d3d3892cfc130cb7a23;hp=da200a551d27c37c5b429915920233bb94d12124;hpb=facf44e7f650a129a5a483bf140696a5ae369e73;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index da200a55..90c7215f 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,66 +1,88 @@ getEntity($ent_id); +if ($passed_ent_id) { + $message = &$message->getEntity($passed_ent_id); +} +$header = $message_ent->header; +$type0 = $header->type0; +$type1 = $header->type1; +$charset = $header->getParameter('charset'); +$encoding = strtolower($header->encoding); - $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); - $mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); +$msg_url = 'read_body.php?' . $QUERY_STRING; +$msg_url = set_url_var($msg_url, 'ent_id', 0); +$dwnld_url = '../src/download.php?' . $QUERY_STRING . '&absolute_dl=true'; +$unsafe_url = 'view_text.php?' . $QUERY_STRING; +$unsafe_url = set_url_var($unsafe_url, 'view_unsafe_images', 1); - $message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"]; - $message = &$message->getEntity($passed_ent_id); - $header = $message->header; - $charset = $header->charset; - $type0 = $header->type0; - $type1 = $header->type1; - $encoding = strtolower($header->encoding); +$body = mime_fetch_body($imapConnection, $passed_id, $ent_id); +$body = decodeBody($body, $encoding); +do_hook('message_body', $body); - $msg_url = 'read_body.php?' . $QUERY_STRING; +if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && + function_exists($languages[$squirrelmail_language]['XTRA_CODE'].'_decode')) { + if (mb_detect_encoding($body) != 'ASCII') { + $body = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode', $body); + } +} - $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id); - $body = decodeBody($body, $encoding); +if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { + $ishtml = TRUE; + // html attachment with character set information + if (! empty($charset)) { + $body = charset_decode($charset,$body,false,true); + } + $body = MagicHTML( $body, $passed_id, $message, $mailbox); +} else { + $ishtml = FALSE; + translateText($body, $wrap_at, $charset); +} - displayPageHeader($color, 'None'); +displayPageHeader($color); - echo "
". - "
". - _("Viewing a text attachment") . " - "; - echo ''. _("View message") . ''; +$oTemplate->assign('view_message_href', $msg_url); +$oTemplate->assign('download_href', $dwnld_url); +$oTemplate->assign('view_unsafe_image_href', $ishtml ? $unsafe_url : ''); +$oTemplate->assign('body', $body); - $dwnld_url = '../src/download.php?'. $QUERY_STRING.'&absolute_dl=1'; - echo '
'. - _("Download this as a file"). - "

". - "". - "
". - "
". - "
"; +$oTemplate->display('view_text.tpl'); - if ($type1 == 'html') { - $msg = sqimap_get_message($imapConnection, $passed_id, $mailbox); - $msg = $msg->getEntity($passed_ent_id); - $body = MagicHTML( $body, $passed_id, $msg ); - } else { - translateText($body, $wrap_at, $charset); - } - echo $body . - "
"; -?> +$oTemplate->display('footer.tpl');