X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=948420e016b5ba1728b9c2791c281d66ac10530a;hb=d4c2aa240cb09ef33ece91769f2781186edffd2d;hp=d8bf19f8c8f345db61943ce1057b37c324d44fb1;hpb=f5563549df6f554b393d358ad6e1c771c2befacb;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index d8bf19f8..948420e0 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,56 +1,103 @@ getEntity($ent_id); - - $header = $message->header; - $charset = $header->getParameter('charset'); - $type0 = $header->type0; - $type1 = $header->type1; - $encoding = strtolower($header->encoding); - - $msg_url = 'read_body.php?' . $QUERY_STRING; - $msg_url = set_url_var($msg_url, 'ent_id', 0); - - $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id); - $body = decodeBody($body, $encoding); - - displayPageHeader($color, 'None'); - - echo "
". - "
". - _("Viewing a text attachment") . " - "; - echo ''. _("View message") . ''; - - $dwnld_url = '../src/download.php?'. $QUERY_STRING.'&absolute_dl=1'; - echo '
'. - _("Download this as a file"). - "

". - "". - "
". - "
". - "
"; - - 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); +/** + * view_text.php -- View a text attachment + * + * Used by attachment_common code. + * + * @copyright © 1999-2006 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package squirrelmail + */ + +/** SquirrelMail required files. */ +include('../include/init.php'); +include(SM_PATH . 'functions/imap_general.php'); +include(SM_PATH . 'functions/imap_messages.php'); +include(SM_PATH . 'functions/mime.php'); +include(SM_PATH . 'functions/date.php'); +include(SM_PATH . 'functions/url_parser.php'); + +sqgetGlobalVar('messages', $messages, SQ_SESSION); +sqgetGlobalVar('mailbox', $mailbox, SQ_GET); +sqgetGlobalVar('ent_id', $ent_id, SQ_GET); +sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET); +sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER); +if (sqgetGlobalVar('passed_id', $temp, SQ_GET)) { + $passed_id = (int) $temp; +} + +$imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0); +$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); + +$message = &$messages[$mbx_response['UIDVALIDITY']][$passed_id]; +if (!is_object($message)) { + $message = sqimap_get_message($imapConnection, $passed_id, $mailbox); +} +$message_ent = $message->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); + +$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); + + +$body = mime_fetch_body($imapConnection, $passed_id, $ent_id); +$body = decodeBody($body, $encoding); +$hookResults = do_hook('message_body', $body); +$body = $hookResults[1]; + +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); } - echo $body . - "
"; +} + +if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { + $ishtml = TRUE; + $body = MagicHTML( $body, $passed_id, $message, $mailbox); + // html attachment with character set information + if (! empty($charset)) { + $body = charset_decode($charset,$body,false,true); + } +} else { + $ishtml = FALSE; + translateText($body, $wrap_at, $charset); +} + +displayPageHeader($color, 'None'); +?> +
+
+' . _("View message") . ''; +?> +
+' . _("View Unsafe Images") . ' | '; +} +echo '' . _("Download this as a file") . ''; +?> +

+ +
+
+
+ +
+display('footer.tpl'); ?>