X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=fef15fe555e13da7f4dac929abb29eb3ef4c5eba;hb=8ddc4111412e862064e7940036f276ea87b496d6;hp=b1ed0c438151b4a1193cab73e8511edb50bec4dd;hpb=c7935430614e41a42fc5f03b91078ebdc7255963;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index b1ed0c43..fef15fe5 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,57 +1,89 @@ getEntity($ent_id); - if ($passed_ent_id) { - $message = &$message->getEntity($passed_ent_id); - } +/** + * view_text.php -- Displays the main frameset + * + * Copyright (c) 1999-2003 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$ + */ + +/* Path for SquirrelMail required files. */ +define('SM_PATH','../'); + +/* SquirrelMail required files. */ +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'); + +sqgetGlobalVar('key', $key, SQ_COOKIE); +sqgetGlobalVar('username', $username, SQ_SESSION); +sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION); +sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); +sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER); +sqgetGlobalVar('messages', $messages); +sqgetGlobalVar('passed_id', $passed_id, SQ_GET); + +if ( sqgetGlobalVar('mailbox', $temp, SQ_GET) ) { + $mailbox = $temp; +} +if ( !sqgetGlobalVar('ent_id', $ent_id, SQ_GET) ) { + $ent_id = ''; +} +if ( !sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET) ) { + $passed_ent_id = ''; +} + + + +$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); +$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); + +$message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"]; +$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; - $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, $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=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 . - "
"; +$header = $message_ent->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, $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=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 . "
"; + ?>