Textarea should not use proprietary wrap attribute (#1512681). Original
[squirrelmail.git] / src / empty_trash.php
... / ...
CommitLineData
1<?php
2
3/**
4 * empty_trash.php
5 *
6 * Handles deleting messages from the trash folder without
7 * deleting subfolders.
8 *
9 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
11 * @version $Id$
12 * @package squirrelmail
13 */
14
15/**
16 * Include the SquirrelMail initialization file.
17 */
18require('../include/init.php');
19
20require(SM_PATH . 'functions/imap_general.php');
21require(SM_PATH . 'functions/imap_messages.php');
22require(SM_PATH . 'functions/tree.php');
23
24/* get those globals */
25
26sqgetGlobalVar('username', $username, SQ_SESSION);
27sqgetGlobalVar('key', $key, SQ_COOKIE);
28sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
29sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
30
31/* finished globals */
32
33$imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
34
35$mailbox = $trash_folder;
36$boxes = sqimap_mailbox_list($imap_stream);
37
38/*
39 * According to RFC2060, a DELETE command should NOT remove inferiors (sub folders)
40 * so lets go through the list of subfolders and remove them before removing the
41 * parent.
42 */
43
44/** First create the top node in the tree **/
45$numboxes = count($boxes);
46for ($i = 0; $i < $numboxes; $i++) {
47 if (($boxes[$i]['unformatted'] == $mailbox) && (strlen($boxes[$i]['unformatted']) == strlen($mailbox))) {
48 $foldersTree[0]['value'] = $mailbox;
49 $foldersTree[0]['doIHaveChildren'] = false;
50 continue;
51 }
52}
53/*
54 * Now create the nodes for subfolders of the parent folder
55 * You can tell that it is a subfolder by tacking the mailbox delimiter
56 * on the end of the $mailbox string, and compare to that.
57 */
58$j = 0;
59for ($i = 0; $i < $numboxes; $i++) {
60 if (substr($boxes[$i]['unformatted'], 0, strlen($mailbox . $delimiter)) == ($mailbox . $delimiter)) {
61 addChildNodeToTree($boxes[$i]['unformatted'], $boxes[$i]['unformatted-dm'], $foldersTree);
62 }
63}
64
65// now lets go through the tree and delete the folders
66walkTreeInPreOrderEmptyTrash(0, $imap_stream, $foldersTree);
67// update mailbox cache
68$mailboxes=sqimap_get_mailboxes($imap_stream,true,$show_only_subscribed_folders);
69sqimap_logout($imap_stream);
70
71// close session properly before redirecting
72session_write_close();
73
74$location = get_location();
75header ("Location: $location/left_main.php");
76
77?>