0a3eef3eed9a247291822b67520668beb3883a5f
[squirrelmail.git] / src / folders_delete.php
1 <?php
2 session_start();
3
4 /*
5 * Incoming values:
6 * $mailbox - selected mailbox from the form
7 */
8
9 if (!isset($config_php))
10 include("../config/config.php");
11 if (!isset($strings_php))
12 include("../functions/strings.php");
13 if (!isset($page_header_php))
14 include("../functions/page_header.php");
15 if (!isset($imap_php))
16 include("../functions/imap.php");
17 if (!isset($array_php))
18 include("../functions/array.php");
19 if (!isset($tree_php))
20 include("../functions/tree.php");
21
22 include("../src/load_prefs.php");
23
24 displayPageHeader($color, "None");
25
26
27 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
28 $boxes = sqimap_mailbox_list ($imap_stream);
29 $dm = sqimap_get_delimiter($imap_stream);
30 $mailbox = stripslashes($mailbox);
31
32 if (substr($mailbox, -1) == $dm)
33 $mailbox_no_dm = substr($mailbox, 0, strlen($mailbox) - 1);
34 else
35 $mailbox_no_dm = $mailbox;
36
37 /** lets see if we CAN move folders to the trash.. otherwise, just delete them **/
38 for ($i = 0; $i < count($boxes); $i++) {
39 if ($boxes[$i]["unformatted"] == $trash_folder) {
40 $can_move_to_trash = true;
41 for ($j = 0; $j < count($boxes[$i]["flags"]); $j++) {
42 if (strtolower($boxes[$i]["flags"][$j]) == "noinferiors")
43 $can_move_to_trash = false;
44 }
45 }
46 }
47
48
49 /** First create the top node in the tree **/
50 for ($i = 0;$i < count($boxes);$i++) {
51 if (($boxes[$i]["unformatted-dm"] == $mailbox) && (strlen($boxes[$i]["unformatted-dm"]) == strlen($mailbox))) {
52 $foldersTree[0]["value"] = $mailbox;
53 $foldersTree[0]["doIHaveChildren"] = false;
54 continue;
55 }
56 }
57 // Now create the nodes for subfolders of the parent folder
58 // You can tell that it is a subfolder by tacking the mailbox delimiter
59 // on the end of the $mailbox string, and compare to that.
60 $j = 0;
61 for ($i = 0;$i < count($boxes);$i++) {
62 if (substr($boxes[$i]["unformatted"], 0, strlen($mailbox_no_dm . $dm)) == ($mailbox_no_dm . $dm)) {
63 addChildNodeToTree($boxes[$i]["unformatted"], $boxes[$i]["unformatted-dm"], $foldersTree);
64 }
65 }
66 // simpleWalkTreePre(0, $foldersTree);
67
68 /** Lets start removing the folders and messages **/
69 if (($move_to_trash == true) && ($can_move_to_trash == true)) { /** if they wish to move messages to the trash **/
70 walkTreeInPostOrderCreatingFoldersUnderTrash(0, $imap_stream, $foldersTree, $dm, $mailbox);
71 walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree);
72 } else { /** if they do NOT wish to move messages to the trash (or cannot)**/
73 walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree);
74 }
75
76 /** Log out this session **/
77 sqimap_logout($imap_stream);
78
79 echo "<BR><BR><BR><CENTER><B>";
80 echo _("Folder Deleted!");
81 echo "</B><BR><BR>";
82 echo _("The folder has been successfully deleted.");
83 echo "<BR><A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>";
84 echo _("Click here");
85 echo "</A> ";
86 echo _("to continue.");
87 echo "</CENTER>";
88
89 echo "</BODY></HTML>";
90 ?>