Allowing display of unsafe images when viewing HTML attachments and when HTML is...
[squirrelmail.git] / src / view_html.php
1 <?php
2
3 /**
4 * $Source$
5 * Displays html message parts
6 *
7 * File is used to display html message parts. Usually inside iframe.
8 * It should be called with passed_id, ent_id and mailbox options in
9 * GET request. passed_ent_id and view_unsafe_images options are
10 * optional. User must be authenticated ($key in cookie. $username and
11 * $onetimepad in session).
12 *
13 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
14 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
15 * @version $Id$
16 * @package squirrelmail
17 */
18
19 /**
20 * Path for SquirrelMail required files.
21 * @ignore
22 */
23 define('SM_PATH','../');
24
25 /** SquirrelMail required files. */
26 include_once(SM_PATH . 'include/validate.php');
27 include_once(SM_PATH . 'functions/imap.php');
28
29 /** Get globals */
30 sqgetGlobalVar('key', $key, SQ_COOKIE);
31 sqgetGlobalVar('username', $username, SQ_SESSION);
32 sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
33 sqgetGlobalVar('messages', $messages, SQ_SESSION);
34 sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
35 sqgetGlobalVar('ent_id', $ent_id, SQ_GET);
36 sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET);
37 if (sqgetGlobalVar('passed_id', $temp, SQ_GET)) {
38 $passed_id = (int) $temp;
39 }
40
41 // TODO: add required var checks here.
42
43 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
44 $mbx_response = sqimap_mailbox_select($imap_stream, $mailbox);
45
46 $message = &$messages[$mbx_response['UIDVALIDITY']][$passed_id];
47 if (!is_object($message)) {
48 $message = sqimap_get_message($imap_stream, $passed_id, $mailbox);
49 }
50 $message_ent = $message->getEntity($ent_id);
51 if ($passed_ent_id) {
52 $message = $message->getEntity($passed_ent_id);
53 }
54 $header = $message_ent->header;
55 $type0 = $header->type0;
56 $type1 = $header->type1;
57 $charset = $header->getParameter('charset');
58 $encoding = strtolower($header->encoding);
59
60 $body = mime_fetch_body($imap_stream, $passed_id, $ent_id);
61 $body = decodeBody($body, $encoding);
62 $hookResults = do_hook('message_body', $body);
63 $body = $hookResults[1];
64
65 /**
66 * TODO: check if xtra_code is needed.
67 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
68 function_exists($languages[$squirrelmail_language]['XTRA_CODE'].'_decode')) {
69 if (mb_detect_encoding($body) != 'ASCII') {
70 $body = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode', $body);
71 }
72 }
73 */
74
75 /** TODO: provide reduced version of MagicHTML() */
76 $body = MagicHTML( $body, $passed_id, $message, $mailbox);
77
78 /** TODO: charset might be part of html code. */
79 header('Content-Type: text/html; charset=' . $charset);
80 echo $body;
81
82 ?>