X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fempty_trash.php;h=f16d7e6e7627271d8aa4887545742c0e42230087;hp=368bea868727730cf8b7ccb5923520eb8bc02b81;hb=caa592dc7d3d53777323707cc5731fb48d3dc1bc;hpb=a32985a59fe460e2bf5c2e9ea2dd6004d0f66b54 diff --git a/src/empty_trash.php b/src/empty_trash.php index 368bea86..f16d7e6e 100644 --- a/src/empty_trash.php +++ b/src/empty_trash.php @@ -3,37 +3,39 @@ /** * empty_trash.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * Handles deleting messages from the trash folder without * deleting subfolders. * - * $Id$ + * @copyright 1999-2015 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package squirrelmail */ -/* Path for SquirrelMail required files. */ -define('SM_PATH','../'); +/** This is the empty_trash page */ +define('PAGE_NAME', 'empty_trash'); + +/** + * Include the SquirrelMail initialization file. + */ +require('../include/init.php'); -/* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); -require_once(SM_PATH . 'functions/display_messages.php'); -require_once(SM_PATH . 'functions/imap.php'); -require_once(SM_PATH . 'functions/array.php'); -require_once(SM_PATH . 'functions/tree.php'); +require(SM_PATH . 'functions/imap_general.php'); +require(SM_PATH . 'functions/imap_messages.php'); +require(SM_PATH . 'functions/tree.php'); /* get those globals */ -$key = $_COOKIE['key']; -$username = $_SESSION['username']; -$onetimepad = $_SESSION['onetimepad']; -$delimiter = $_SESSION['delimiter']; +sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); /* finished globals */ -$imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); +// first do a security check +sqgetGlobalVar('smtoken', $submitted_token, SQ_GET, ''); +sm_validate_security_token($submitted_token, -1, TRUE); -sqimap_mailbox_list($imap_stream); +global $imap_stream_options; // in case not defined in config +$imap_stream = sqimap_login($username, false, $imapServerAddress, $imapPort, 0, $imap_stream_options); $mailbox = $trash_folder; $boxes = sqimap_mailbox_list($imap_stream); @@ -45,10 +47,11 @@ $boxes = sqimap_mailbox_list($imap_stream); */ /** First create the top node in the tree **/ -for ($i = 0;$i < count($boxes);$i++) { - if (($boxes[$i]["unformatted"] == $mailbox) && (strlen($boxes[$i]["unformatted"]) == strlen($mailbox))) { - $foldersTree[0]["value"] = $mailbox; - $foldersTree[0]["doIHaveChildren"] = false; +$numboxes = count($boxes); +for ($i = 0; $i < $numboxes; $i++) { + if (($boxes[$i]['unformatted'] == $mailbox) && (strlen($boxes[$i]['unformatted']) == strlen($mailbox))) { + $foldersTree[0]['value'] = $mailbox; + $foldersTree[0]['doIHaveChildren'] = false; continue; } } @@ -58,17 +61,21 @@ for ($i = 0;$i < count($boxes);$i++) { * on the end of the $mailbox string, and compare to that. */ $j = 0; -for ($i = 0;$i < count($boxes);$i++) { - if (substr($boxes[$i]["unformatted"], 0, strlen($mailbox . $delimiter)) == ($mailbox . $delimiter)) { - addChildNodeToTree($boxes[$i]["unformatted"], $boxes[$i]["unformatted-dm"], $foldersTree); +for ($i = 0; $i < $numboxes; $i++) { + if (substr($boxes[$i]['unformatted'], 0, strlen($mailbox . $delimiter)) == ($mailbox . $delimiter)) { + addChildNodeToTree($boxes[$i]['unformatted'], $boxes[$i]['unformatted-dm'], $foldersTree); } } // now lets go through the tree and delete the folders walkTreeInPreOrderEmptyTrash(0, $imap_stream, $foldersTree); +// update mailbox cache +$mailboxes=sqimap_get_mailboxes($imap_stream,true,$show_only_subscribed_folders); +sqimap_logout($imap_stream); + +// close session properly before redirecting +session_write_close(); $location = get_location(); header ("Location: $location/left_main.php"); -sqimap_logout($imap_stream); -?>