You havta do http redirect at the end of page.
[squirrelmail.git] / functions / imap_mailbox.php
CommitLineData
59177427 1<?php
8e9e8afa 2 /**
3 ** imap_mailbox.php
4 **
5 ** This impliments all functions that manipulate mailboxes
6 **/
7
8 /******************************************************************************
9 ** Expunges a mailbox
10 ******************************************************************************/
a7f3c40d 11 function sqimap_mailbox_expunge ($imap_stream, $mailbox,$handle_errors = true) {
8e9e8afa 12 sqimap_mailbox_select ($imap_stream, $mailbox);
13 fputs ($imap_stream, "a001 EXPUNGE\r\n");
8cf653ad 14 $read = sqimap_read_data($imap_stream, "a001", $handle_errors, $response, $message);
a2790a61 15 sqimap_mailbox_close ($imap_stream);
8e9e8afa 16 }
17
18
19 /******************************************************************************
20 ** Checks whether or not the specified mailbox exists
21 ******************************************************************************/
22 function sqimap_mailbox_exists ($imap_stream, $mailbox) {
26511b3e 23 fputs ($imap_stream, "a001 LIST \"\" \"$mailbox\"\r\n");
24 $mbx = sqimap_read_data($imap_stream, "a001", true, $response, $message);
44f642f5 25 if ($mailbox) {
f9b3e5d9 26 return !!(ereg ("$mailbox", $mbx[0])); // To force into true/false
8e9e8afa 27 }
8e9e8afa 28 }
29
a2790a61 30 /******************************************************************************
31 ** Closes an open mailbox
32 ******************************************************************************/
33 function sqimap_mailbox_close ($imap_stream) {
34 fputs ($imap_stream, "a001 CLOSE\r\n");
c95df380 35 $tmp = sqimap_read_data($imap_stream, "a001", false, $response, $message);
a2790a61 36 }
8e9e8afa 37
8e9e8afa 38 /******************************************************************************
39 ** Selects a mailbox
40 ******************************************************************************/
04632dbc 41 function sqimap_mailbox_select ($imap_stream, $mailbox, $hide=true, $recent=false) {
3751dc7f 42 global $auto_expunge;
43
8e9e8afa 44 fputs ($imap_stream, "a001 SELECT \"$mailbox\"\r\n");
2752bb16 45 $read = sqimap_read_data($imap_stream, "a001", true, $response, $message);
04632dbc 46 if ($recent) {
47 for ($i=0; $i<count($read); $i++) {
48 if (strpos(strtolower($read[$i]), "recent")) {
49 $r = explode(" ", $read[$i]);
50 }
51 }
52 return $r[1];
53 }
3751dc7f 54 if ($auto_expunge) {
55 fputs ($imap_stream, "a001 EXPUNGE\r\n");
8cf653ad 56 $tmp = sqimap_read_data($imap_stream, "a001", false, $a, $b);
3751dc7f 57 }
8e9e8afa 58 }
59
60
61
62 /******************************************************************************
63 ** Creates a folder
64 ******************************************************************************/
65 function sqimap_mailbox_create ($imap_stream, $mailbox, $type) {
66 if (strtolower($type) == "noselect") {
67 $dm = sqimap_get_delimiter($imap_stream);
68 $mailbox = $mailbox.$dm;
69 }
70 fputs ($imap_stream, "a001 CREATE \"$mailbox\"\r\n");
71 $read_ary = sqimap_read_data($imap_stream, "a001", true, $response, $message);
72
73 sqimap_subscribe ($imap_stream, $mailbox);
74 }
75
76
77
78 /******************************************************************************
79 ** Subscribes to an existing folder
80 ******************************************************************************/
81 function sqimap_subscribe ($imap_stream, $mailbox) {
82 fputs ($imap_stream, "a001 SUBSCRIBE \"$mailbox\"\r\n");
83 $read_ary = sqimap_read_data($imap_stream, "a001", true, $response, $message);
84 }
85
86
87
88
89 /******************************************************************************
90 ** Unsubscribes to an existing folder
91 ******************************************************************************/
92 function sqimap_unsubscribe ($imap_stream, $mailbox) {
2752bb16 93 global $imap_server_type;
cbdc5621 94
8e9e8afa 95 fputs ($imap_stream, "a001 UNSUBSCRIBE \"$mailbox\"\r\n");
96 $read_ary = sqimap_read_data($imap_stream, "a001", true, $response, $message);
97 }
98
99
100
101
102 /******************************************************************************
103 ** This function simply deletes the given folder
104 ******************************************************************************/
105 function sqimap_mailbox_delete ($imap_stream, $mailbox) {
106 fputs ($imap_stream, "a001 DELETE \"$mailbox\"\r\n");
107 $read_ary = sqimap_read_data($imap_stream, "a001", true, $response, $message);
108 sqimap_unsubscribe ($imap_stream, $mailbox);
109 }
110
111
112 /******************************************************************************
113 ** Formats a mailbox into 4 parts for the $boxes array
5bdd7223 114 **
115 ** The four parts are:
116 **
117 ** raw - Raw LIST/LSUB response from the IMAP server
118 ** formatted - nicely formatted folder name
119 ** unformatted - unformatted, but with delimiter at end removed
120 ** unformatted-dm - folder name as it appears in raw response
2752bb16 121 ** unformatted-disp - unformatted without $folder_prefix
5bdd7223 122 **
8e9e8afa 123 ******************************************************************************/
16530f8b 124 function sqimap_mailbox_parse ($line, $line_lsub, $dm) {
5bdd7223 125 global $folder_prefix;
126
127 // Process each folder line
8e9e8afa 128 for ($g=0; $g < count($line); $g++) {
5bdd7223 129
2752bb16 130 // Store the raw IMAP reply
8e9e8afa 131 $boxes[$g]["raw"] = $line[$g];
5bdd7223 132
2752bb16 133 // Count number of delimiters ($dm) in folder name
6477eb2d 134 $mailbox = trim($line_lsub[$g]);
8e9e8afa 135 $dm_count = countCharInString($mailbox, $dm);
136 if (substr($mailbox, -1) == $dm)
5bdd7223 137 $dm_count--; // If name ends in delimiter - decrement count by one
138
2752bb16 139 // Format folder name, but only if it's a INBOX.* or have
140 // a parent.
141 $boxesbyname[$mailbox] = $g;
142 $parentfolder = readMailboxParent($mailbox, $dm);
143 if((eregi("^inbox".quotemeta($dm), $mailbox)) ||
144 (ereg("^".$folder_prefix, $mailbox)) ||
145 ( isset($boxesbyname[$parentfolder]) && (strlen($parentfolder) > 0) ) ) {
146 $indent = $dm_count - (countCharInString($folder_prefix, $dm));
0debfed6 147 if ($indent)
148 $boxes[$g]["formatted"] = str_repeat("&nbsp;&nbsp;", $indent);
149 else
150 $boxes[$g]["formatted"] = '';
2752bb16 151 $boxes[$g]["formatted"] .= readShortMailboxName($mailbox, $dm);
152 } else {
153 $boxes[$g]["formatted"] = $mailbox;
154 }
8e9e8afa 155
156 $boxes[$g]["unformatted-dm"] = $mailbox;
157 if (substr($mailbox, -1) == $dm)
158 $mailbox = substr($mailbox, 0, strlen($mailbox) - 1);
159 $boxes[$g]["unformatted"] = $mailbox;
2752bb16 160 $boxes[$g]["unformatted-disp"] = ereg_replace("^" . $folder_prefix, "", $mailbox);
8e9e8afa 161 $boxes[$g]["id"] = $g;
162
f9b3e5d9 163 ereg("\(([^)]*)\)",$line[$g],$regs);
164 $flags = trim(strtolower(str_replace("\\", "",$regs[1])));
8e9e8afa 165 if ($flags) {
166 $boxes[$g]["flags"] = explode(" ", $flags);
167 }
8e9e8afa 168 }
5bdd7223 169
8e9e8afa 170 return $boxes;
171 }
10359c65 172
5bdd7223 173 /* patch from dave_michmerhuizen@yahoo.com
174 * allows case insensativity when sorting folders
175 */
176 function _icmp ($a, $b) {
177 return strcasecmp($a, $b);
178 }
8e9e8afa 179
180 /******************************************************************************
181 ** Returns sorted mailbox lists in several different ways.
5bdd7223 182 ** See comment on sqimap_mailbox_parse() for info about the returned array.
8e9e8afa 183 ******************************************************************************/
184 function sqimap_mailbox_list ($imap_stream) {
5bdd7223 185 global $load_prefs_php, $prefs_php, $config_php;
186 global $data_dir, $username, $list_special_folders_first;
6477eb2d 187 global $trash_folder, $sent_folder;
f9b3e5d9 188 global $move_to_trash, $move_to_sent;
8e9e8afa 189
1590a668 190 $inbox_in_list = false;
191 $inbox_subscribed = false;
192
8e9e8afa 193 if (!isset($load_prefs_php)) include "../src/load_prefs.php";
194 else global $folder_prefix;
195 if (!function_exists ("ary_sort")) include "../functions/array.php";
196
197 $dm = sqimap_get_delimiter ($imap_stream);
198
8e9e8afa 199 /** LSUB array **/
200 $inbox_subscribed = false;
6477eb2d 201 fputs ($imap_stream, "a001 LSUB \"\" \"*\"\r\n");
8e9e8afa 202 $lsub_ary = sqimap_read_data ($imap_stream, "a001", true, $response, $message);
6477eb2d 203
8e9e8afa 204 for ($i=0;$i < count($lsub_ary); $i++) {
205 $sorted_lsub_ary[$i] = find_mailbox_name($lsub_ary[$i]);
8e9e8afa 206 if ($sorted_lsub_ary[$i] == "INBOX")
207 $inbox_subscribed = true;
208 }
ee62ce13 209 $new_ary = array();
210 for ($i=0; $i < count($sorted_lsub_ary); $i++) {
211 if (!in_array($sorted_lsub_ary[$i], $new_ary)) {
212 $new_ary[] = $sorted_lsub_ary[$i];
213 }
214 }
215 $sorted_lsub_ary = $new_ary;
8e9e8afa 216 if (isset($sorted_lsub_ary)) {
2752bb16 217 usort($sorted_lsub_ary, "_icmp");
10359c65 218 //sort($sorted_lsub_ary);
8e9e8afa 219 }
220
3cb866d7 221 /** LIST array **/
f9b3e5d9 222 for ($i=0; $i < count($sorted_lsub_ary); $i++) {
223 if (substr($sorted_lsub_ary[$i], -1) == $dm)
224 $mbx = substr($sorted_lsub_ary[$i], 0, strlen($sorted_lsub_ary[$i])-1);
225 else
226 $mbx = $sorted_lsub_ary[$i];
227
228 fputs ($imap_stream, "a001 LIST \"\" \"$mbx\"\r\n");
229 $read = sqimap_read_data ($imap_stream, "a001", true, $response, $message);
230 $sorted_list_ary[$i] = $read[0];
3cb866d7 231 if (find_mailbox_name($sorted_list_ary[$i]) == "INBOX")
232 $inbox_in_list = true;
f9b3e5d9 233 }
2752bb16 234
8e9e8afa 235 /** Just in case they're not subscribed to their inbox, we'll get it for them anyway **/
236 if ($inbox_subscribed == false || $inbox_in_list == false) {
237 fputs ($imap_stream, "a001 LIST \"\" \"INBOX\"\r\n");
238 $inbox_ary = sqimap_read_data ($imap_stream, "a001", true, $response, $message);
591000ec 239
240 $pos = count($sorted_list_ary);
241 $sorted_list_ary[$pos] = $inbox_ary[0];
242
243 $pos = count($sorted_lsub_ary);
244 $sorted_lsub_ary[$pos] = find_mailbox_name($inbox_ary[0]);
8e9e8afa 245 }
246
f9b3e5d9 247 $boxes = sqimap_mailbox_parse ($sorted_list_ary, $sorted_lsub_ary, $dm);
248
5bdd7223 249
f9b3e5d9 250 /** Now, lets sort for special folders **/
5bdd7223 251
252 $boxesnew = Array();
253
254 // Find INBOX
8e9e8afa 255 for ($i = 0; $i < count($boxes); $i++) {
1e0628fb 256 if (strtolower($boxes[$i]["unformatted"]) == "inbox") {
5bdd7223 257 $boxesnew[] = $boxes[$i];
8e9e8afa 258 $boxes[$i]["used"] = true;
2752bb16 259 $i = count($boxes);
8e9e8afa 260 }
261 }
aed206bf 262
8e9e8afa 263 if ($list_special_folders_first == true) {
5bdd7223 264
2752bb16 265 // Then list special folders and their subfolders
266 for ($i = 0 ; $i <= count($boxes) ; $i++) {
267 if((eregi("^".$trash_folder.'$', $boxes[$i]["unformatted"]) ||
268 eregi("^".$trash_folder.quotemeta($dm), $boxes[$i]["unformatted"]) ) &&
269 ($move_to_trash)) {
5bdd7223 270 $boxesnew[] = $boxes[$i];
1e0628fb 271 $boxes[$i]["used"] = true;
272 }
2752bb16 273 else if((eregi("^".$sent_folder.'$', $boxes[$i]["unformatted"]) ||
274 eregi("^".$sent_folder.quotemeta($dm), $boxes[$i]["unformatted"]) ) &&
275 ($move_to_sent)) {
5bdd7223 276 $boxesnew[] = $boxes[$i];
1e0628fb 277 $boxes[$i]["used"] = true;
8e9e8afa 278 }
279 }
5bdd7223 280
2752bb16 281 // Put INBOX.* folders ahead of the rest
282 for ($i = 0; $i <= count($boxes); $i++) {
283 if (eregi("^inbox\.", $boxes[$i]["unformatted"]) &&
284 ($boxes[$i]["used"] == false)) {
285 $boxesnew[] = $boxes[$i];
286 $boxes[$i]["used"] = true;
287 }
288 }
5bdd7223 289
8e9e8afa 290 }
c5eb2c03 291
5bdd7223 292 // Rest of the folders
8e9e8afa 293 for ($i = 0; $i < count($boxes); $i++) {
1e0628fb 294 if ((strtolower($boxes[$i]["unformatted"]) != "inbox") &&
8e9e8afa 295 ($boxes[$i]["used"] == false)) {
5bdd7223 296 $boxesnew[] = $boxes[$i];
8e9e8afa 297 $boxes[$i]["used"] = true;
298 }
299 }
300
301 return $boxesnew;
302 }
8e9e8afa 303
304 /******************************************************************************
305 ** Returns a list of all folders, subscribed or not
306 ******************************************************************************/
307 function sqimap_mailbox_list_all ($imap_stream) {
1e0628fb 308 global $list_special_folders_first, $folder_prefix;
8e9e8afa 309
310 if (!function_exists ("ary_sort"))
311 include ("../functions/array.php");
312
313 $dm = sqimap_get_delimiter ($imap_stream);
314
315 fputs ($imap_stream, "a001 LIST \"$folder_prefix\" *\r\n");
316 $read_ary = sqimap_read_data ($imap_stream, "a001", true, $response, $message);
317 $g = 0;
318 $phase = "inbox";
5bdd7223 319
8e9e8afa 320 for ($i = 0; $i < count($read_ary); $i++) {
321 if (substr ($read_ary[$i], 0, 4) != "a001") {
5bdd7223 322
2752bb16 323 // Store the raw IMAP reply
8e9e8afa 324 $boxes[$g]["raw"] = $read_ary[$i];
325
2752bb16 326 // Count number of delimiters ($dm) in folder name
8e9e8afa 327 $mailbox = find_mailbox_name($read_ary[$i]);
328 $dm_count = countCharInString($mailbox, $dm);
329 if (substr($mailbox, -1) == $dm)
5bdd7223 330 $dm_count--; // If name ends in delimiter - decrement count by one
2752bb16 331
332 // Format folder name, but only if it's a INBOX.* or have
333 // a parent.
334 $boxesbyname[$mailbox] = $g;
335 $parentfolder = readMailboxParent($mailbox, $dm);
336 if((eregi("^inbox".quotemeta($dm), $mailbox)) ||
337 (ereg("^".$folder_prefix, $mailbox)) ||
338 ( isset($boxesbyname[$parentfolder]) && (strlen($parentfolder) > 0) ) ) {
0debfed6 339 if ($dm_count)
340 $boxes[$g]["formatted"] = str_repeat("&nbsp;&nbsp;", $dm_count);
341 else
342 $boxes[$g]["formatted"] = '';
2752bb16 343 $boxes[$g]["formatted"] .= readShortMailboxName($mailbox, $dm);
344 } else {
345 $boxes[$g]["formatted"] = $mailbox;
346 }
8e9e8afa 347
348 $boxes[$g]["unformatted-dm"] = $mailbox;
349 if (substr($mailbox, -1) == $dm)
350 $mailbox = substr($mailbox, 0, strlen($mailbox) - 1);
351 $boxes[$g]["unformatted"] = $mailbox;
2752bb16 352 $boxes[$g]["unformatted-disp"] = ereg_replace("^" . $folder_prefix, "", $mailbox);
8e9e8afa 353 $boxes[$g]["id"] = $g;
354
355 /** Now lets get the flags for this mailbox **/
356 fputs ($imap_stream, "a002 LIST \"\" \"$mailbox\"\r\n");
357 $read_mlbx = sqimap_read_data ($imap_stream, "a002", true, $response, $message);
358
359 $flags = substr($read_mlbx[0], strpos($read_mlbx[0], "(")+1);
360 $flags = substr($flags, 0, strpos($flags, ")"));
361 $flags = str_replace("\\", "", $flags);
362 $flags = trim(strtolower($flags));
363 if ($flags) {
364 $boxes[$g]["flags"] = explode(" ", $flags);
365 }
366 }
367 $g++;
368 }
5bdd7223 369 if(is_array($boxes)) {
591000ec 370 $boxes = ary_sort ($boxes, "unformatted", 1);
371 }
5bdd7223 372
8e9e8afa 373 return $boxes;
374 }
375
052e0c26 376?>