Error catching on failure & update ChangeLog
[squirrelmail.git] / functions / mailbox_display.php
CommitLineData
59177427 1<?php
2ba13803 2
35586184 3/**
4 * mailbox_display.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This contains functions that display mailbox information, such as the
10 * table row that has sender, date, subject, etc...
11 *
12 * $Id$
13 */
a4c2cd49 14
b68edc75 15require_once(SM_PATH . 'functions/strings.php');
16require_once(SM_PATH . 'functions/html.php');
17require_once(SM_PATH . 'class/html.class.php');
18require_once(SM_PATH . 'functions/imap_mailbox.php');
43fdb2a4 19
6c930ade 20/* Default value for page_selector_max. */
21define('PG_SEL_MAX', 10);
22
7b887886 23function printMessageInfo($imapConnection, $t, $not_last=true, $key, $mailbox,
d215ca7d 24 $start_msg, $where, $what) {
8008456a 25 global $checkall,
c1c17724 26 $color, $msgs, $msort,
c1c17724 27 $default_use_priority,
28 $message_highlight_list,
29 $index_order,
30 $indent_array, /* indent subject by */
31 $pos, /* Search postion (if any) */
32 $thread_sort_messages, /* thread sorting on/off */
33 $server_sort_order, /* sort value when using server-sorting */
34 $row_count,
35 $allow_server_sort; /* enable/disable server-side sorting */
e9e5f0fa 36 $color_string = $color[4];
8008456a 37
38 if ($GLOBALS['alt_index_colors']) {
39 if (!isset($row_count)) {
40 $row_count = 0;
41 }
42 $row_count++;
43 if ($row_count % 2) {
44 if (!isset($color[12])) {
45 $color[12] = '#EAEAEA';
46 }
47 $color_string = $color[12];
48 }
bdfb67f8 49 }
8008456a 50 $msg = $msgs[$key];
51
6a622b59 52 if($mailbox == 'None') {
53 $boxes = sqimap_mailbox_list($imapConnection);
8008456a 54 $mailbox = $boxes[0]['unformatted'];
6a622b59 55 unset($boxes);
bdfb67f8 56 }
8008456a 57 $urlMailbox = urlencode($mailbox);
e9e5f0fa 58
59 if (handleAsSent($mailbox)) {
60 $msg['FROM'] = $msg['TO'];
61 /*
62 * This is done in case you're looking into Sent folders,
63 * because you can have multiple receivers.
64 */
65 $senderNames = explode(',', $msg['FROM']);
6a622b59 66 $senderName = '';
e9e5f0fa 67 if (sizeof($senderNames)){
68 foreach ($senderNames as $senderNames_part) {
69 if ($senderName != '') {
70 $senderName .= ', ';
71 }
72 $senderName .= sqimap_find_displayable_name($senderNames_part);
73 }
74 }
75 } else {
6a622b59 76 $senderName = sqimap_find_displayable_name($msg['FROM']);
e9e5f0fa 77 }
78
8008456a 79 $subject = processSubject($msg['SUBJECT']);
a966982b 80
6b4bd11f 81 echo html_tag( 'tr' ) . "\n";
8008456a 82
83 if (isset($msg['FLAG_FLAGGED']) && ($msg['FLAG_FLAGGED'] == true)) {
84 $flag = "<font color=\"$color[2]\">";
85 $flag_end = '</font>';
86 } else {
87 $flag = '';
88 $flag_end = '';
bdfb67f8 89 }
8008456a 90 if (!isset($msg['FLAG_SEEN']) || ($msg['FLAG_SEEN'] == false)) {
91 $bold = '<b>';
92 $bold_end = '</b>';
93 } else {
94 $bold = '';
95 $bold_end = '';
bdfb67f8 96 }
8008456a 97 if (handleAsSent($mailbox)) {
98 $italic = '<i>';
99 $italic_end = '</i>';
100 } else {
101 $italic = '';
102 $italic_end = '';
103 }
104 if (isset($msg['FLAG_DELETED']) && $msg['FLAG_DELETED']) {
105 $fontstr = "<font color=\"$color[9]\">";
106 $fontstr_end = '</font>';
107 } else {
108 $fontstr = '';
109 $fontstr_end = '';
110 }
111
d215ca7d 112 if ($where && $what) {
113 $searchstr = '&amp;where='.$where.'&amp;what='.$what;
114 } else {
115 $searchstr = '';
6a622b59 116 }
8008456a 117 /**
118 * AAAAH! Make my eyes stop bleeding!
119 * Who wrote this?!
120 */
121 if (sizeof($message_highlight_list)){
122 foreach ($message_highlight_list as $message_highlight_list_part) {
123 if (trim($message_highlight_list_part['value']) != '') {
c0d04f97 124 $high_val = strtolower($message_highlight_list_part['value']);
125 $match_type = strtoupper($message_highlight_list_part['match_type']);
126 if ($match_type == 'TO_CC') {
127 if (strstr('^^' . strtolower($msg['TO']), $high_val) ||
128 strstr('^^' . strtolower($msg['CC']), $high_val)) {
6a622b59 129 $hlt_color = $message_highlight_list_part['color'];
130 continue;
131 }
132 } else {
c0d04f97 133 if (strstr('^^' . strtolower($msg[$match_type]), $high_val)) {
8008456a 134 $hlt_color = $message_highlight_list_part['color'];
135 continue;
136 }
8008456a 137 }
138 }
139 }
140 }
141
142 if (!isset($hlt_color)) {
143 $hlt_color = $color_string;
144 }
7b887886 145 $checked = ($checkall == 1) ? true : false;
5e0efebf 146 $col = 0;
6a622b59 147 if (sizeof($index_order)) {
8008456a 148 foreach ($index_order as $index_order_part) {
149 switch ($index_order_part) {
150 case 1: /* checkbox */
151 echo html_tag( 'td',
152 "<input type=checkbox name=\"msg[$t]\" value=\"".$msg['ID']."\"$checked>",
6a622b59 153 'center',
8008456a 154 $hlt_color );
155 break;
156 case 2: /* from */
157 echo html_tag( 'td',
6a622b59 158 $italic . $bold . $flag . $fontstr . $senderName .
8008456a 159 $fontstr_end . $flag_end . $bold_end . $italic_end,
c1c17724 160 'left',
8008456a 161 $hlt_color );
162 break;
163 case 3: /* date */
164 echo html_tag( 'td',
165 $bold . $flag . $fontstr . $msg['DATE_STRING'] .
166 $fontstr_end . $flag_end . $bold_end,
167 'center',
168 $hlt_color,
169 'nowrap' );
170 break;
171 case 4: /* subject */
172 $td_str = $bold;
173 if ($thread_sort_messages == 1) {
174 if (isset($indent_array[$msg["ID"]])) {
175 $td_str .= str_repeat("&nbsp;&nbsp;&nbsp;&nbsp;",$indent_array[$msg['ID']]);
176 }
177 }
e9e5f0fa 178 $td_str .= '<a href="read_body.php?mailbox='.$urlMailbox
6a622b59 179 . '&amp;passed_id='. $msg["ID"]
180 . '&amp;startMessage='.$start_msg.$searchstr.'"';
8008456a 181 do_hook("subject_link");
182 if ($subject != $msg['SUBJECT']) {
183 $title = get_html_translation_table(HTML_SPECIALCHARS);
184 $title = array_flip($title);
185 $title = strtr($msg['SUBJECT'], $title);
186 $title = str_replace('"', "''", $title);
187 $td_str .= " title=\"$title\"";
188 }
189 $td_str .= ">$flag$subject$flag_end</a>$bold_end";
c1c17724 190 echo html_tag( 'td', $td_str, 'left', $hlt_color );
8008456a 191 break;
192 case 5: /* flags */
193 $stuff = false;
194 $td_str = "<b><small>";
6a622b59 195
8008456a 196 if (isset($msg['FLAG_ANSWERED']) && $msg['FLAG_ANSWERED'] == true) {
197 $td_str .= _("A");
198 $stuff = true;
199 }
200 if ($msg['TYPE0'] == 'multipart') {
201 $td_str .= '+';
202 $stuff = true;
203 }
204 if ($default_use_priority) {
205 if ( ($msg['PRIORITY'] == 1) || ($msg['PRIORITY'] == 2) ) {
206 $td_str .= "<font color=\"$color[1]\">!</font>";
207 $stuff = true;
208 }
209 if ($msg['PRIORITY'] == 5) {
210 $td_str .= "<font color=\"$color[8]\">?</font>";
211 $stuff = true;
212 }
213 }
214 if (isset($msg['FLAG_DELETED']) && $msg['FLAG_DELETED'] == true) {
215 $td_str .= "<font color=\"$color[1]\">D</font>";
216 $stuff = true;
217 }
218 if (!$stuff) {
219 $td_str .= '&nbsp;';
220 }
221 $td_str .= '</small></b>';
222 echo html_tag( 'td',
223 $td_str,
224 'center',
225 $hlt_color,
226 'nowrap' );
227 break;
228 case 6: /* size */
8008456a 229 echo html_tag( 'td',
6a622b59 230 $bold . $fontstr . show_readable_size($msg['SIZE']) .
8008456a 231 $fontstr_end . $bold_end,
232 'right',
233 $hlt_color );
234 break;
235 }
ed230bc3 236 ++$col;
8008456a 237 }
bdfb67f8 238 }
7b887886 239 if ($not_last) {
ed230bc3 240 echo '</tr>' . "\n" . '<tr><td COLSPAN="' . $col . '" BGCOLOR="' .
241 $color[0] . '" HEIGHT="1"></td></tr>' . "\n";
6a622b59 242 } else {
7b887886 243 echo '</tr>'."\n";
6a622b59 244 }
e9e5f0fa 245}
246
ed230bc3 247function getServerMessages($imapConnection, $start_msg, $show_num, $num_msgs, $id) {
248 if ($id != 'no') {
249 if ($start_msg + ($show_num - 1) < $num_msgs) {
250 $end_msg = $start_msg + ($show_num-1);
251 } else {
252 $end_msg = $num_msgs;
253 }
254 $id = array_slice($id, ($start_msg-1), ($end_msg));
255
256 $end = $start_msg + $show_num - 1;
257 if ($num_msgs < $show_num) {
258 $end_loop = $num_msgs;
259 } else if ($end > $num_msgs) {
260 $end_loop = $num_msgs - $start_msg + 1;
261 } else {
262 $end_loop = $show_num;
263 }
264 return fillMessageArray($imapConnection,$id,$end_loop);
265 } else {
266 return false;
267 }
268}
269
270function getThreadMessages($imapConnection, $start_msg, $show_num, $num_msgs) {
271 $id = get_thread_sort($imapConnection);
272 return getServerMessages($imapConnection, $start_msg, $show_num, $num_msgs, $id);
273}
274
6a622b59 275function getServerSortMessages($imapConnection, $start_msg, $show_num,
ed230bc3 276 $num_msgs, $server_sort_order, $mbxresponse) {
277 $id = sqimap_get_sort_order($imapConnection, $server_sort_order,$mbxresponse);
278 return getServerMessages($imapConnection, $start_msg, $show_num, $num_msgs, $id);
e9e5f0fa 279}
280
6a622b59 281function getSelfSortMessages($imapConnection, $start_msg, $show_num,
e9e5f0fa 282 $num_msgs, $sort, $mbxresponse) {
ed230bc3 283 $msgs = array();
284 if ($num_msgs >= 1) {
285 $id = sqimap_get_php_sort_order ($imapConnection, $mbxresponse);
286 if ($sort < 6 ) {
287 $end = $num_msgs;
288 $end_loop = $end;
289 } else {
290 /* if it's not sorted */
291 if ($start_msg + ($show_num - 1) < $num_msgs) {
292 $end_msg = $start_msg + ($show_num - 1);
293 } else {
294 $end_msg = $num_msgs;
295 }
296 if ($end_msg < $start_msg) {
297 $start_msg = $start_msg - $show_num;
298 if ($start_msg < 1) {
299 $start_msg = 1;
300 }
301 }
302 $id = array_slice(array_reverse($id), ($start_msg-1), ($end_msg));
303 $end = $start_msg + $show_num - 1;
304 if ($num_msgs < $show_num) {
305 $end_loop = $num_msgs;
306 } else if ($end > $num_msgs) {
307 $end_loop = $num_msgs - $start_msg + 1;
308 } else {
309 $end_loop = $show_num;
310 }
311 }
312 $msgs = fillMessageArray($imapConnection,$id,$end_loop);
e9e5f0fa 313 }
ed230bc3 314 return $msgs;
e9e5f0fa 315}
316
317
318
6c930ade 319/*
e35045b7 320 * This function loops through a group of messages in the mailbox
321 * and shows them to the user.
322 */
6a622b59 323function showMessagesForMailbox($imapConnection, $mailbox, $num_msgs,
324 $start_msg, $sort, $color, $show_num,
325 $use_cache, $mode='') {
326 global $msgs, $msort, $auto_expunge, $thread_sort_messages,
327 $allow_server_sort, $server_sort_order;
328
329 /* If autoexpunge is turned on, then do it now. */
330 $mbxresponse = sqimap_mailbox_select($imapConnection, $mailbox);
331 $srt = $sort;
332 /* If autoexpunge is turned on, then do it now. */
333 if ($auto_expunge == true) {
334 $exp_cnt = sqimap_mailbox_expunge($imapConnection, $mailbox, false, '');
335 $mbxresponse['EXISTS'] = $mbxresponse['EXISTS'] - $exp_cnt;
336 $num_msgs = $mbxresponse['EXISTS'];
337 }
e35045b7 338
6a622b59 339 if ($mbxresponse['EXISTS'] > 0) {
340 /* if $start_msg is lower than $num_msgs, we probably deleted all messages
341 * in the last page. We need to re-adjust the start_msg
342 */
aa0da530 343
6a622b59 344 if($start_msg > $num_msgs) {
345 $start_msg -= $show_num;
346 if($start_msg < 1) {
347 $start_msg = 1;
348 }
e9e5f0fa 349 }
4e9f35e4 350
6a622b59 351 /* This code and the next if() block check for
352 * server-side sorting methods. The $id array is
353 * formatted and $sort is set to 6 to disable
354 * SM internal sorting
355 */
356
357 if ($thread_sort_messages == 1) {
358 $mode = 'thread';
359 } elseif ($allow_server_sort == 1) {
360 $mode = 'serversort';
361 } else {
362 $mode = '';
363 }
8008456a 364
ed230bc3 365 sqsession_unregister('msort');
366 sqsession_unregister('msgs');
6a622b59 367 switch ($mode) {
368 case 'thread':
ed230bc3 369 $id = get_thread_sort($imapConnection);
370 $msgs = getServerMessages($imapConnection, $start_msg, $show_num, $num_msgs, $id);
6a622b59 371 if ($msgs === false) {
372 echo '<b><small><center><font color=red>' .
373 _("Thread sorting is not supported by your IMAP server.<br>Please report this to the system administrator.").
374 '</center></small></b>';
375 $thread_sort_messages = 0;
376 $msort = $msgs = array();
6a622b59 377 } else {
378 $msort= $msgs;
379 $sort = 6;
6a622b59 380 }
381 break;
382 case 'serversort':
ed230bc3 383 $id = sqimap_get_sort_order($imapConnection, $sort, $mbxresponse);
384 $msgs = getServerMessages($imapConnection, $start_msg, $show_num, $num_msgs, $id);
6a622b59 385 if ($msgs === false) {
386 echo '<b><small><center><font color=red>' .
387 _( "Server-side sorting is not supported by your IMAP server.<br>Please report this to the system administrator.").
388 '</center></small></b>';
389 $sort = $server_sort_order;
390 $allow_server_sort = FALSE;
391 $msort = $msgs = array();
6a622b59 392 $id = array();
393 } else {
6a622b59 394 $msort = $msgs;
ed230bc3 395 $sort = 6;
6a622b59 396 }
397 break;
398 default:
399 if (!$use_cache) {
6a622b59 400 $msgs = getSelfSortMessages($imapConnection, $start_msg, $show_num,
401 $num_msgs, $sort, $mbxresponse);
402 $msort = calc_msort($msgs, $sort);
6a622b59 403 } /* !use cache */
404 break;
405 } // switch
ed230bc3 406 sqsession_register($msort, 'msort');
407 sqsession_register($msgs, 'msgs');
6a622b59 408 } /* if exists > 0 */
409
410 $res = getEndMessage($start_msg, $show_num, $num_msgs);
411 $start_msg = $res[0];
412 $end_msg = $res[1];
413
414 $paginator_str = get_paginator_str($mailbox, $start_msg, $end_msg,
415 $num_msgs, $show_num, $sort);
416
417 $msg_cnt_str = get_msgcnt_str($start_msg, $end_msg, $num_msgs);
418
419 do_hook('mailbox_index_before');
22642690 420 echo '<table border="0" width="100%" cellpadding="0" cellspacing="0">';
421 echo '<tr><td>';
422
423 mail_message_listing_beginning($imapConnection, $mailbox, $sort,
424 $msg_cnt_str, $paginator_str, $start_msg);
425 echo '</td></tr>';
426 /* line between the button area and the list */
427 echo '<tr><td HEIGHT="5" BGCOLOR="'.$color[4].'"></td></tr>';
428
429 echo '<tr><td>';
430 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
431 echo ' <tr><td>';
432 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="'.$color[5].'">';
433 echo '<tr><td>';
6a622b59 434 printHeader($mailbox, $srt, $color, !$thread_sort_messages);
435
22642690 436 displayMessageArray($imapConnection, $num_msgs, $start_msg,
437 $msort, $mailbox, $sort, $color, $show_num,0,0);
438 echo '</td></tr></table></td></tr></table>';
6a622b59 439
22642690 440 mail_message_listing_end($num_msgs, $paginator_str, $msg_cnt_str, $color);
6a622b59 441 echo '</td></tr></table>';
6c930ade 442}
bdfb67f8 443
e9e5f0fa 444function calc_msort($msgs, $sort) {
8008456a 445
e35045b7 446 /*
447 * 0 = Date (up)
448 * 1 = Date (dn)
449 * 2 = Name (up)
450 * 3 = Name (dn)
451 * 4 = Subject (up)
452 * 5 = Subject (dn)
453 */
6a622b59 454 if (($sort == 0) || ($sort == 1)) {
455 $msort = array_cleave ($msgs, 'TIME_STAMP');
456 } elseif (($sort == 2) || ($sort == 3)) {
457 $msort = array_cleave ($msgs, 'FROM-SORT');
458 } elseif (($sort == 4) || ($sort == 5)) {
459 $msort = array_cleave ($msgs, 'SUBJECT-SORT');
460 } else {
461 $msort = $msgs;
462 }
463 if ($sort < 6) {
464 if ($sort % 2) {
465 asort($msort);
466 } else {
467 arsort($msort);
468 }
469 }
470 return $msort;
471}
472
473function fillMessageArray($imapConnection, $id, $count) {
474 $msgs_list = sqimap_get_small_header_list($imapConnection, $id);
475 $messages = array();
476 if (sizeof($msgs_list)) {
477 foreach ($msgs_list as $hdr) {
478 $unique_id[] = $hdr->uid;
479 $from[] = $hdr->from;
480 $date[] = $hdr->date;
481 $subject[] = $hdr->subject;
482 $to[] = $hdr->to;
483 $priority[] = $hdr->priority;
484 $cc[] = $hdr->cc;
485 $size[] = $hdr->size;
486 $type[] = $hdr->type0;
487 $flag_deleted[] = $hdr->flag_deleted;
488 $flag_answered[] = $hdr->flag_answered;
489 $flag_seen[] = $hdr->flag_seen;
490 $flag_flagged[] = $hdr->flag_flagged;
491 }
492 }
493
494 for($j = 0; $j < $count; ++$j) {
495 if (isset($date[$j])) {
496 $date[$j] = str_replace(' ', ' ', $date[$j]);
497 $tmpdate = explode(' ', trim($date[$j]));
498 } else {
499 $tmpdate = $date = array('', '', '', '', '', '');
500 }
501 $messages[$j]['TIME_STAMP'] = getTimeStamp($tmpdate);
502 $messages[$j]['DATE_STRING'] =
503 getDateString($messages[$j]['TIME_STAMP']);
504 $messages[$j]['ID'] = $unique_id[$j];
505 $messages[$j]['FROM'] = decodeHeader($from[$j]);
506 $messages[$j]['FROM-SORT'] =
507 strtolower(sqimap_find_displayable_name(decodeHeader($from[$j])));
508 $messages[$j]['SUBJECT'] = decodeHeader($subject[$j]);
509 $messages[$j]['SUBJECT-SORT'] = strtolower(decodeHeader($subject[$j]));
510 $messages[$j]['TO'] = decodeHeader($to[$j]);
511 $messages[$j]['PRIORITY'] = $priority[$j];
512 $messages[$j]['CC'] = $cc[$j];
513 $messages[$j]['SIZE'] = $size[$j];
514 $messages[$j]['TYPE0'] = $type[$j];
515 $messages[$j]['FLAG_DELETED'] = $flag_deleted[$j];
516 $messages[$j]['FLAG_ANSWERED'] = $flag_answered[$j];
517 $messages[$j]['FLAG_SEEN'] = $flag_seen[$j];
518 $messages[$j]['FLAG_FLAGGED'] = $flag_flagged[$j];
519
520 /*
521 * fix SUBJECT-SORT to remove Re:
522 * vedr|sv (Danish)
523 * re|aw (English)
524 *
525 * TODO: i18n should be incorporated here. E.g. we catch the ones
526 * we know about, but also define in i18n what the localized
527 * "Re: " is for this or that locale.
528 */
529 if (preg_match("/^(vedr|sv|re|aw):\s*(.*)$/si",
530 $messages[$j]['SUBJECT-SORT'], $matches)){
531 $messages[$j]['SUBJECT-SORT'] = $matches[2];
532 }
533 }
534 return $messages;
e35045b7 535}
8008456a 536
e9e5f0fa 537
e35045b7 538/* Generic function to convert the msgs array into an HTML table. */
6a622b59 539function displayMessageArray($imapConnection, $num_msgs, $start_msg,
540 $msort, $mailbox, $sort, $color,
541 $show_num, $where=0, $what=0) {
542 global $imapServerAddress, $use_mailbox_cache,
543 $index_order, $checkall,
544 $indent_array, $thread_sort_messages, $allow_server_sort,
545 $server_sort_order, $PHP_SELF;
546
547 $res = getEndMessage($start_msg, $show_num, $num_msgs);
548 $start_msg = $res[0];
549 $end_msg = $res[1];
a966982b 550
6a622b59 551 $urlMailbox = urlencode($mailbox);
e9e5f0fa 552
6a622b59 553 /* get indent level for subject display */
554 if ($thread_sort_messages == 1 ) {
555 $indent_array = get_parent_level($imapConnection);
94ac35c6 556 }
a966982b 557
6a622b59 558 $real_startMessage = $start_msg;
559 if ($sort == 6) {
560 if ($end_msg - $start_msg < $show_num - 1) {
561 $end_msg = $end_msg - $start_msg + 1;
562 $start_msg = 1;
563 } else if ($start_msg > $show_num) {
564 $end_msg = $show_num;
565 $start_msg = 1;
566 }
567 }
568 $endVar = $end_msg + 1;
569
570 /*
571 * Loop through and display the info for each message.
572 * ($t is used for the checkbox number)
573 */
574 $t = 0;
575
576 /* messages display */
577
578 if ($num_msgs == 0) {
e35045b7 579 /* if there's no messages in this folder */
8008456a 580 echo html_tag( 'tr',
13cf639b 581 html_tag( 'td',
6b4bd11f 582 "<BR><b>" . _("THIS FOLDER IS EMPTY") . "</b><BR>&nbsp;",
13cf639b 583 'center',
584 $color[4],
585 'COLSPAN="' . count($index_order) . '"'
586 )
6a622b59 587 );
588 } elseif ($start_msg == $end_msg) {
e35045b7 589 /* if there's only one message in the box, handle it differently. */
6a622b59 590 if ($sort != 6) {
591 $i = $start_msg;
592 } else {
593 $i = 1;
594 }
595 reset($msort);
596 $k = 0;
597 do {
598 $key = key($msort);
599 next($msort);
600 $k++;
601 } while (isset ($key) && ($k < $i));
7b887886 602 printMessageInfo($imapConnection, $t, true, $key, $mailbox,
ed230bc3 603 $real_startMessage, $where, $what);
94ac35c6 604 } else {
6a622b59 605 $i = $start_msg;
606 reset($msort);
607 $k = 0;
608 do {
609 $key = key($msort);
610 next($msort);
611 $k++;
612 } while (isset ($key) && ($k < $i));
ed230bc3 613 $not_last = true;
6a622b59 614 do {
ed230bc3 615 if (!$i || $i == $endVar-1) $not_last = false;
616 printMessageInfo($imapConnection, $t, $not_last, $key, $mailbox,
617 $real_startMessage, $where, $what);
6a622b59 618 $key = key($msort);
619 $t++;
620 $i++;
621 next($msort);
622 } while ($i && $i < $endVar);
94ac35c6 623 }
bdfb67f8 624}
625
6c930ade 626/*
e35045b7 627 * Displays the standard message list header. To finish the table,
628 * you need to do a "</table></table>";
629 *
630 * $moveURL is the URL to submit the delete/move form to
631 * $mailbox is the current mailbox
632 * $sort is the current sorting method (-1 for no sorting available [searches])
633 * $Message is a message that is centered on top of the list
634 * $More is a second line that is left aligned
635 */
e35045b7 636
6a622b59 637function mail_message_listing_beginning ($imapConnection,
638 $mailbox = '', $sort = -1,
639 $msg_cnt_str = '',
640 $paginator = '&nbsp;',
641 $start_msg = 1) {
642 global $color, $auto_expunge, $base_uri, $thread_sort_messages,
643 $allow_thread_sort, $allow_server_sort, $server_sort_order,
644 $PHP_SELF;
645
646 $php_self = $PHP_SELF;
647 /* fix for incorrect $PHP_SELF */
648 if (strpos($php_self, 'move_messages.php')) {
649 $php_self = str_replace('move_messages.php', 'right_main.php', $php_self);
650 }
651 $urlMailbox = urlencode($mailbox);
e35045b7 652
6a622b59 653 if (preg_match('/^(.+)\?.+$/',$php_self,$regs)) {
654 $source_url = $regs[1];
655 } else {
656 $source_url = $php_self;
657 }
658
659 if (!isset($msg)) {
660 $msg = '';
661 }
662 $moveURL = "move_messages.php?msg=$msg&amp;mailbox=$urlMailbox"
663 . "&amp;startMessage=$start_msg";
664 /*
665 * This is the beginning of the message list table.
666 * It wraps around all messages
667 */
8008456a 668 echo "<FORM name=\"messageList\" method=post action=\"$moveURL\">\n"
22642690 669 . html_tag( 'table' ,
c1c17724 670 html_tag( 'tr',
671 html_tag( 'td' ,
672 html_tag( 'table' ,
673 html_tag( 'tr',
674 html_tag( 'td', $paginator, 'left' ) .
22642690 675 html_tag( 'td', $msg_cnt_str, 'right' )
c1c17724 676 )
22642690 677 , '', $color[4], 'border="0" width="100%" cellpadding="1" cellspacing="0"' )
c1c17724 678 , 'left', '', '' )
679 , '', $color[0] )
22642690 680 , '', '', 'border="0" width="100%" cellpadding="1" cellspacing="0"' );
4b920601 681 /* line between header and button area */
22642690 682 echo '<tr><td HEIGHT="5" BGCOLOR="'.$color[4].'"></td></tr>';
22642690 683
4b920601 684 echo '<tr><td>';
22642690 685 echo html_tag( 'tr' ) . "\n"
686 . html_tag( 'td' ,'' , 'left', '', '' )
687 . html_tag( 'table' ,'' , '', $color[9], 'border="0" width="100%" cellpadding="1" cellspacing="0"' )
688 . '<tr><td>'
689 . html_tag( 'table' ,'' , '', $color[0], 'border="0" width="100%" cellpadding="1" cellspacing="0"' )
c1c17724 690 . html_tag( 'tr',
22642690 691 getSmallStringCell(_("Move Selected To"), 'left', 'nowrap') .
692 getSmallStringCell(_("Transform Selected Messages"), 'right')
c1c17724 693 )
e9e5f0fa 694 . html_tag( 'tr' ) ."\n"
695 . html_tag( 'td', '', 'left', '', 'valign="middle" nowrap' );
22642690 696 getMbxList($imapConnection);
697 echo getButton('SUBMIT', 'moveButton',_("Move")) . "\n";
698 echo getButton('SUBMIT', 'attache',_("Forward")) . "\n";
6c930ade 699
22642690 700 echo " </TD>\n"
6a622b59 701 . html_tag( 'td', '', 'right', '', 'nowrap' );
e35045b7 702
22642690 703
704
6a622b59 705 if (!$auto_expunge) {
706 echo getButton('SUBMIT', 'expungeButton',_("Expunge"))
707 .'&nbsp;' . _("mailbox") . "\n";
708 }
e35045b7 709
6a622b59 710 echo getButton('SUBMIT', 'markRead',_("Read"));
711 echo getButton('SUBMIT', 'markUnread',_("Unread"));
712 echo getButton('SUBMIT', 'delete',_("Delete")) ."&nbsp\n";
713 if (!strpos($php_self,'mailbox')) {
714 $location = $php_self.'?mailbox=INBOX&amp;startMessage=1';
715 } else {
716 $location = $php_self;
8008456a 717 }
6a622b59 718 echo '<INPUT TYPE="HIDDEN" NAME="location" VALUE="'.$location.'">';
719 echo "</TD>\n"
720 . " </TR>\n";
721
722 /* draws thread sorting links */
723 if ($allow_thread_sort == TRUE) {
724 if ($thread_sort_messages == 1 ) {
725 $set_thread = 2;
726 $thread_name = _("Unthread View");
727 } elseif ($thread_sort_messages == 0) {
728 $set_thread = 1;
729 $thread_name = _("Thread View");
730 }
c1c17724 731 echo html_tag( 'tr' ,
732 html_tag( 'td' ,
e35045b7 733 '&nbsp;<a href=' . $source_url . '?sort='
c1c17724 734 . "$sort" . '&start_messages=1&set_thread=' . "$set_thread"
735 . '&mailbox=' . urlencode($mailbox) . '><small>' . $thread_name
736 . '</a></small>&nbsp;'
737 , '', '', '' )
738 , '', '', '' );
6a622b59 739 }
a966982b 740
22642690 741 echo "</TABLE></td></tr></table></td></tr>\n";
a966982b 742
1b91be0c 743 do_hook('mailbox_form_before');
6c766fd5 744
8008456a 745 /* if using server sort we highjack the
6a622b59 746 * the $sort var and use $server_sort_order
747 * instead. but here we reset sort for a bit
748 * since its easy
749 */
8008456a 750 if ($allow_server_sort == TRUE) {
751 $sort = $server_sort_order;
752 }
e9e5f0fa 753}
a966982b 754
e9e5f0fa 755function mail_message_listing_end($num_msgs, $paginator_str, $msg_cnt_str, $color) {
22642690 756 if ($num_msgs) {
4b920601 757 /* space between list and footer */
22642690 758 echo '<tr><td HEIGHT="5" BGCOLOR="'.$color[4].'" COLSPAN="1">';
4b920601 759
22642690 760 echo '</td></tr><tr><td>';
761 echo html_tag( 'table',
e9e5f0fa 762 html_tag( 'tr',
763 html_tag( 'td',
764 html_tag( 'table',
765 html_tag( 'tr',
766 html_tag( 'td', $paginator_str ) .
767 html_tag( 'td', $msg_cnt_str, 'right' )
768 )
22642690 769 , '', $color[4], 'width="100%" border="0" cellpadding="1" cellspacing="0"' )
e9e5f0fa 770 )
22642690 771 )
772 , '', $color[9], 'width="100%" border="0" cellpadding="1" cellspacing="0"' );
773 echo '</td></tr>';
774 }
6a622b59 775 /* End of message-list table */
a966982b 776
6a622b59 777 do_hook('mailbox_index_after');
778 echo "</FORM>\n";
a966982b 779}
780
e9e5f0fa 781function printHeader($mailbox, $sort, $color, $showsort=true) {
6a622b59 782 global $index_order;
1b91be0c 783 echo html_tag( 'tr' ,'' , 'center', $color[5] );
6a622b59 784 for ($i = 1; $i <= count($index_order); $i++) {
8008456a 785 switch ($index_order[$i]) {
786 case 1: /* checkbox */
787 case 5: /* flags */
1b91be0c 788 echo html_tag( 'td' ,'&nbsp;' , '', '', 'width="1%"' );
8008456a 789 break;
790 case 2: /* from */
791 if (handleAsSent($mailbox)) {
1b91be0c 792 echo html_tag( 'td' ,'' , 'left', '', 'width="25%"' )
6a622b59 793 . '<b>' . _("To") . '</b>';
8008456a 794 } else {
1b91be0c 795 echo html_tag( 'td' ,'' , 'left', '', 'width="25%"' )
6a622b59 796 . '<b>' . _("From") . '</b>';
8008456a 797 }
a966982b 798 if ($showsort) {
1b91be0c 799 ShowSortButton($sort, $mailbox, 2, 3);
8008456a 800 }
1b91be0c 801 echo "</td>\n";
8008456a 802 break;
803 case 3: /* date */
1b91be0c 804 echo html_tag( 'td' ,'' , 'left', '', 'width="5%" nowrap' )
6a622b59 805 . '<b>' . _("Date") . '</b>';
a966982b 806 if ($showsort) {
1b91be0c 807 ShowSortButton($sort, $mailbox, 0, 1);
8008456a 808 }
1b91be0c 809 echo "</td>\n";
8008456a 810 break;
a966982b 811 case 4: /* subject */
1b91be0c 812 echo html_tag( 'td' ,'' , 'left', '', '' )
6a622b59 813 . '<b>' . _("Subject") . '</b>';
a966982b 814 if ($showsort) {
1b91be0c 815 ShowSortButton($sort, $mailbox, 4, 5);
8008456a 816 }
1b91be0c 817 echo "</td>\n";
8008456a 818 break;
819 case 6: /* size */
1b91be0c 820 echo html_tag( 'td', '<b>' . _("Size") . '</b>', 'center', '', 'width="5%"' );
8008456a 821 break;
822 }
bdfb67f8 823 }
1b91be0c 824 echo "</tr>\n";
bdfb67f8 825}
826
e9e5f0fa 827
bdfb67f8 828/*
e35045b7 829 * This function shows the sort button. Isn't this a good comment?
830 */
831function ShowSortButton($sort, $mailbox, $Up, $Down ) {
6a622b59 832 global $PHP_SELF;
833 /* Figure out which image we want to use. */
834 if ($sort != $Up && $sort != $Down) {
835 $img = 'sort_none.png';
836 $which = $Up;
837 } elseif ($sort == $Up) {
838 $img = 'up_pointer.png';
839 $which = $Down;
6c930ade 840 } else {
6a622b59 841 $img = 'down_pointer.png';
842 $which = 6;
e35045b7 843 }
6a622b59 844
845 if (preg_match('/^(.+)\?.+$/',$PHP_SELF,$regs)) {
846 $source_url = $regs[1];
e35045b7 847 } else {
6a622b59 848 $source_url = $PHP_SELF;
6c930ade 849 }
6a622b59 850
851 /* Now that we have everything figured out, show the actual button. */
852 echo ' <a href="' . $source_url .'?newsort=' . $which
853 . '&amp;startMessage=1&amp;mailbox=' . urlencode($mailbox)
854 . '"><IMG SRC="../images/' . $img
855 . '" BORDER=0 WIDTH=12 HEIGHT=10 ALT="sort"></a>';
856}
857
858function get_selectall_link($start_msg, $sort) {
859 global $checkall, $what, $where, $mailbox, $javascript_on;
860 global $PHP_SELF, $PG_SHOWNUM;
861
862 $result = '';
863 if ($javascript_on) {
864 $result = '<script language="JavaScript" type="text/javascript">'
865 . "\n<!-- \n"
866 . "function CheckAll() {\n"
867 . " for (var i = 0; i < document.messageList.elements.length; i++) {\n"
868 . " if(document.messageList.elements[i].type == 'checkbox'){\n"
869 . " document.messageList.elements[i].checked = "
870 . " !(document.messageList.elements[i].checked);\n"
871 . " }\n"
872 . " }\n"
873 . "}\n"
874 . "//-->\n"
875 . '</script><a href="#" onClick="CheckAll();">' . _("Toggle All")
876 . "</a>\n";
e35045b7 877 } else {
6a622b59 878 if (strpos($PHP_SELF, "?")) {
879 $result .= "<a href=\"$PHP_SELF&amp;mailbox=" . urlencode($mailbox)
880 . "&amp;startMessage=$start_msg&amp;sort=$sort&amp;checkall=";
881 } else {
882 $result .= "<a href=\"$PHP_SELF?mailbox=" . urlencode($mailbox)
883 . "&amp;startMessage=$start_msg&amp;sort=$sort&amp;checkall=";
884 }
885 if (isset($checkall) && $checkall == '1') {
886 $result .= '0';
887 } else {
888 $result .= '1';
889 }
890
891 if (isset($where) && isset($what)) {
892 $result .= '&amp;where=' . urlencode($where)
893 . '&amp;what=' . urlencode($what);
894 }
895 $result .= "\">";
896
897 if (isset($checkall) && ($checkall == '1')) {
898 $result .= _("Unselect All");
899 } else {
900 $result .= _("Select All");
901 }
902 $result .= "</A>\n";
e35045b7 903 }
23d6bd09 904
6a622b59 905 /* Return our final result. */
906 return ($result);
bdfb67f8 907}
1a0e0983 908
6c930ade 909/*
e35045b7 910 * This function computes the "Viewing Messages..." string.
911 */
bdfb67f8 912function get_msgcnt_str($start_msg, $end_msg, $num_msgs) {
6a622b59 913 /* Compute the $msg_cnt_str. */
914 $result = '';
915 if ($start_msg < $end_msg) {
916 $result = sprintf(_("Viewing Messages: <B>%s</B> to <B>%s</B> (%s total)"),
917 $start_msg, $end_msg, $num_msgs);
918 } else if ($start_msg == $end_msg) {
919 $result = sprintf(_("Viewing Message: <B>%s</B> (1 total)"), $start_msg);
920 } else {
921 $result = '<br>';
922 }
923 /* Return our result string. */
924 return ($result);
bdfb67f8 925}
926
6c930ade 927/*
e35045b7 928 * Generate a paginator link.
929 */
6c930ade 930function get_paginator_link($box, $start_msg, $use, $text) {
6a622b59 931 global $PHP_SELF;
e35045b7 932
6a622b59 933 $result = "<A HREF=\"right_main.php?use_mailbox_cache=$use"
934 . "&amp;startMessage=$start_msg&amp;mailbox=$box\" "
935 . "TARGET=\"right\">$text</A>";
936 return ($result);
756d0680 937/*
6a622b59 938 if (preg_match('/^(.+)\?.+$/',$PHP_SELF,$regs)) {
939 $source_url = $regs[1];
940 } else {
941 $source_url = $PHP_SELF;
942 }
943
944 $result = '<A HREF="'. $source_url . "?use_mailbox_cache=$use"
945 . "&amp;startMessage=$start_msg&amp;mailbox=$box\" "
946 . "TARGET=\"right\">$text</A>";
947 return ($result);
948*/
7b294953 949}
950
6c930ade 951/*
e35045b7 952 * This function computes the paginator string.
953 */
6a622b59 954function get_paginator_str($box, $start_msg, $end_msg, $num_msgs,
955 $show_num, $sort) {
956 global $username, $data_dir, $use_mailbox_cache, $color, $PG_SHOWNUM;
957
958 /* Initialize paginator string chunks. */
959 $prv_str = '';
960 $nxt_str = '';
961 $pg_str = '';
962 $all_str = '';
963 $tgl_str = '';
964
965 $box = urlencode($box);
966
967 /* Create simple strings that will be creating the paginator. */
968 $spc = '&nbsp;'; /* This will be used as a space. */
969 $sep = '|'; /* This will be used as a seperator. */
970
971 /* Get some paginator preference values. */
972 $pg_sel = getPref($data_dir, $username, 'page_selector', SMPREF_ON);
973 $pg_max = getPref($data_dir, $username, 'page_selector_max', PG_SEL_MAX);
974
975 /* Make sure that our start message number is not too big. */
976 $start_msg = min($start_msg, $num_msgs);
977
978 /* Decide whether or not we will use the mailbox cache. */
979 /* Not sure why $use_mailbox_cache is even passed in. */
980 if ($sort == 6) {
981 $use = 0;
982 } else {
983 $use = 1;
984 }
985
986 /* Compute the starting message of the previous and next page group. */
987 $next_grp = $start_msg + $show_num;
988 $prev_grp = $start_msg - $show_num;
989
990 /* Compute the basic previous and next strings. */
991 if (($next_grp <= $num_msgs) && ($prev_grp >= 0)) {
992 $prv_str = get_paginator_link($box, $prev_grp, $use, _("Previous"));
993 $nxt_str = get_paginator_link($box, $next_grp, $use, _("Next"));
994 } else if (($next_grp > $num_msgs) && ($prev_grp >= 0)) {
995 $prv_str = get_paginator_link($box, $prev_grp, $use, _("Previous"));
996 $nxt_str = "<FONT COLOR=\"$color[9]\">"._("Next")."</FONT>\n";
997 } else if (($next_grp <= $num_msgs) && ($prev_grp < 0)) {
998 $prv_str = "<FONT COLOR=\"$color[9]\">"._("Previous") . '</FONT>';
999 $nxt_str = get_paginator_link($box, $next_grp, $use, _("Next"));
1000 }
1001
1002 /* Page selector block. Following code computes page links. */
1003 if ($pg_sel && ($num_msgs > $show_num)) {
1004 /* Most importantly, what is the current page!!! */
1005 $cur_pg = intval($start_msg / $show_num) + 1;
1006
1007 /* Compute total # of pages and # of paginator page links. */
1008 $tot_pgs = ceil($num_msgs / $show_num); /* Total number of Pages */
1009 $vis_pgs = min($pg_max, $tot_pgs - 1); /* Visible Pages */
1010
1011 /* Compute the size of the four quarters of the page links. */
1012
1013 /* If we can, just show all the pages. */
1014 if (($tot_pgs - 1) <= $pg_max) {
1015 $q1_pgs = $cur_pg - 1;
1016 $q2_pgs = $q3_pgs = 0;
1017 $q4_pgs = $tot_pgs - $cur_pg;
1018
e35045b7 1019 /* Otherwise, compute some magic to choose the four quarters. */
6a622b59 1020 } else {
1021 /*
1022 * Compute the magic base values. Added together,
1023 * these values will always equal to the $pag_pgs.
1024 * NOTE: These are DEFAULT values and do not take
1025 * the current page into account. That is below.
1026 */
1027 $q1_pgs = floor($vis_pgs/4);
1028 $q2_pgs = round($vis_pgs/4, 0);
1029 $q3_pgs = ceil($vis_pgs/4);
1030 $q4_pgs = round(($vis_pgs - $q2_pgs)/3, 0);
1031
1032 /* Adjust if the first quarter contains the current page. */
1033 if (($cur_pg - $q1_pgs) < 1) {
1034 $extra_pgs = ($q1_pgs - ($cur_pg - 1)) + $q2_pgs;
1035 $q1_pgs = $cur_pg - 1;
1036 $q2_pgs = 0;
1037 $q3_pgs += ceil($extra_pgs / 2);
1038 $q4_pgs += floor($extra_pgs / 2);
1039
1040 /* Adjust if the first and second quarters intersect. */
1041 } else if (($cur_pg - $q2_pgs - ceil($q2_pgs/3)) <= $q1_pgs) {
1042 $extra_pgs = $q2_pgs;
1043 $extra_pgs -= ceil(($cur_pg - $q1_pgs - 1) * 0.75);
1044 $q2_pgs = ceil(($cur_pg - $q1_pgs - 1) * 0.75);
1045 $q3_pgs += ceil($extra_pgs / 2);
1046 $q4_pgs += floor($extra_pgs / 2);
1047
1048 /* Adjust if the fourth quarter contains the current page. */
1049 } else if (($cur_pg + $q4_pgs) >= $tot_pgs) {
1050 $extra_pgs = ($q4_pgs - ($tot_pgs - $cur_pg)) + $q3_pgs;
1051 $q3_pgs = 0;
1052 $q4_pgs = $tot_pgs - $cur_pg;
1053 $q1_pgs += floor($extra_pgs / 2);
1054 $q2_pgs += ceil($extra_pgs / 2);
1055
1056 /* Adjust if the third and fourth quarter intersect. */
1057 } else if (($cur_pg + $q3_pgs + 1) >= ($tot_pgs - $q4_pgs + 1)) {
1058 $extra_pgs = $q3_pgs;
1059 $extra_pgs -= ceil(($tot_pgs - $cur_pg - $q4_pgs) * 0.75);
1060 $q3_pgs = ceil(($tot_pgs - $cur_pg - $q4_pgs) * 0.75);
1061 $q1_pgs += floor($extra_pgs / 2);
1062 $q2_pgs += ceil($extra_pgs / 2);
1063 }
1064 }
e35045b7 1065
6a622b59 1066 /*
1067 * I am leaving this debug code here, commented out, because
1068 * it is a really nice way to see what the above code is doing.
1069 * echo "qts = $q1_pgs/$q2_pgs/$q3_pgs/$q4_pgs = "
1070 * . ($q1_pgs + $q2_pgs + $q3_pgs + $q4_pgs) . '<br>';
1071 */
1072
1073 /* Print out the page links from the compute page quarters. */
1074
1075 /* Start with the first quarter. */
1076 if (($q1_pgs == 0) && ($cur_pg > 1)) {
1077 $pg_str .= "...$spc";
1078 } else {
1079 for ($pg = 1; $pg <= $q1_pgs; ++$pg) {
1080 $start = (($pg-1) * $show_num) + 1;
1081 $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
1082 }
1083 if ($cur_pg - $q2_pgs - $q1_pgs > 1) {
1084 $pg_str .= "...$spc";
1085 }
1086 }
1087
1088 /* Continue with the second quarter. */
1089 for ($pg = $cur_pg - $q2_pgs; $pg < $cur_pg; ++$pg) {
1090 $start = (($pg-1) * $show_num) + 1;
1091 $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
1092 }
1093
1094 /* Now print the current page. */
1095 $pg_str .= $cur_pg . $spc;
1096
1097 /* Next comes the third quarter. */
1098 for ($pg = $cur_pg + 1; $pg <= $cur_pg + $q3_pgs; ++$pg) {
1099 $start = (($pg-1) * $show_num) + 1;
1100 $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
1101 }
1102
1103 /* And last, print the forth quarter page links. */
1104 if (($q4_pgs == 0) && ($cur_pg < $tot_pgs)) {
1105 $pg_str .= "...$spc";
1106 } else {
1107 if (($tot_pgs - $q4_pgs) > ($cur_pg + $q3_pgs)) {
1108 $pg_str .= "...$spc";
1109 }
1110 for ($pg = $tot_pgs - $q4_pgs + 1; $pg <= $tot_pgs; ++$pg) {
1111 $start = (($pg-1) * $show_num) + 1;
1112 $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
1113 }
1114 }
1115 } else if ($PG_SHOWNUM == 999999) {
1116 $pg_str = "<A HREF=\"right_main.php?PG_SHOWALL=0"
1117 . "&amp;use_mailbox_cache=$use&amp;startMessage=1&amp;mailbox=$box\" "
1118 . "TARGET=\"right\">" ._("Paginate") . '</A>' . $spc;
1119 }
1120
1121 /* If necessary, compute the 'show all' string. */
1122 if (($prv_str != '') || ($nxt_str != '')) {
1123 $all_str = "<A HREF=\"right_main.php?PG_SHOWALL=1"
1124 . "&amp;use_mailbox_cache=$use&amp;startMessage=1&amp;mailbox=$box\" "
1125 . "TARGET=\"right\">" . _("Show All") . '</A>';
1126 }
1127
1128 /* Last but not least, get the value for the toggle all link. */
1129 $tgl_str = get_selectall_link($start_msg, $sort);
1130
1131 /* Put all the pieces of the paginator string together. */
1132 /**
1133 * Hairy code... But let's leave it like it is since I am not certain
1134 * a different approach would be any easier to read. ;)
1135 */
1136 $result = '';
1137 $result .= ($prv_str != '' ? $prv_str . $spc . $sep . $spc : '');
1138 $result .= ($nxt_str != '' ? $nxt_str . $spc . $sep . $spc : '');
1139 $result .= ($pg_str != '' ? $pg_str : '');
1140 $result .= ($all_str != '' ? $sep . $spc . $all_str . $spc : '');
1141 $result .= ($result != '' ? $sep . $spc . $tgl_str: $tgl_str);
1142
1143 /* If the resulting string is blank, return a non-breaking space. */
1144 if ($result == '') {
1145 $result = '&nbsp;';
1146 }
e35045b7 1147
6a622b59 1148 /* Return our final magical paginator string. */
1149 return ($result);
bdfb67f8 1150}
1151
1152function processSubject($subject) {
6fbd125b 1153 global $languages, $squirrelmail_language;
6a622b59 1154 /* Shouldn't ever happen -- caught too many times in the IMAP functions */
1155 if ($subject == '')
1156 return _("(no subject)");
e35045b7 1157
6a622b59 1158 if (strlen($subject) <= 55)
1159 return $subject;
1160
1161 $ent_strlen = strlen($subject);
1162 $trim_val=50;
1163 $ent_offset=0;
1164 /*
1165 * see if this is entities-encoded string
1166 * If so, Iterate through the whole string, find out
1167 * the real number of characters, and if more
1168 * than 55, substr with an updated trim value.
1169 */
1170 while ( (($ent_loc = strpos($subject, '&', $ent_offset)) !== false) &&
1171 (($ent_loc_end = strpos($subject, ';', $ent_loc)) !== false) ) {
1172 $trim_val += ($ent_loc_end-$ent_loc)+1;
1173 $ent_strlen -= $ent_loc_end-$ent_loc;
1174 $ent_offset = $ent_loc_end+1;
1175 }
1176
1177 if ($ent_strlen <= 55){
1178 return $subject;
1179 }
1180
1181 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
1182 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
1183 return $languages[$squirrelmail_language]['XTRA_CODE']('strimwidth', $subject, $trim_val);
1184 }
1185
1186 return substr($subject, 0, $trim_val) . '...';
bdfb67f8 1187}
f93c93b9 1188
6a622b59 1189function getMbxList($imapConnection) {
1190 global $lastTargetMailbox;
1191 echo ' <small>&nbsp;<tt><select name="targetMailbox">';
1192 $boxes = sqimap_mailbox_list($imapConnection);
1193 foreach ($boxes as $boxes_part) {
1194 if (!in_array('noselect', $boxes_part['flags'])) {
1195 $box = $boxes_part['unformatted'];
1196 $box2 = str_replace(' ', '&nbsp;', imap_utf7_decode_local($boxes_part['unformatted-disp']));
1197 if($box2 == 'INBOX') {
1198 $box2 = _("INBOX");
1199 }
1200 if ($lastTargetMailbox == $box) {
1201 echo " <OPTION VALUE=\"$box\" SELECTED>$box2</OPTION>\n";
1202 } else {
1203 echo " <OPTION VALUE=\"$box\">$box2</OPTION>\n";
1204 }
1205 }
e9e5f0fa 1206 }
6a622b59 1207 echo ' </SELECT></TT>&nbsp;';
e9e5f0fa 1208}
1209
1210function getButton($type, $name, $value) {
6a622b59 1211 return '<INPUT TYPE="'.$type.'" NAME="'.$name.'" VALUE="'.$value . '">';
e9e5f0fa 1212}
1213
1214function getSmallStringCell($string, $align) {
6a622b59 1215 return html_tag('td',
1216 '<small>' . $string . ':&nbsp; </small>',
1217 $align,
1218 '',
1219 'nowrap' );
e9e5f0fa 1220}
1221
1222function getEndMessage($start_msg, $show_num, $num_msgs) {
6a622b59 1223 if ($start_msg + ($show_num - 1) < $num_msgs){
1224 $end_msg = $start_msg + ($show_num - 1);
1225 } else {
1226 $end_msg = $num_msgs;
1227 }
e9e5f0fa 1228
6a622b59 1229 if ($end_msg < $start_msg) {
1230 $start_msg = $start_msg - $show_num;
1231 if ($start_msg < 1) {
1232 $start_msg = 1;
1233 }
e9e5f0fa 1234 }
6a622b59 1235 return (array($start_msg,$end_msg));
e9e5f0fa 1236}
1237
a3439b27 1238function handleAsSent($mailbox) {
6a622b59 1239 global $sent_folder, $draft_folder, $handleAsSent_result;
a3439b27 1240
6a622b59 1241 /* First check if this is the sent or draft folder. */
1242 $handleAsSent_result = (($mailbox == $sent_folder)
1243 || ($mailbox == $draft_folder));
a3439b27 1244
6a622b59 1245 /* Then check the result of the handleAsSent hook. */
1246 do_hook('check_handleAsSent_result', $mailbox);
a3439b27 1247
6a622b59 1248 /* And return the result. */
1249 return ($handleAsSent_result);
1250}
a51dec54 1251?>