X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=53ad394550e31872140902d01a9356606d8d7277;hb=95dcee50e4d7ffe1d0b686377042ff3b735bc81c;hp=7d57fd729e49cefe0ede2cd3b7595ccd19ff1445;hpb=5984aeb0c19c5baf04551d328a518e653176aead;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index 7d57fd72..53ad3945 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,56 +1,81 @@ getEntity($ent_id); - if ($passed_ent_id) { - $message = &$message->getEntity($passed_ent_id); - } +$mailbox = urldecode($_GET['mailbox']); +if (!isset($_GET['passed_ent_id'])) { + $passed_ent_id = ''; +} else { + $passed_ent_id = $_GET['passed_ent_id']; +} +$passed_id = $_GET['passed_id']; +$username = $_SESSION['username']; +$key = $_COOKIE['key']; +$delimiter = $_SESSION['delimiter']; +$onetimepad = $_SESSION['onetimepad']; + + +$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' || $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 . "
"; + ?>