XHTML fixes
[squirrelmail.git] / src / view_text.php
1 <?php
2
3 /**
4 * view_text.php -- Displays the main frameset
5 *
6 * Copyright (c) 1999-2004 The SquirrelMail development team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Who knows what this file does. However PUT IT HERE DID NOT PUT
10 * A SINGLE FREAKING COMMENT IN! Whoever is responsible for this,
11 * be very ashamed.
12 *
13 * @version $Id$
14 * @package squirrelmail
15 */
16
17 /**
18 * Path for SquirrelMail required files.
19 * @ignore
20 */
21 define('SM_PATH','../');
22
23 /* SquirrelMail required files. */
24 require_once(SM_PATH . 'include/validate.php');
25 require_once(SM_PATH . 'functions/global.php');
26 require_once(SM_PATH . 'functions/imap.php');
27 require_once(SM_PATH . 'functions/mime.php');
28 require_once(SM_PATH . 'functions/html.php');
29
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 sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER);
38 if (sqgetGlobalVar('passed_id', $temp, SQ_GET)) {
39 $passed_id = (int) $temp;
40 }
41
42 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
43 $mbx_response = sqimap_mailbox_select($imapConnection, $mailbox);
44
45 $message = &$messages[$mbx_response['UIDVALIDITY']][$passed_id];
46 if (!is_object($message)) {
47 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
48 }
49 $message_ent = &$message->getEntity($ent_id);
50 if ($passed_ent_id) {
51 $message = &$message->getEntity($passed_ent_id);
52 }
53 $header = $message_ent->header;
54 $type0 = $header->type0;
55 $type1 = $header->type1;
56 $charset = $header->getParameter('charset');
57 $encoding = strtolower($header->encoding);
58
59 $msg_url = 'read_body.php?' . $QUERY_STRING;
60 $msg_url = set_url_var($msg_url, 'ent_id', 0);
61 $dwnld_url = '../src/download.php?'. $QUERY_STRING . '&amp;absolute_dl=true';
62
63 $body = mime_fetch_body($imapConnection, $passed_id, $ent_id);
64 $body = decodeBody($body, $encoding);
65
66 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
67 function_exists($languages[$squirrelmail_language]['XTRA_CODE'].'_decode')) {
68 if (mb_detect_encoding($body) != 'ASCII') {
69 $body = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode', $body);
70 }
71 }
72
73 if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) {
74 $body = MagicHTML( $body, $passed_id, $message, $mailbox);
75 } else {
76 translateText($body, $wrap_at, $charset);
77 }
78
79 displayPageHeader($color, 'None');
80
81 echo '<br /><table width="100%" border="0" cellspacing="0" cellpadding="0" align="center"><tr><td bgcolor="' . $color[0] . '">' .
82 '<b><center>' .
83 _("Viewing a text attachment") . ' - ' .
84 '<a href="'.$msg_url.'">'. _("View message") . '</a>' .
85 '</b></td><tr><tr><td><center><a href="' . $dwnld_url . '">' .
86 _("Download this as a file") .
87 '</a></center><br />' .
88 '</center></b>' .
89 '</td></tr></table>' .
90 '<table width="98%" border="0" cellspacing="0" cellpadding="2" align="center"><tr><td bgcolor="' . $color[0] . '">' .
91 '<tr><td bgcolor="' . $color[4] . '"><tt>' .
92 $body . '</tt></td></tr></table>' .
93 '</body></html>';
94 ?>