removed robust folder deletion. done
[squirrelmail.git] / functions / imap_mailbox.php
CommitLineData
d29aac0e 1<?
2 /**
3 ** imap_mailbox.php
4 **
5 ** This impliments all functions that manipulate mailboxes
6 **/
7
d29aac0e 8 /******************************************************************************
9 ** Expunges a mailbox
10 ******************************************************************************/
11 function sqimap_mailbox_expunge ($imap_stream, $mailbox) {
12 sqimap_mailbox_select ($imap_stream, $mailbox);
13 fputs ($imap_stream, "a001 EXPUNGE\n");
14 $read = sqimap_read_data($imap_stream, "a001", true, $response, $message);
15 }
16
17
18 /******************************************************************************
19 ** Checks whether or not the specified mailbox exists
20 ******************************************************************************/
21 function sqimap_mailbox_exists ($imap_stream, $mailbox) {
22 $boxes = sqimap_mailbox_list ($imap_stream);
23 $found = false;
24 for ($i = 0; $i < count ($boxes); $i++) {
25 if ($boxes[$i]["unformatted"] == $mailbox)
26 $found = true;
27 }
28 return $found;
29 }
30
31
32
33 /******************************************************************************
34 ** Selects a mailbox
35 ******************************************************************************/
36 function sqimap_mailbox_select ($imap_stream, $mailbox) {
37 fputs ($imap_stream, "a001 SELECT \"$mailbox\"\n");
38 $read = sqimap_read_data($imap_stream, "a001", true, $response, $message);
39 }
40
41
42
43 /******************************************************************************
44 ** Creates a folder
45 ******************************************************************************/
46 function sqimap_mailbox_create ($imap_stream, $mailbox, $type) {
47 if (strtolower($type) == "noselect") {
48 $dm = sqimap_get_delimiter($imap_stream);
49 $mailbox = $mailbox.$dm;
50 }
51 fputs ($imap_stream, "a001 CREATE \"$mailbox\"\n");
52 $read_ary = sqimap_read_data($imap_stream, "a001", true, $response, $message);
53
54 sqimap_subscribe ($imap_stream, $mailbox);
55 }
56
57
58
59 /******************************************************************************
60 ** Subscribes to an existing folder
61 ******************************************************************************/
62 function sqimap_subscribe ($imap_stream, $mailbox) {
63 fputs ($imap_stream, "a001 SUBSCRIBE \"$mailbox\"\n");
64 $read_ary = sqimap_read_data($imap_stream, "a001", true, $response, $message);
65 }
66
67
68
69
70 /******************************************************************************
71 ** Unsubscribes to an existing folder
72 ******************************************************************************/
73 function sqimap_unsubscribe ($imap_stream, $mailbox) {
74 fputs ($imap_stream, "a001 UNSUBSCRIBE \"$mailbox\"\n");
75 $read_ary = sqimap_read_data($imap_stream, "a001", true, $response, $message);
76 }
77
78
79
80
81 /******************************************************************************
4df5cf20 82 ** This function simply deletes the given folder
d29aac0e 83 ******************************************************************************/
84 function sqimap_mailbox_delete ($imap_stream, $mailbox) {
d29aac0e 85 sqimap_unsubscribe ($imap_stream, $mailbox);
86 fputs ($imap_stream, "a001 DELETE \"$mailbox\"\n");
87 $read_ary = sqimap_read_data($imap_stream, "a001", true, $response, $message);
88 }
89
90
91
92 /******************************************************************************
93 ** Returns sorted mailbox lists in several different ways.
94 ** The array returned looks like this:
95 ******************************************************************************/
96 function sqimap_mailbox_list ($imap_stream) {
4ca45d7b 97 global $special_folders, $list_special_folders_first;
98
d29aac0e 99 if (!function_exists ("ary_sort"))
100 include ("../functions/array.php");
101
102 $dm = sqimap_get_delimiter ($imap_stream);
103
104 fputs ($imap_stream, "a001 LIST \"\" INBOX\n");
105 $read_ary = sqimap_read_data ($imap_stream, "a001", true, $response, $message);
106 $g = 0;
107 $phase = "inbox";
108 for ($i = 0; $i < count($read_ary); $i++) {
109 if (substr ($read_ary[$i], 0, 4) != "a001") {
110 $boxes[$g]["raw"] = $read_ary[$i];
111
112 $mailbox = find_mailbox_name($read_ary[$i]);
113 $dm_count = countCharInString($mailbox, $dm);
114 if (substr($mailbox, -1) == $dm)
115 $dm_count--;
116
117 for ($j = 0; $j < $dm_count; $j++)
118 $boxes[$g]["formatted"] = $boxes[$g]["formatted"] . " ";
119 $boxes[$g]["formatted"] .= readShortMailboxName($mailbox, $dm);
120
121 if (substr($mailbox, -1) == $dm)
122 $mailbox = substr($mailbox, 0, strlen($mailbox) - 1);
123 $boxes[$g]["unformatted"] = $mailbox;
124 $boxes[$g]["id"] = $g;
125
126 /** Now lets get the flags for this mailbox **/
127 fputs ($imap_stream, "a002 LIST \"\" \"$mailbox\"\n");
128 $read_mlbx = sqimap_read_data ($imap_stream, "a002", true, $response, $message);
129
130 $flags = substr($read_mlbx[0], strpos($read_mlbx[0], "(")+1);
131 $flags = substr($flags, 0, strpos($flags, ")"));
132 $flags = str_replace("\\", "", $flags);
133 $flags = trim(strtolower($flags));
134 if ($flags) {
135 $boxes[$g]["flags"] = explode(" ", $flags);
136 }
137 }
138 $g++;
139
140 if (!$read_ary[$i+1]) {
141 if ($phase == "inbox") {
142 fputs ($imap_stream, "a001 LSUB \"\" *\n");
143 $read_ary = sqimap_read_data ($imap_stream, "a001", true, $response, $message);
144 $phase = "lsub";
145 $i--;
146 }
147 }
148 }
149
150 $original = $boxes;
4ca45d7b 151
152 /** Get the folders into lower case so sorting is not case sensative */
153 for ($i = 0; $i < count($original); $i++) {
154 $boxes[$i]["unformatted"] = strtolower($boxes[$i]["unformatted"]);
155 }
156
157 /** Sort them **/
d29aac0e 158 $boxes = ary_sort($boxes, "unformatted", 1);
4ca45d7b 159
160 /** Get them back from the original array, still sorted by the id **/
d29aac0e 161 for ($i = 0; $i < count($boxes); $i++) {
162 for ($j = 0; $j < count($original); $j++) {
163 if ($boxes[$i]["id"] == $original[$j]["id"]) {
164 $boxes[$i] = $original[$j];
165 }
166 }
167 }
168
4ca45d7b 169
d29aac0e 170 for ($i = 0; $i < count($boxes); $i++) {
171 if ($boxes[$i]["unformatted"] == $special_folders[0]) {
172 $boxesnew[0] = $boxes[$i];
4ca45d7b 173 $boxes[$i]["used"] = true;
d29aac0e 174 }
175 }
4ca45d7b 176
d29aac0e 177 if ($list_special_folders_first == true) {
178 for ($i = 0; $i < count($boxes); $i++) {
179 for ($j = 1; $j < count($special_folders); $j++) {
180 if (substr($boxes[$i]["unformatted"], 0, strlen($special_folders[$j])) == $special_folders[$j]) {
181 $pos = count($boxesnew);
182 $boxesnew[$pos] = $boxes[$i];
183 $boxes[$i]["used"] = true;
184 }
185 }
186 }
187 }
4ca45d7b 188
d29aac0e 189 for ($i = 0; $i < count($boxes); $i++) {
190 if (($boxes[$i]["unformatted"] != $special_folders[0]) &&
191 ($boxes[$i]["used"] == false)) {
192 $pos = count($boxesnew);
193 $boxesnew[$pos] = $boxes[$i];
194 $boxes[$i]["used"] = true;
195 }
196 }
197
4ca45d7b 198 return $boxesnew;
d29aac0e 199 }
200
4ca45d7b 201?>