From: kink Date: Thu, 3 Aug 2006 15:14:58 +0000 (+0000) Subject: first start of removing direct access of key/onetimepad in all scripts X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=190dc452bedb05364a6f5842142b5e484995b1ca;ds=sidebyside first start of removing direct access of key/onetimepad in all scripts git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11462 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/right_main.php b/src/right_main.php index a53c361e..a2903eb4 100644 --- a/src/right_main.php +++ b/src/right_main.php @@ -30,9 +30,7 @@ require_once(SM_PATH . 'functions/mailbox_display.php'); /* lets get the global vars we may need */ -sqgetGlobalVar('key', $key, SQ_COOKIE); sqgetGlobalVar('username', $username, SQ_SESSION); -sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION); sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION); sqgetGlobalVar('delayed_errors', $delayed_errors, SQ_SESSION); @@ -77,7 +75,7 @@ if ( sqgetGlobalVar('account', $account, SQ_GET) ) { /* Open an imap connection */ -$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); +$imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0); $mailbox = (isset($mailbox) && $mailbox) ? $mailbox : 'INBOX';