X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=6c145950c8950f5d9a1c835fef63e62c59613363;hp=e152b438c8ddd8323f0956ee543e40adaac69fa7;hb=4b4abf93a9624311afef0c385023724ee46a2b60;hpb=8672576304f4da444b9b1e0e4ca81505af0267ec diff --git a/src/view_text.php b/src/view_text.php index e152b438..6c145950 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -3,71 +3,95 @@ /** * view_text.php -- Displays the main frameset * - * Copyright (c) 1999-2002 The SquirrelMail development team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * Who knows what this file does. However PUT IT HERE DID NOT PUT * A SINGLE FREAKING COMMENT IN! Whoever is responsible for this, * be very ashamed. * - * $Id$ + * @copyright © 1999-2005 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package squirrelmail */ -/* Path for SquirrelMail required files. */ +/** + * Path for SquirrelMail required files. + * @ignore + */ define('SM_PATH','../'); /* SquirrelMail required files. */ -require_once(SM_PATH . 'src/validate.php'); +require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/global.php'); require_once(SM_PATH . 'functions/imap.php'); require_once(SM_PATH . 'functions/mime.php'); require_once(SM_PATH . 'functions/html.php'); - -$mailbox = urldecode($mailbox); -if (!isset($passed_ent_id)) { - $passed_ent_id = ''; + +sqgetGlobalVar('key', $key, SQ_COOKIE); +sqgetGlobalVar('username', $username, SQ_SESSION); +sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION); +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, $key, $imapServerAddress, $imapPort, 0); -$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); +$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); -$message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"]; -$message_ent = &$message->getEntity($ent_id); +$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; -$charset = $header->getParameter('charset'); -$type0 = $header->type0; -$type1 = $header->type1; +$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); +$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'; $body = mime_fetch_body($imapConnection, $passed_id, $ent_id); $body = decodeBody($body, $encoding); -displayPageHeader($color, 'None'); - -echo "
". - "
". - _("Viewing a text attachment") . " - "; -echo ''. _("View message") . ''; +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); + } +} -$dwnld_url = '../src/download.php?'. $QUERY_STRING.'&absolute_dl=true'; -echo '
'. - _("Download this as a file"). - "

". - "". - "
". - "
". - "
"; if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { $body = MagicHTML( $body, $passed_id, $message, $mailbox); } else { translateText($body, $wrap_at, $charset); } -echo $body . "
"; +displayPageHeader($color, 'None'); +?> +
+
+' . _("View message") . ''; +?> +
+' . _("Download this as a file") . ''; ?> +

+ +
+
+
+ +
+ \ No newline at end of file