X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=563b8778db7a1a020baa5d6c40bd9bf98d6150e7;hb=06783280842a90181b2e984bd8ea13e3b7466edb;hp=6c145950c8950f5d9a1c835fef63e62c59613363;hpb=4b4abf93a9624311afef0c385023724ee46a2b60;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index 6c145950..563b8778 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -7,24 +7,20 @@ * A SINGLE FREAKING COMMENT IN! Whoever is responsible for this, * be very ashamed. * - * @copyright © 1999-2005 The SquirrelMail Project Team + * @copyright © 1999-2006 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ -/** - * Path for SquirrelMail required files. - * @ignore - */ -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'); +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('key', $key, SQ_COOKIE); sqgetGlobalVar('username', $username, SQ_SESSION); @@ -61,6 +57,8 @@ $dwnld_url = '../src/download.php?' . $QUERY_STRING . '&absolute_dl=true'; $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')) { @@ -71,6 +69,9 @@ if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { $body = MagicHTML( $body, $passed_id, $message, $mailbox); + // html attachment with character set information + if (! empty($charset)) + $body = charset_decode($charset,$body,false,true); } else { translateText($body, $wrap_at, $charset); } @@ -78,20 +79,22 @@ if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) displayPageHeader($color, 'None'); ?>
-
+
' . _("View message") . ''; ?> -
+
' . _("Download this as a file") . ''; ?> -
- +

+
- \ No newline at end of file +display('footer.tpl'); +?> \ No newline at end of file