'txt' => 'text/plain',
'vcf' => 'text/x-vcard');
+
/* Register browser-supported image types */
if (isset($attachment_common_types)) {
/* Don't run this before being logged in. That may happen
$Args[1]['attachment_common']['href'] = Where it links to
This sets the 'href' of this plugin for a new link. */
-
- global $QUERY_STRING;
+ $QUERY_STRING = $_SERVER['QUERY_STRING'];;
+
$Args[1]['attachment_common']['href'] = '../src/view_text.php?'. $QUERY_STRING;
$Args[1]['attachment_common']['href'] =
set_url_var($Args[1]['attachment_common']['href'],
}
-function attachment_common_link_html(&$Args)
+function attachment_common_link_html(&$Args)
{
- global $QUERY_STRING;
+ $QUERY_STRING = $_SERVER['QUERY_STRING'];;
+
$Args[1]['attachment_common']['href'] = '../src/view_text.php?'. $QUERY_STRING.
/* why use the overridetype? can this be removed */
'&override_type0=text&override_type1=html';
function attachment_common_link_image(&$Args)
{
+ $QUERY_STRING = $_SERVER['QUERY_STRING'];;
global $attachment_common_show_images, $attachment_common_show_images_list;
+
$info['passed_id'] = $Args[3];
$info['mailbox'] = $Args[4];
$attachment_common_show_images_list[] = $info;
- global $QUERY_STRING;
$Args[1]['attachment_common']['href'] = '../src/image.php?'. $QUERY_STRING;
$Args[1]['attachment_common']['href'] =
set_url_var($Args[1]['attachment_common']['href'],
function attachment_common_link_vcard(&$Args)
{
- global $QUERY_STRING;
+ $QUERY_STRING = $_SERVER['QUERY_STRING'];;
+
$Args[1]['attachment_common']['href'] = '../src/vcard.php?'. $QUERY_STRING;
$Args[1]['attachment_common']['href'] =
set_url_var($Args[1]['attachment_common']['href'],
*/
/* Path for SquirrelMail required files. */
-define('SM_PATH','../');
+Define('SM_PATH','../');
/* SquirrelMail required files. */
require_once(SM_PATH . 'include/validate.php');
/* globals */
$key = $_COOKIE['key'];
$username = $_SESSION['username'];
-$onetimepad = $_SESISON['onetimepad'];
-
-$mailbox = $_GET['mailbox'];
+$onetimepad = $_SESSION['onetimepad'];
+$mailbox = decodeHeader($_GET['mailbox']);
$passed_id = $_GET['passed_id'];
+$ent_id = $_GET['ent_id'];
$passed_ent_id = $_GET['passed_ent_id'];
-
+$QUERY_STRING = $_SERVER['QUERY_STRING'];
/* end globals */
$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);