X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fdownload.php;h=91f90cc4e0410acbb0650779ae4dae5e564a681a;hb=d47b2518bd5b1544e3b7577b59f323b29737eb12;hp=f5b2ac4640954c7d1f8308d71c5e626fbbda4e70;hpb=e9f8ea4ecb40efdb6f19631f8359ebd1fbf588be;p=squirrelmail.git diff --git a/src/download.php b/src/download.php index f5b2ac46..91f90cc4 100644 --- a/src/download.php +++ b/src/download.php @@ -9,14 +9,10 @@ ** Also allows displaying of attachments when possible. **/ - session_start(); - if (!isset($config_php)) include("../config/config.php"); if (!isset($strings_php)) include("../functions/strings.php"); - if (!isset($page_header_php)) - include("../functions/page_header.php"); if (!isset($imap_php)) include("../functions/imap.php"); if (!isset($mime_php)) @@ -27,21 +23,36 @@ include("../src/load_prefs.php"); function viewText($color, $body, $id, $entid, $mailbox, $type1, $wrap_at) { + global $where, $what, $charset; + global $startMessage; + + displayPageHeader($color, "None"); - echo "
"; + echo "
"; echo "
"; - echo _("Viewing a plain text attachment"); - echo "
"; - echo "
"; + echo _("Viewing a text attachment") . " - "; + if ($where && $what) { + // from a search + echo "". _("View message") . ""; + } else { + echo "". _("View message") . ""; + } + $urlmailbox = urlencode($mailbox); - echo "
"; + echo "
"; echo _("Download this as a file"); - echo "


"; + echo "
"; + echo ""; + echo "
"; + + echo "
"; + echo "
"; + if ($type1 == "html") echo $body; else - echo translateText($body, $wrap_at); + echo translateText($body, $wrap_at, $charset); echo "
"; } @@ -52,6 +63,7 @@ // $message contains all information about the message // including header and body $message = sqimap_get_message($imapConnection, $passed_id, $mailbox); + $top_header = $message->header; // lets redefine message as this particular entity that we wish to display. // it should hold only the header for this entity. We need to fetch the body @@ -61,13 +73,12 @@ $header = $message->header; $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id); + $charset = $header->charset; $type0 = $header->type0; $type1 = $header->type1; - $filename = $header->filename; + $filename = decodeHeader($header->filename); if (strlen($filename) < 1) { - # set some standard suffixes to the filenames if the filename isn't known - if ($type1 == "plain" && $type0 == "text") $suffix = "txt"; else if ($type1 == "richtext" && $type0 == "text") $suffix = "rtf"; else if ($type1 == "postscript" && $type0 == "application") $suffix = "ps"; @@ -95,42 +106,44 @@ switch($type0) { case "text": $body = decodeBody($body, $header->encoding); - #header("Content-type: $type0/$type1; name=\"$filename\""); - header("Content-type: application/octet-stream; name=\"$filename\""); header("Content-Disposition: attachment; filename=\"$filename\""); + header("Content-type: application/octet-stream; name=\"$filename\""); + if ($type1 == "plain") { + echo _("Subject") . ": " . decodeHeader(sqStripSlashes($top_header->subject)) . "\n"; + echo " " . _("From") . ": " . decodeHeader(sqStripSlashes($top_header->from)) . "\n"; + echo " " . _("To") . ": " . decodeHeader(sqStripSlashes(getLineOfAddrs($top_header->to))) . "\n"; + echo " " . _("Date") . ": " . getLongDateString($top_header->date) . "\n\n"; + } echo trim($body); break; default: $body = decodeBody($body, $header->encoding); - header("Content-type: application/octet-stream; name=\"$filename\""); - #header("Content-type: $type0/$type1; name=\"$filename\""); header("Content-Disposition: attachment; filename=\"$filename\""); + header("Content-type: application/octet-stream; name=\"$filename\""); echo $body; break; } - } else if ($view == "true") { - $body = decodeBody ($body, $header->encoding); - header("Content-type: $type0/$type1; name=\"$filename\""); - header("Content-disposition: attachment; filename=\"$filename\""); - echo $body; } else { switch ($type0) { case "text": $body = decodeBody($body, $header->encoding); + include("../functions/page_header.php"); viewText($color, $body, $passed_id, $passed_ent_id, $mailbox, $type1, $wrap_at); break; case "message": $body = decodeBody($body, $header->encoding); + include("../functions/page_header.php"); viewText($color, $body, $passed_id, $passed_ent_id, $mailbox, $type1, $wrap_at); break; default: $body = decodeBody($body, $header->encoding); - header("Content-type: applicatin/octet-stream; name=\"$filename\""); header("Content-Disposition: attachment; filename=\"$filename\""); + header("Content-type: $type0/$type1; name=\"$filename\""); echo $body; break; } } + sqimap_mailbox_close($imapConnection); sqimap_logout($imapConnection); ?>