Added support for using Squirrelmail without frames
[squirrelmail.git] / src / empty_trash.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * empty_trash.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Handles deleting messages from the trash folder without
10 * deleting subfolders.
11 *
12 * $Id$
8f6f9ba5 13 * @package squirrelmail
35586184 14 */
ef870322 15
8f6f9ba5 16/** Path for SquirrelMail required files. */
86725763 17define('SM_PATH','../');
18
19/* SquirrelMail required files. */
08185f2a 20require_once(SM_PATH . 'include/validate.php');
86725763 21require_once(SM_PATH . 'functions/display_messages.php');
22require_once(SM_PATH . 'functions/imap.php');
86725763 23require_once(SM_PATH . 'functions/tree.php');
d3cdb279 24
a32985a5 25/* get those globals */
26
f38b7cf0 27sqgetGlobalVar('username', $username, SQ_SESSION);
28sqgetGlobalVar('key', $key, SQ_COOKIE);
29sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
30sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
a32985a5 31
32/* finished globals */
33
65c3ec94 34$imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
35
65c3ec94 36$mailbox = $trash_folder;
37$boxes = sqimap_mailbox_list($imap_stream);
d92b6f31 38
65c3ec94 39/*
40 * According to RFC2060, a DELETE command should NOT remove inferiors (sub folders)
41 * so lets go through the list of subfolders and remove them before removing the
42 * parent.
43 */
44
45/** First create the top node in the tree **/
c9acef51 46$numboxes = count($boxes);
47for ($i = 0; $i < $numboxes; $i++) {
48 if (($boxes[$i]['unformatted'] == $mailbox) && (strlen($boxes[$i]['unformatted']) == strlen($mailbox))) {
49 $foldersTree[0]['value'] = $mailbox;
50 $foldersTree[0]['doIHaveChildren'] = false;
65c3ec94 51 continue;
52 }
53}
54/*
55 * Now create the nodes for subfolders of the parent folder
56 * You can tell that it is a subfolder by tacking the mailbox delimiter
57 * on the end of the $mailbox string, and compare to that.
58 */
59$j = 0;
c9acef51 60for ($i = 0; $i < $numboxes; $i++) {
61 if (substr($boxes[$i]['unformatted'], 0, strlen($mailbox . $delimiter)) == ($mailbox . $delimiter)) {
62 addChildNodeToTree($boxes[$i]['unformatted'], $boxes[$i]['unformatted-dm'], $foldersTree);
65c3ec94 63 }
64}
0a1d5f3a 65
65c3ec94 66// now lets go through the tree and delete the folders
67walkTreeInPreOrderEmptyTrash(0, $imap_stream, $foldersTree);
a11899fd 68
65c3ec94 69$location = get_location();
1d80c108 70if (isset($use_frames) && !$use_frames)
71 header ("Location: $location/right_main.php");
72else
73 header ("Location: $location/left_main.php");
e9f8ea4e 74
65c3ec94 75sqimap_logout($imap_stream);
525b7ae6 76?>