Intl INBOX display in case of error
[squirrelmail.git] / functions / imap_messages.php
CommitLineData
59177427 1<?php
7350889b 2
35586184 3/**
4 * imap_messages.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This implements functions that manipulate messages
d6c32258 10 * NOTE: Quite a few functions in this file are obsolete
35586184 11 *
12 * $Id$
d6c32258 13 * @package squirrelmail
35586184 14 */
052e0c26 15
d6c32258 16/**
17 * Copies specified messages to specified folder
18 * @param int $imap_stream The resource ID for the IMAP connection
19 * @param string $start Beginning of range to copy
20 * @param string $end End of the range to copy
21 * @param string $mailbox Which box to copy to
22 * @deprecated This function is obsolete and should not be used
23 */
35586184 24function sqimap_messages_copy ($imap_stream, $start, $end, $mailbox) {
2d34da11 25 global $uid_support;
5419bf1b 26 $read = sqimap_run_command ($imap_stream, "COPY $start:$end " . sqimap_encode_mailbox_name($mailbox), true, $response, $message, $uid_support);
97f7ddf2 27}
28
7c3e0802 29/**
30* copy a range of messages ($id) to another mailbox ($mailbox)
d6c32258 31* @param int $imap_stream The resource ID for the IMAP socket
32* @param string $id The list of messages to copy
33* @param string $mailbox The destination to copy to
34* @return void
7c3e0802 35*/
034fddf9 36function sqimap_msgs_list_copy ($imap_stream, $id, $mailbox) {
37 global $uid_support;
38 $msgs_id = sqimap_message_list_squisher($id);
5419bf1b 39 $read = sqimap_run_command ($imap_stream, "COPY $msgs_id " . sqimap_encode_mailbox_name($mailbox), true, $response, $message, $uid_support);
7c3e0802 40}
41
42/**
43* move a range of messages ($id) to another mailbox. Deletes the originals.
d6c32258 44* @param int $imap_stream The resource ID for the IMAP socket
45* @param string $id The list of messages to move
46* @param string $mailbox The destination to move to
47* @return void
7c3e0802 48*/
49function sqimap_msgs_list_move ($imap_stream, $id, $mailbox) {
50 global $uid_support;
51 $msgs_id = sqimap_message_list_squisher($id);
52 $read = sqimap_run_command ($imap_stream, "COPY $msgs_id " . sqimap_encode_mailbox_name($mailbox), true, $response, $message, $uid_support);
53 $read = sqimap_run_command ($imap_stream, "STORE $msgs_id +FLAGS (\\Deleted)", true, $response,$message, $uid_support);
034fddf9 54}
55
56
d6c32258 57/**
58 * Deletes specified messages and moves them to trash if possible
59 * @deprecated This function is obsolete and should no longer be used
60 * @param int $imap_steam The resource ID for the IMAP connection
61 * @param string $start Start of range
62 * @param string $end End of range
63 * @param string $mailbox Mailbox messages are being deleted from
64 * @return void
65 */
97f7ddf2 66function sqimap_messages_delete ($imap_stream, $start, $end, $mailbox) {
2d34da11 67 global $move_to_trash, $trash_folder, $auto_expunge, $uid_support;
97f7ddf2 68
69 if (($move_to_trash == true) && (sqimap_mailbox_exists($imap_stream, $trash_folder) && ($mailbox != $trash_folder))) {
70 sqimap_messages_copy ($imap_stream, $start, $end, $trash_folder);
97f7ddf2 71 }
d8a8203a 72 sqimap_messages_flag ($imap_stream, $start, $end, "Deleted", true);
97f7ddf2 73}
74
6c540963 75function sqimap_msgs_list_delete ($imap_stream, $mailbox, $id, $bypass_trash=false) {
034fddf9 76 global $move_to_trash, $trash_folder, $uid_support;
77 $msgs_id = sqimap_message_list_squisher($id);
6c540963 78 if (($move_to_trash == true) && (sqimap_mailbox_exists($imap_stream, $trash_folder) && ($mailbox != $trash_folder)) && ($bypass_trash != true)) {
5419bf1b 79 $read = sqimap_run_command ($imap_stream, "COPY $msgs_id " . sqimap_encode_mailbox_name($trash_folder), true, $response, $message, $uid_support);
034fddf9 80 }
43342123 81 $read = sqimap_run_command ($imap_stream, "STORE $msgs_id +FLAGS (\\Deleted)", true, $response, $message, $uid_support);
034fddf9 82}
83
84
d6c32258 85/**
86 * Sets the specified messages with specified flag
87 */
d8a8203a 88function sqimap_messages_flag ($imap_stream, $start, $end, $flag, $handle_errors) {
2d34da11 89 global $uid_support;
d8a8203a 90 $read = sqimap_run_command ($imap_stream, "STORE $start:$end +FLAGS (\\$flag)", $handle_errors, $response, $message, $uid_support);
97f7ddf2 91}
92
034fddf9 93function sqimap_toggle_flag($imap_stream, $id, $flag, $set, $handle_errors) {
94 global $uid_support;
95 $msgs_id = sqimap_message_list_squisher($id);
96 $set_string = ($set ? '+' : '-');
97 $read = sqimap_run_command ($imap_stream, "STORE $msgs_id ".$set_string."FLAGS ($flag)", $handle_errors, $response, $message, $uid_support);
98}
99
48af4b64 100/** @deprecated */
97f7ddf2 101function sqimap_get_small_header ($imap_stream, $id, $sent) {
098ea084 102 $res = sqimap_get_small_header_list($imap_stream, $id, $sent);
97f7ddf2 103 return $res[0];
104}
3411d4ec 105
48af4b64 106/**
3411d4ec 107 * Sort the message list and crunch to be as small as possible
97f7ddf2 108 * (overflow could happen, so make it small if possible)
109 */
110function sqimap_message_list_squisher($messages_array) {
111 if( !is_array( $messages_array ) ) {
fe70ae27 112 return $messages_array;
97f7ddf2 113 }
2d34da11 114
97f7ddf2 115 sort($messages_array, SORT_NUMERIC);
116 $msgs_str = '';
117 while ($messages_array) {
118 $start = array_shift($messages_array);
119 $end = $start;
120 while (isset($messages_array[0]) && $messages_array[0] == $end + 1) {
121 $end = array_shift($messages_array);
122 }
123 if ($msgs_str != '') {
124 $msgs_str .= ',';
125 }
126 $msgs_str .= $start;
127 if ($start != $end) {
128 $msgs_str .= ':' . $end;
129 }
130 }
97f7ddf2 131 return $msgs_str;
3411d4ec 132}
97f7ddf2 133
48af4b64 134/**
135 * Get sort order from server and return it as the $id array for mailbox_display.
aa0da530 136 */
2d34da11 137function sqimap_get_sort_order ($imap_stream, $sort, $mbxresponse) {
ba80e62b 138 global $default_charset, $thread_sort_messages,
139 $internal_date_sort, $server_sort_array,
2d34da11 140 $sent_folder, $mailbox, $uid_support;
141
d7c82551 142 if (sqsession_is_registered('server_sort_array')) {
9eb0fbd4 143 sqsession_unregister('server_sort_array');
60a3e687 144 }
2d34da11 145
aa0da530 146 $sort_on = array();
147 $reverse = 0;
148 $server_sort_array = array();
149 $sort_test = array();
150 $sort_query = '';
2d34da11 151
152 if ($sort == 6) {
153 if ($uid_support) {
b4ac5b96 154 if (isset($mbxresponse['UIDNEXT']) && $mbxresponse['UIDNEXT']) {
155 $uidnext = $mbxresponse['UIDNEXT']-1;
156 } else {
157 $uidnext = '*';
158 }
a18594b2 159 $query = "SEARCH UID 1:$uidnext";
160 $uids = sqimap_run_command ($imap_stream, $query, true, $response, $message, true);
cdca177a 161 if (isset($uids[0])) {
162 if (preg_match("/^\* SEARCH (.+)$/", $uids[0], $regs)) {
163 $server_sort_array = preg_split("/ /", trim($regs[1]));
164 }
165 }
166 if (!preg_match("/OK/", $response)) {
167 $server_sort_array = 'no';
168 }
2d34da11 169 } else {
cdca177a 170 $qty = $mbxresponse['EXISTS'];
171 $server_sort_array = range(1, $qty);
172 }
770f0e03 173 $server_sort_array = array_reverse($server_sort_array);
9eb0fbd4 174 sqsession_register($server_sort_array, 'server_sort_array');
2d34da11 175 return $server_sort_array;
176 }
177
aa0da530 178 $sort_on = array (0=> 'DATE',
179 1=> 'DATE',
180 2=> 'FROM',
181 3=> 'FROM',
182 4=> 'SUBJECT',
d11ccd82 183 5=> 'SUBJECT');
aa0da530 184 if ($internal_date_sort == true) {
185 $sort_on[0] = 'ARRIVAL';
186 $sort_on[1] = 'ARRIVAL';
187 }
ba80e62b 188 if ($sent_folder == $mailbox) {
189 $sort_on[2] = 'TO';
190 $sort_on[3] = 'TO';
191 }
aa0da530 192 if (!empty($sort_on[$sort])) {
a18594b2 193 $query = "SORT ($sort_on[$sort]) ".strtoupper($default_charset).' ALL';
194 $sort_test = sqimap_run_command ($imap_stream, $query, true, $response, $message, $uid_support);
aa0da530 195 }
2728fa19 196 if (isset($sort_test[0])) {
a8a70251 197 for ($i=0,$iCnt=count($sort_test);$i<$iCnt;++$i) {
198 if (preg_match("/^\* SORT (.+)$/", $sort_test[$i], $regs)) {
cdca177a 199 $server_sort_array = preg_split("/ /", trim($regs[1]));
a8a70251 200 break;
cdca177a 201 }
a8a70251 202 }
aa0da530 203 }
204 if ($sort == 0 || $sort == 2 || $sort == 4) {
205 $server_sort_array = array_reverse($server_sort_array);
206 }
26eca02e 207 if (!preg_match("/OK/", $response)) {
cdca177a 208 $server_sort_array = 'no';
209 }
9eb0fbd4 210 sqsession_register($server_sort_array, 'server_sort_array');
aa0da530 211 return $server_sort_array;
212}
2d34da11 213
214
215function sqimap_get_php_sort_order ($imap_stream, $mbxresponse) {
216 global $uid_support;
217
d7c82551 218 if (sqsession_is_registered('php_sort_array')) {
9eb0fbd4 219 sqsession_unregister('php_sort_array');
2d34da11 220 }
221
2d34da11 222 $php_sort_array = array();
223
224 if ($uid_support) {
1855c790 225 if (isset($mbxresponse['UIDNEXT']) && $mbxresponse['UIDNEXT']) {
098ea084 226 $uidnext = $mbxresponse['UIDNEXT']-1;
227 } else {
228 $uidnext = '*';
229 }
a18594b2 230 $query = "SEARCH UID 1:$uidnext";
231 $uids = sqimap_run_command ($imap_stream, $query, true, $response, $message, true);
cdca177a 232 if (isset($uids[0])) {
233 if (preg_match("/^\* SEARCH (.+)$/", $uids[0], $regs)) {
2d34da11 234 $php_sort_array = preg_split("/ /", trim($regs[1]));
cdca177a 235 }
236 }
237 if (!preg_match("/OK/", $response)) {
238 $php_sort_array = 'no';
239 }
2d34da11 240 } else {
cdca177a 241 $qty = $mbxresponse['EXISTS'];
2d34da11 242 $php_sort_array = range(1, $qty);
243 }
9eb0fbd4 244 sqsession_register($php_sort_array, 'php_sort_array');
2d34da11 245 return $php_sort_array;
cdca177a 246}
247
2d34da11 248
48af4b64 249/**
250 * Returns an indent array for printMessageinfo()
251 * This represents the amount of indent needed (value),
252 * for this message number (key)
253 */
7c612fdd 254function get_parent_level ($imap_stream) {
255 global $sort_by_ref, $default_charset, $thread_new;
48af4b64 256 $parent = '';
257 $child = '';
258 $cutoff = 0;
cdca177a 259
288bbce0 260 /* loop through the threads and take unwanted characters out
261 of the thread string then chop it up
262 */
7c612fdd 263 for ($i=0;$i<count($thread_new);$i++) {
264 $thread_new[$i] = preg_replace("/\s\(/", "(", $thread_new[$i]);
265 $thread_new[$i] = preg_replace("/(\d+)/", "$1|", $thread_new[$i]);
266 $thread_new[$i] = preg_split("/\|/", $thread_new[$i], -1, PREG_SPLIT_NO_EMPTY);
267 }
268 $indent_array = array();
269 if (!$thread_new) {
474528eb 270 $thread_new = array();
7c612fdd 271 }
288bbce0 272 /* looping through the parts of one message thread */
cdca177a 273
7c612fdd 274 for ($i=0;$i<count($thread_new);$i++) {
288bbce0 275 /* first grab the parent, it does not indent */
cdca177a 276
7c612fdd 277 if (isset($thread_new[$i][0])) {
288bbce0 278 if (preg_match("/(\d+)/", $thread_new[$i][0], $regs)) {
279 $parent = $regs[1];
280 }
7c612fdd 281 }
282 $indent_array[$parent] = 0;
288bbce0 283
284 /* now the children, checking each thread portion for
285 ),(, and space, adjusting the level and space values
286 to get the indent level
287 */
288 $level = 0;
474528eb 289 $spaces = array();
290 $spaces_total = 0;
7c612fdd 291 $indent = 0;
288bbce0 292 $fake = FALSE;
7c612fdd 293 for ($k=1;$k<(count($thread_new[$i]))-1;$k++) {
294 $chars = count_chars($thread_new[$i][$k], 1);
288bbce0 295 if (isset($chars['40'])) { /* testing for ( */
296 $level = $level + $chars['40'];
7c612fdd 297 }
288bbce0 298 if (isset($chars['41'])) { /* testing for ) */
299 $level = $level - $chars['41'];
474528eb 300 $spaces[$level] = 0;
288bbce0 301 /* if we were faking lets stop, this portion
302 of the thread is over
303 */
304 if ($level == $cutoff) {
305 $fake = FALSE;
7c612fdd 306 }
307 }
288bbce0 308 if (isset($chars['32'])) { /* testing for space */
474528eb 309 if (!isset($spaces[$level])) {
310 $spaces[$level] = 0;
311 }
312 $spaces[$level] = $spaces[$level] + $chars['32'];
313 }
314 for ($x=0;$x<=$level;$x++) {
315 if (isset($spaces[$x])) {
316 $spaces_total = $spaces_total + $spaces[$x];
317 }
288bbce0 318 }
474528eb 319 $indent = $level + $spaces_total;
288bbce0 320 /* must have run into a message that broke the thread
321 so we are adjusting for that portion
322 */
323 if ($fake == TRUE) {
324 $indent = $indent +1;
7c612fdd 325 }
326 if (preg_match("/(\d+)/", $thread_new[$i][$k], $regs)) {
327 $child = $regs[1];
328 }
288bbce0 329 /* the thread must be broken if $indent == 0
330 so indent the message once and start faking it
331 */
332 if ($indent == 0) {
333 $indent = 1;
334 $fake = TRUE;
335 $cutoff = $level;
336 }
337 /* dont need abs but if indent was negative
338 errors would occur
339 */
7c612fdd 340 $indent_array[$child] = abs($indent);
474528eb 341 $spaces_total = 0;
cdca177a 342 }
7c612fdd 343 }
344 return $indent_array;
345}
346
347
48af4b64 348/**
349 * Returns an array with each element as a string representing one
350 * message-thread as returned by the IMAP server.
351 */
7c612fdd 352function get_thread_sort ($imap_stream) {
2d34da11 353 global $thread_new, $sort_by_ref, $default_charset, $server_sort_array, $uid_support;
d7c82551 354 if (sqsession_is_registered('thread_new')) {
9eb0fbd4 355 sqsession_unregister('thread_new');
7c612fdd 356 }
d7c82551 357 if (sqsession_is_registered('server_sort_array')) {
9eb0fbd4 358 sqsession_unregister('server_sort_array');
60a3e687 359 }
7c612fdd 360 $thread_temp = array ();
361 if ($sort_by_ref == 1) {
362 $sort_type = 'REFERENCES';
363 }
364 else {
365 $sort_type = 'ORDEREDSUBJECT';
366 }
a18594b2 367 $query = "THREAD $sort_type ".strtoupper($default_charset)." ALL";
368 $thread_test = sqimap_run_command ($imap_stream, $query, true, $response, $message, $uid_support);
2728fa19 369 if (isset($thread_test[0])) {
9978560b 370 for ($i=0,$iCnt=count($thread_test);$i<$iCnt;++$i) {
297e99ab 371 if (preg_match("/^\* THREAD (.+)$/", $thread_test[$i], $regs)) {
9978560b 372 $thread_list = trim($regs[1]);
373 break;
374 }
375 }
7c612fdd 376 }
377 else {
378 $thread_list = "";
379 }
26eca02e 380 if (!preg_match("/OK/", $response)) {
cdca177a 381 $server_sort_array = 'no';
382 return $server_sort_array;
383 }
474528eb 384 if (isset($thread_list)) {
385 $thread_temp = preg_split("//", $thread_list, -1, PREG_SPLIT_NO_EMPTY);
386 }
7c612fdd 387 $char_count = count($thread_temp);
388 $counter = 0;
389 $thread_new = array();
390 $k = 0;
391 $thread_new[0] = "";
392 for ($i=0;$i<$char_count;$i++) {
393 if ($thread_temp[$i] != ')' && $thread_temp[$i] != '(') {
394 $thread_new[$k] = $thread_new[$k] . $thread_temp[$i];
395 }
396 elseif ($thread_temp[$i] == '(') {
397 $thread_new[$k] .= $thread_temp[$i];
398 $counter++;
399 }
400 elseif ($thread_temp[$i] == ')') {
401 if ($counter > 1) {
402 $thread_new[$k] .= $thread_temp[$i];
403 $counter = $counter - 1;
404 }
405 else {
406 $thread_new[$k] .= $thread_temp[$i];
407 $k++;
408 $thread_new[$k] = "";
409 $counter = $counter - 1;
410 }
411 }
412 }
9eb0fbd4 413 sqsession_register($thread_new, 'thread_new');
7c612fdd 414 $thread_new = array_reverse($thread_new);
415 $thread_list = implode(" ", $thread_new);
416 $thread_list = str_replace("(", " ", $thread_list);
417 $thread_list = str_replace(")", " ", $thread_list);
418 $thread_list = preg_split("/\s/", $thread_list, -1, PREG_SPLIT_NO_EMPTY);
60a3e687 419 $server_sort_array = $thread_list;
9eb0fbd4 420 sqsession_register($server_sort_array, 'server_sort_array');
7c612fdd 421 return $thread_list;
422}
423
034fddf9 424
7b07404c 425function elapsedTime($start) {
426 $stop = gettimeofday();
427 $timepassed = 1000000 * ($stop['sec'] - $start['sec']) + $stop['usec'] - $start['usec'];
428 return $timepassed;
429}
7c612fdd 430
ea5fa593 431// only used in sqimap_get_small_header_list
a18594b2 432function parseString($read,&$i) {
433 $char = $read{$i};
434 $s = '';
435 if ($char == '"') {
436 $iPos = ++$i;
437 while (true) {
438 $iPos = strpos($read,'"',$iPos);
439 if (!$iPos) break;
440 if ($iPos && $read{$iPos -1} != '\\') {
441 $s = substr($read,$i,($iPos-$i));
442 $i = $iPos;
443 break;
444 }
445 $iPos++;
446 if ($iPos > strlen($read)) {
447 break;
448 }
449 }
450 } else if ($char == '{') {
451 $lit_cnt = '';
452 ++$i;
453 $iPos = strpos($read,'}',$i);
454 if ($iPos) {
455 $lit_cnt = substr($read, $i, $iPos - $i);
456 $i += strlen($lit_cnt) + 3; /* skip } + \r + \n */
457 /* Now read the literal */
458 $s = ($lit_cnt ? substr($read,$i,$lit_cnt): '');
459 $i += $lit_cnt;
460 /* temp bugfix (SM 1.5 will have a working clean version)
461 too much work to implement that version right now */
462 --$i;
463 } else { /* should never happen */
464 $i += 3; /* } + \r + \n */
465 $s = '';
466 }
467 } else {
468 return false;
469 }
470 ++$i;
471 return $s;
472}
473
ea5fa593 474// only used in sqimap_get_small_header_list
a18594b2 475function parseArray($read,&$i) {
476 $i = strpos($read,'(',$i);
477 $i_pos = strpos($read,')',$i);
478 $s = substr($read,$i+1,$i_pos - $i -1);
479 $a = explode(' ',$s);
480 if ($i_pos) {
481 $i = $i_pos+1;
482 return $a;
483 } else {
484 return false;
485 }
486}
487
488function sqimap_get_small_header_list ($imap_stream, $msg_list, $show_num=false) {
e7be116b 489 global $squirrelmail_language, $color, $data_dir, $username, $imap_server_type;
cef054e4 490 global $uid_support, $allow_server_sort;
97f7ddf2 491 /* Get the small headers for each message in $msg_list */
97f7ddf2 492 $maxmsg = sizeof($msg_list);
a18594b2 493 if ($show_num != '999999') {
494 $msgs_str = sqimap_message_list_squisher($msg_list);
495 } else {
496 $msgs_str = '1:*';
497 }
cef054e4 498 $messages = array();
97f7ddf2 499 $read_list = array();
a18594b2 500
3411d4ec 501 /*
97f7ddf2 502 * We need to return the data in the same order as the caller supplied
503 * in $msg_list, but IMAP servers are free to return responses in
504 * whatever order they wish... So we need to re-sort manually
505 */
506 for ($i = 0; $i < sizeof($msg_list); $i++) {
a18594b2 507 $messages["$msg_list[$i]"] = array();
97f7ddf2 508 }
cdca177a 509
7b07404c 510 $internaldate = getPref($data_dir, $username, 'internal_date_sort');
511 if ($internaldate) {
a18594b2 512 $query = "FETCH $msgs_str (FLAGS UID RFC822.SIZE INTERNALDATE BODY.PEEK[HEADER.FIELDS (Date To Cc From Subject X-Priority Content-Type)])";
7b07404c 513 } else {
a18594b2 514 $query = "FETCH $msgs_str (FLAGS UID RFC822.SIZE BODY.PEEK[HEADER.FIELDS (Date To Cc From Subject X-Priority Content-Type)])";
7b07404c 515 }
a18594b2 516 $read_list = sqimap_run_command_list ($imap_stream, $query, true, $response, $message, $uid_support);
2d34da11 517 $i = 0;
a18594b2 518
519 foreach ($read_list as $r) {
97f7ddf2 520 $subject = _("(no subject)");
10c50790 521 $from = _("Unknown sender");
97f7ddf2 522 $priority = 0;
9b761dbd 523 $messageid = '<>';
cef054e4 524 $cc = $to = $date = $type[0] = $type[1] = $inrepto = '';
525 $flag_seen = $flag_answered = $flag_deleted = $flag_flagged = false;
a18594b2 526
527 $read = implode('',$r);
528
529 /*
530 * #id<space>FETCH<space>(
531 */
532
533 /* extract the message id */
534 $i_space = strpos($read,' ',2);
535 $id = substr($read,2,$i_space-2);
536 $fetch = substr($read,$i_space+1,5);
537 if (!is_numeric($id) && $fetch !== 'FETCH') {
538 set_up_language($squirrelmail_language);
539 echo '<br><b><font color=$color[2]>' .
540 _("ERROR : Could not complete request.") .
541 '</b><br>' .
542 _("Unknown response from IMAP server: ") . ' 1.' .
543 htmlspecialchars($read) . "</font><br>\n";
544 break;
545 }
546 $i = strpos($read,'(',$i_space+5);
547 $read = substr($read,$i+1);
548 $i_len = strlen($read);
549 $i = 0;
550 while ($i < $i_len && $i !== false) {
551 /* get argument */
552 $read = trim(substr($read,$i));
553 $i_len = strlen($read);
554 $i = strpos($read,' ');
555 $arg = substr($read,0,$i);
556 ++$i;
557 switch ($arg)
558 {
559 case 'UID':
560 $i_pos = strpos($read,' ',$i);
561 if (!$i_pos) {
562 $i_pos = strpos($read,')',$i);
cdca177a 563 }
a18594b2 564 if ($i_pos) {
565 $unique_id = substr($read,$i,$i_pos-$i);
566 $i = $i_pos+1;
567 } else {
568 break 3;
cdca177a 569 }
a18594b2 570 break;
571 case 'FLAGS':
572 $flags = parseArray($read,$i);
573 if (!$flags) break 3;
574 foreach ($flags as $flag) {
575 $flag = strtolower($flag);
576 switch ($flag)
577 {
578 case '\\seen': $flag_seen = true; break;
579 case '\\answered': $flag_answered = true; break;
580 case '\\deleted': $flag_deleted = true; break;
581 case '\\flagged': $flag_flagged = true; break;
582 default: break;
cdca177a 583 }
584 }
a18594b2 585 break;
586 case 'RFC822.SIZE':
587 $i_pos = strpos($read,' ',$i);
588 if (!$i_pos) {
589 $i_pos = strpos($read,')',$i);
cdca177a 590 }
a18594b2 591 if ($i_pos) {
592 $size = substr($read,$i,$i_pos-$i);
593 $i = $i_pos+1;
594 } else {
595 break 3;
596 }
597
598 break;
599 case 'INTERNALDATE':
27932b08 600 $date = parseString($read,$i);
601 //if ($tmpdate === false) break 3;
602 //$tmpdate = str_replace(' ',' ',$tmpdate);
603 //$tmpdate = explode(' ',$tmpdate);
604 //$date = str_replace('-',' ',$tmpdate[0]) . " " .
605 // $tmpdate[1] . ' ' . $tmpdate[2];
a18594b2 606 break;
607 case 'BODY.PEEK[HEADER.FIELDS':
608 case 'BODY[HEADER.FIELDS':
609 $i = strpos($read,'{',$i);
610 $header = parseString($read,$i);
611 if ($header === false) break 3;
612 /* First we unfold the header */
613 $hdr = trim(str_replace(array("\r\n\t", "\r\n "),array('', ''), $header));
614 /* Now we can make a new header array with */
615 /* each element representing a headerline */
616 $hdr = explode("\r\n" , $hdr);
617 foreach ($hdr as $line) {
618 $pos = strpos($line, ':');
619 if ($pos > 0) {
620 $field = strtolower(substr($line, 0, $pos));
621 if (!strstr($field,' ')) { /* valid field */
622 $value = trim(substr($line, $pos+1));
623 switch($field)
624 {
625 case 'to': $to = $value; break;
626 case 'cc': $cc = $value; break;
627 case 'from': $from = $value; break;
27932b08 628 case 'date': $date = $value; break;
a18594b2 629 case 'x-priority': $priority = $value; break;
630 case 'subject':
631 $subject = $value;
cdca177a 632 if ($subject == "") {
633 $subject = _("(no subject)");
634 }
635 break;
a18594b2 636 case 'content-type':
637 $type = $value;
cdca177a 638 if ($pos = strpos($type, ";")) {
639 $type = substr($type, 0, $pos);
640 }
641 $type = explode("/", $type);
cef054e4 642 if(!is_array($type)) {
643 $type[0] = 'text';
644 }
cdca177a 645 if (!isset($type[1])) {
646 $type[1] = '';
647 }
648 break;
a18594b2 649 default: break;
650 }
cdca177a 651 }
652 }
653 }
a18594b2 654 break;
655 default:
656 ++$i;
657 break;
cdca177a 658 }
cdca177a 659 }
cef054e4 660 if (isset($date)) {
661 $date = str_replace(' ', ' ', $date);
662 $tmpdate = explode(' ', trim($date));
663 } else {
664 $tmpdate = $date = array('', '', '', '', '', '');
665 }
2d34da11 666 if ($uid_support) {
a18594b2 667 $msgi ="$unique_id";
cef054e4 668 $messages[$msgi]['ID'] = $unique_id;
2d34da11 669 } else {
a18594b2 670 $msgi = "$id";
671 $messages[$msgi]['ID'] = $id;
cef054e4 672 }
cef054e4 673 $messages[$msgi]['TIME_STAMP'] = getTimeStamp($tmpdate);
674 $messages[$msgi]['DATE_STRING'] = getDateString($messages[$msgi]['TIME_STAMP']);
0c1c4c19 675 $messages[$msgi]['FROM'] = $from; //parseAddress($from);
098ea084 676 $messages[$msgi]['SUBJECT'] = $subject;
677// if (handleAsSent($mailbox)) {
0c1c4c19 678 $messages[$msgi]['TO'] = $to; //parseAddress($to);
098ea084 679// }
cef054e4 680 $messages[$msgi]['PRIORITY'] = $priority;
0c1c4c19 681 $messages[$msgi]['CC'] = $cc; //parseAddress($cc);
cef054e4 682 $messages[$msgi]['SIZE'] = $size;
683 $messages[$msgi]['TYPE0'] = $type[0];
684 $messages[$msgi]['FLAG_DELETED'] = $flag_deleted;
685 $messages[$msgi]['FLAG_ANSWERED'] = $flag_answered;
686 $messages[$msgi]['FLAG_SEEN'] = $flag_seen;
687 $messages[$msgi]['FLAG_FLAGGED'] = $flag_flagged;
688
689 /* non server sort stuff */
690 if (!$allow_server_sort) {
a18594b2 691 $from = parseAddress($from);
692 if ($from[0][1]) {
693 $from = decodeHeader($from[0][1]);
694 } else {
695 $from = $from[0][0];
696 }
697 $messages[$msgi]['FROM-SORT'] = $from;
698 $subject_sort = strtolower(decodeHeader($subject));
699 if (preg_match("/^(vedr|sv|re|aw):\s*(.*)$/si", $subject_sort, $matches)){
cef054e4 700 $messages[$msgi]['SUBJECT-SORT'] = $matches[2];
a18594b2 701 } else {
702 $messages[$msgi]['SUBJECT-SORT'] = $subject_sort;
703 }
cdca177a 704 }
a18594b2 705 ++$msgi;
97f7ddf2 706 }
a18594b2 707 array_reverse($messages);
708 $new_messages = array();
709 foreach ($messages as $i =>$message) {
710 $new_messages[] = $message;
711 }
712 return $new_messages;
97f7ddf2 713}
714
48af4b64 715/**
3411d4ec 716 * Returns a message array with all the information about a message.
717 * See the documentation folder for more information about this array.
718 */
97f7ddf2 719function sqimap_get_message ($imap_stream, $id, $mailbox) {
2d34da11 720 global $uid_support;
cdca177a 721
2d34da11 722 $flags = array();
723 $read = sqimap_run_command ($imap_stream, "FETCH $id (FLAGS BODYSTRUCTURE)", true, $response, $message, $uid_support);
114f2a24 724 if ($read) {
b69a13a4 725 if (preg_match('/.+FLAGS\s\((.*)\)\s/AUi',$read[0],$regs)) {
726 if (trim($regs[1])) {
727 $flags = preg_split('/ /', $regs[1],-1,'PREG_SPLIT_NI_EMPTY');
728 }
729 }
114f2a24 730 } else {
b69a13a4 731 /* the message was not found, maybe the mailbox was modified? */
732 global $sort, $startMessage, $color;
733
734 $errmessage = _("The server couldn't find the message you requested.") .
735 '<p>'._("Most probably your message list was out of date and the message has been moved away or deleted (perhaps by another program accessing the same mailbox).");
736 /* this will include a link back to the message list */
737 error_message($errmessage, $mailbox, $sort, $startMessage, $color);
738 exit;
2d34da11 739 }
740 $bodystructure = implode('',$read);
741 $msg = mime_structure($bodystructure,$flags);
742 $read = sqimap_run_command ($imap_stream, "FETCH $id BODY[HEADER]", true, $response, $message, $uid_support);
19d470aa 743 $rfc822_header = new Rfc822Header();
767ace1f 744 $rfc822_header->parseHeader($read);
745 $msg->rfc822_header = $rfc822_header;
2d34da11 746 return $msg;
97f7ddf2 747}
748
052e0c26 749?>