workaround for php3 dealing with optional arguments to function loginToImapServer
[squirrelmail.git] / src / folders_delete.php
1 <?
2 include("../config/config.php");
3 include("../functions/strings.php");
4 include("../functions/page_header.php");
5 include("../functions/imap.php");
6 include("../functions/mailbox.php");
7 include("../functions/array.php");
8
9 include("../src/load_prefs.php");
10
11 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
12 $imapConnection = loginToImapServer($username, $key, $imapServerAddress, 0);
13 getFolderList($imapConnection, $boxes);
14
15 $dm = findMailboxDelimeter($imapConnection);
16 /** lets see if we CAN move folders to the trash.. otherwise, just delete them **/
17 for ($i = 0; $i < count($boxes[$i]["UNFORMATTED"]); $i++) {
18 if ($boxes[$i]["UNFORMATTED"] == $trash_folder)
19 $tmp_trash_folder = $boxes[$i]["RAW"];
20 }
21
22 $tmpflags = getMailboxFlags($tmp_trash_folder);
23 $can_move_to_trash = true;
24 for ($i = 0; $i < count($tmpflags); $i++) {
25 if (strtolower($tmpflags[$i]) == "noinferiors")
26 $can_move_to_trash = false;
27 }
28
29 /** Lets start removing the folders and messages **/
30 if (($move_to_trash == true) && ($can_move_to_trash == true)) { /** if they wish to move messages to the trash **/
31 /** Creates the subfolders under $trash_folder **/
32 for ($i = 0; $i < count($boxes); $i++) {
33 if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
34 (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
35 $folderWithoutINBOX = getFolderNameMinusINBOX($boxes[$i]["UNFORMATTED"], $dm);
36 $flags = getMailboxFlags($boxes[$i]["RAW"]);
37 for ($b = 0; $b < count($flags); $b++) {
38 $type = $flags[$b];
39 }
40 createFolder($imapConnection, "$trash_folder" . $dm . "$folderWithoutINBOX", $type);
41 }
42 }
43 for ($i = 0; $i < count($boxes); $i++) {
44 if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
45 (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
46 selectMailbox($imapConnection, $boxes[$i]["UNFORMATTED"], $numMessages);
47 $folder = getFolderNameMinusINBOX($boxes[$i]["UNFORMATTED"]);
48
49 if ($numMessages > 0)
50 $success = copyMessages($imapConnection, 1, $numMessages, "$trash_folder" . $dm . "$folder");
51 else
52 $success = true;
53
54 if ($success == true)
55 removeFolder($imapConnection, $boxes[$i]["UNFORMATTED"]);
56 }
57 }
58 } else { /** if they do NOT wish to move messages to the trash (or cannot)**/
59 fputs($imapConnection, "1 LIST \"$mailbox\" *\n");
60 $data = imapReadData($imapConnection , "1", false, $response, $message);
61 while (substr($data[0], strpos($data[0], " ")+1, 4) == "LIST") {
62 for ($i = 0; $i < count($boxes); $i++) {
63 if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
64 (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
65 removeFolder($imapConnection, $boxes[$i]["UNFORMATTED"]);
66 }
67 }
68 fputs($imapConnection, "1 LIST \"$mailbox\" *\n");
69 $data = imapReadData($imapConnection , "1", false, $response, $message);
70 }
71 }
72
73 /** Log out this session **/
74 fputs($imapConnection, "1 logout");
75
76 echo "<BR><BR><A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>";
77 echo _("Return");
78 echo "</A>";
79 echo "</BODY></HTML>";
80 ?>
81
82