<?php
/**
* view_text.php -- Displays the main frameset
*
* Who knows what this file does. Whoever PUT IT HERE DID NOT PUT
* A SINGLE FREAKING COMMENT IN! Whoever is responsible for this,
* be very ashamed.
*
* @copyright 1999-2020 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: view_text.php 14840 2020年01月07日 07:42:38Z pdontthink $
* @package squirrelmail
*/
/** This is the view_text page */
define ('PAGE_NAME', 'view_text');
/**
* Path for SquirrelMail required files.
* @ignore
*/
/* 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');
$mailbox = $temp;
}
$ent_id = '';
}
$passed_ent_id = '';
}
global $imap_stream_options; // in case not defined in config
$imapConnection =
sqimap_login ($username, $key, $imapServerAddress, $imapPort, 0, $imap_stream_options);
// were we using a reference here just to save memory?
// problem is that below if $passed_ent_id is given,
// the message cache now points to that entity and not
// the original message (corrupts the cache)
//
//$message = &$messages[$mbx_response['UIDVALIDITY']][$passed_id];
//
$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 ;
$type0 = $header->type0;
$type1 = $header->type1;
$charset = $header->getParameter('charset');
$msg_url = 'read_body.php?' . $QUERY_STRING;
$dwnld_url = '../src/download.php?' . $QUERY_STRING . '&absolute_dl=true';
$unsafe_url = 'view_text.php?' . $QUERY_STRING;
$unsafe_url =
set_url_var ($unsafe_url, 'view_unsafe_images', 1);
if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
$body = $languages[$squirrelmail_language]['XTRA_CODE']('decode', $body);
}
}
if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) {
$ishtml = TRUE;
// html attachment with character set information
if (! empty($charset))
$body =
magicHTML ( $body, $passed_id, $message, $mailbox);
} else {
$ishtml = FALSE;
}
?>
<br /><table width="100%" border="0" cellspacing="0" cellpadding="2" align="center"><tr><td bgcolor="<?php echo $color[0]; ?>">
<b><center>
<?php
echo
_ ("Viewing a text attachment") .
' - ' .
'<a href="'.
$msg_url.
'">' .
_ ("View message") .
'</a>';
?>
</b></td><tr><tr><td><center>
<?php
if ( $ishtml ) {
echo
'<a href="' .
$unsafe_url .
'" style="white-space: nowrap;">' .
_ ("View Unsafe Images") .
'</a> | ';
}
echo
'<a href="' .
$dwnld_url .
'" style="white-space: nowrap;">' .
_ ("Download this as a file") .
'</a>';
?>
</center><br />
</center></b>
</td></tr></table>
<table width="98%" border="0" cellspacing="0" cellpadding="2" align="center"><tr><td bgcolor="<?php echo $color[0]; ?>">
<tr><td bgcolor="<?php echo $color[4]; ?>"><tt>
<?php echo $body; ?>
</tt></td></tr></table>
</body></html>