Bugfix. Single '|' removed.
[squirrelmail.git] / functions / mailbox_display.php
CommitLineData
59177427 1<?php
7c1b84d9 2
3302d0d4 3 /**
a09387f4 4 ** mailbox_display.php
3302d0d4 5 **
6 ** This contains functions that display mailbox information, such as the
7 ** table row that has sender, date, subject, etc...
8 **
245a6892 9 ** $Id$
3302d0d4 10 **/
a4c2cd49 11
f435778e 12 if (defined('mailbox_display_php'))
13 return;
14 define('mailbox_display_php', true);
d068c0ec 15
1809bad8 16 function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $startMessage, $where, $what) {
66289791 17 global $checkall;
af9404d7 18 global $color, $msgs, $msort;
f9b3e5d9 19 global $sent_folder;
9d157cec 20 global $message_highlight_list;
8e265988 21 global $index_order;
cbdc5621 22
ac53fb56 23 $color_string = $color[4];
24 if ($GLOBALS['alt_index_colors']) {
25 if (!isset($GLOBALS["row_count"])) {
26 $GLOBALS["row_count"] = 0;
27 }
28 $GLOBALS["row_count"]++;
29 if ($GLOBALS["row_count"] % 2) {
30 if (!isset($color[12])) $color[12] = "#EAEAEA";
31 $color_string = $color[12];
32 }
b3b103cb 33 }
34
0d455368 35 $msg = $msgs[$key];
d92b6f31 36
90bc0b93 37 $senderName = sqimap_find_displayable_name($msg['FROM']);
05207a68 38 $urlMailbox = urlencode($mailbox);
f93c93b9 39 $subject = processSubject($msg['SUBJECT']);
b60b58f9 40
926da13e 41 echo "<TR>\n";
b60b58f9 42
90bc0b93 43 if (isset($msg['FLAG_FLAGGED']) && $msg['FLAG_FLAGGED'] == true)
245a6892 44 {
45 $flag = "<font color=$color[2]>";
6edca885 46 $flag_end = '</font>';
245a6892 47 }
48 else
49 {
90bc0b93 50 $flag = '';
6edca885 51 $flag_end = '';
245a6892 52 }
367e4f70 53 if (!isset($msg['FLAG_SEEN']) || $msg['FLAG_SEEN'] == false)
245a6892 54 {
90bc0b93 55 $bold = '<b>';
6edca885 56 $bold_end = '</b>';
245a6892 57 }
58 else
59 {
90bc0b93 60 $bold = '';
6edca885 61 $bold_end = '';
245a6892 62 }
63 if ($mailbox == $sent_folder)
64 {
90bc0b93 65 $italic = '<i>';
6edca885 66 $italic_end = '</i>';
245a6892 67 }
68 else
69 {
90bc0b93 70 $italic = '';
6edca885 71 $italic_end = '';
245a6892 72 }
90bc0b93 73 if (isset($msg['FLAG_DELETED']) && $msg['FLAG_DELETED'])
feb563a6 74 {
245a6892 75 $fontstr = "<font color=\"$color[9]\">";
6edca885 76 $fontstr_end = '</font>';
245a6892 77 }
78 else
79 {
90bc0b93 80 $fontstr = '';
6edca885 81 $fontstr_end = '';
245a6892 82 }
b60b58f9 83
9d157cec 84 for ($i=0; $i < count($message_highlight_list); $i++) {
90bc0b93 85 if (trim($message_highlight_list[$i]['value']) != '') {
86 if ($message_highlight_list[$i]['match_type'] == 'to_cc') {
87 if (strpos('^^'.strtolower($msg['TO']), strtolower($message_highlight_list[$i]['value'])) || strpos('^^'.strtolower($msg['CC']), strtolower($message_highlight_list[$i]['value']))) {
88 $hlt_color = $message_highlight_list[$i]['color'];
d059be8f 89 continue;
90 }
90bc0b93 91 } else if (strpos('^^'.strtolower($msg[strtoupper($message_highlight_list[$i]['match_type'])]),strtolower($message_highlight_list[$i]['value']))) {
92 $hlt_color = $message_highlight_list[$i]['color'];
1195c340 93 continue;
b60b58f9 94 }
d059be8f 95 }
b60b58f9 96 }
97
245a6892 98 if (!isset($hlt_color))
b3b103cb 99 $hlt_color = $color_string;
1809bad8 100
101 if ($where && $what) {
90bc0b93 102 $search_stuff = '&where='.urlencode($where).'&what='.urlencode($what);
1809bad8 103 }
66289791 104
eca500d0 105 if ($checkall == 1)
90bc0b93 106 $checked = ' checked';
eca500d0 107 else
90bc0b93 108 $checked = '';
3d48999d 109
8e265988 110 for ($i=1; $i <= count($index_order); $i++) {
111 switch ($index_order[$i]) {
112 case 1: # checkbox
20cd8abb 113 echo " <td bgcolor=$hlt_color align=center><input type=checkbox name=\"msg[$t]\" value=".$msg["ID"]."$checked></TD>\n";
8e265988 114 break;
115 case 2: # from
20cd8abb 116 echo " <td bgcolor=$hlt_color>$italic$bold$flag$fontstr$senderName$fontstr_end$flag_end$bold_end$italic_end</td>\n";
8e265988 117 break;
118 case 3: # date
20cd8abb 119 echo " <td nowrap bgcolor=$hlt_color><center>$bold$flag$fontstr".$msg["DATE_STRING"]."$fontstr_end$flag_end$bold_end</center></td>\n";
8e265988 120 break;
121 case 4: # subject
7e73c6be 122 echo " <td bgcolor=$hlt_color>$bold";
6edca885 123 if (! isset($search_stuff)) { $search_stuff = ''; }
23fd3c8e 124 echo "<a href=\"read_body.php?mailbox=$urlMailbox&passed_id=".$msg["ID"]."&startMessage=$startMessage&show_more=0$search_stuff\"";
125 do_hook("subject_link");
77f70304 126
8c16ad63 127 if ($subject != $msg['SUBJECT']) {
feb563a6 128 $title = get_html_translation_table(HTML_SPECIALCHARS);
129 $title = array_flip($title);
130 $title = strtr($msg['SUBJECT'], $title);
131 $title = str_replace('"', "''", $title);
8c16ad63 132 echo " title=\"$title\"";
feb563a6 133 }
134 echo ">$flag$subject$flag_end</a>$bold_end</td>\n";
8e265988 135 break;
136 case 5: # flags
9db5f5fc 137 $stuff = false;
20cd8abb 138 echo " <td bgcolor=$hlt_color align=center nowrap><b><small>\n";
245a6892 139 if (isset($msg['FLAG_ANSWERED']) &&
6edca885 140 $msg['FLAG_ANSWERED'] == true) {
9db5f5fc 141 echo "A\n";
142 $stuff = true;
8ae331c2 143 }
5ae0173b 144 if (ereg('(5)',substr($msg['PRIORITY'],0,1))) {
145 echo "<font color=$color[8]>v</font>\n";
146 $stuff = true;
147 }
90bc0b93 148 if ($msg['TYPE0'] == 'multipart') {
9db5f5fc 149 echo "+\n";
150 $stuff = true;
8ae331c2 151 }
90bc0b93 152 if (ereg('(1|2)',substr($msg['PRIORITY'],0,1))) {
9db5f5fc 153 echo "<font color=$color[1]>!</font>\n";
154 $stuff = true;
155 }
90bc0b93 156 if (isset($msg['FLAG_DELETED']) && $msg['FLAG_DELETED']) {
f9b3e5d9 157 echo "<font color=\"$color[1]\">D</font>\n";
158 $stuff = true;
159 }
8ae331c2 160
9db5f5fc 161 if (!$stuff) echo "&nbsp;\n";
162 echo "</small></b></td>\n";
8e265988 163 break;
8ae331c2 164 case 6: # size
20cd8abb 165 echo " <td bgcolor=$hlt_color>$bold$fontstr".show_readable_size($msg['SIZE'])."$fontstr_end$bold_end</td>\n";
8e265988 166 break;
167 }
168 }
169
7151188f 170
171 echo "</tr>\n";
926da13e 172 }
173
174 /**
175 ** This function loops through a group of messages in the mailbox and shows them
176 **/
5b6ae78a 177 function showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color,$show_num, $use_cache) {
178 global $msgs, $msort;
f9b3e5d9 179 global $sent_folder;
9d157cec 180 global $message_highlight_list;
a3432f47 181 global $auto_expunge;
182
91f68e94 183 if ($auto_expunge == true) sqimap_mailbox_expunge($imapConnection, $mailbox, false);
0d455368 184 sqimap_mailbox_select($imapConnection, $mailbox);
61a4ac35 185
91f68e94 186 $issent = ($mailbox == $sent_folder);
5b6ae78a 187 if (!$use_cache) {
0d455368 188 // if it's sorted
5b6ae78a 189 if ($numMessages >= 1) {
0d455368 190 if ($sort < 6) {
91f68e94 191 $id = range(1, $numMessages);
0d455368 192 } else {
193 // if it's not sorted
194 if ($startMessage + ($show_num - 1) < $numMessages) {
195 $endMessage = $startMessage + ($show_num-1);
196 } else {
197 $endMessage = $numMessages;
198 }
b60b58f9 199
0d455368 200 if ($endMessage < $startMessage) {
201 $startMessage = $startMessage - $show_num;
202 if ($startMessage < 1)
203 $startMessage = 1;
204 }
205
a3d65705 206 $real_startMessage = $numMessages - $startMessage + 1;
91f68e94 207 $real_endMessage = $numMessages - $startMessage - $show_num + 2;
b60b58f9 208 if ($real_endMessage <= 0)
209 $real_endMessage = 1;
91f68e94 210 $id = array_reverse(range($real_endMessage, $real_startMessage));
211 }
b60b58f9 212
91f68e94 213 $msgs_list = sqimap_get_small_header_list($imapConnection, $id, $issent);
214 $flags = sqimap_get_flags_list($imapConnection, $id, $issent);
215 foreach ($msgs_list as $hdr) {
216 $from[] = $hdr->from;
217 $date[] = $hdr->date;
218 $subject[] = $hdr->subject;
219 $to[] = $hdr->to;
220 $priority[] = $hdr->priority;
221 $cc[] = $hdr->cc;
222 $size[] = $hdr->size;
223 $type[] = $hdr->type0;
b60b58f9 224 }
5b6ae78a 225 }
b60b58f9 226
5b6ae78a 227 $j = 0;
0d455368 228 if ($sort == 6) {
229 $end = $startMessage + $show_num - 1;
cd928157 230 if ($numMessages < $show_num)
231 $end_loop = $numMessages;
0b03d077 232 elseif ($end > $numMessages)
233 $end_loop = $numMessages - $startMessage + 1;
234 else
cd928157 235 $end_loop = $show_num;
0d455368 236 } else {
237 $end = $numMessages;
cd928157 238 $end_loop = $end;
0d455368 239 }
cd928157 240 while ($j < $end_loop) {
241 if (isset($date[$j])) {
242 $date[$j] = ereg_replace(' ', ' ', $date[$j]);
243 $tmpdate = explode(' ', trim($date[$j]));
244 } else {
245 $tmpdate = $date = array("","","","","","");
246 }
90bc0b93 247
248 $messages[$j]['TIME_STAMP'] = getTimeStamp($tmpdate);
249 $messages[$j]['DATE_STRING'] = getDateString($messages[$j]['TIME_STAMP']);
250 $messages[$j]['ID'] = $id[$j];
251 $messages[$j]['FROM'] = decodeHeader($from[$j]);
252 $messages[$j]['FROM-SORT'] = strtolower(sqimap_find_displayable_name(decodeHeader($from[$j])));
253 $messages[$j]['SUBJECT'] = decodeHeader($subject[$j]);
254 $messages[$j]['SUBJECT-SORT'] = strtolower(decodeHeader($subject[$j]));
255 $messages[$j]['TO'] = decodeHeader($to[$j]);
256 $messages[$j]['PRIORITY'] = $priority[$j];
257 $messages[$j]['CC'] = $cc[$j];
258 $messages[$j]['SIZE'] = $size[$j];
259 $messages[$j]['TYPE0'] = $type[$j];
e9f8ea4e 260
261 # fix SUBJECT-SORT to remove Re:
0d455368 262 $re_abbr = # Add more here!
90bc0b93 263 'vedr|sv|' . # Danish
264 're|aw'; # English
0d455368 265 if (eregi("^($re_abbr):[ ]*(.*)$", $messages[$j]['SUBJECT-SORT'], $regs))
266 $messages[$j]['SUBJECT-SORT'] = $regs[2];
b60b58f9 267
5b6ae78a 268 $num = 0;
269 while ($num < count($flags[$j])) {
90bc0b93 270 if ($flags[$j][$num] == 'Deleted') {
271 $messages[$j]['FLAG_DELETED'] = true;
5b6ae78a 272 }
90bc0b93 273 elseif ($flags[$j][$num] == 'Answered') {
274 $messages[$j]['FLAG_ANSWERED'] = true;
5b6ae78a 275 }
90bc0b93 276 elseif ($flags[$j][$num] == 'Seen') {
277 $messages[$j]['FLAG_SEEN'] = true;
5b6ae78a 278 }
90bc0b93 279 elseif ($flags[$j][$num] == 'Flagged') {
280 $messages[$j]['FLAG_FLAGGED'] = true;
5b6ae78a 281 }
282 $num++;
7151188f 283 }
5b6ae78a 284 $j++;
3302d0d4 285 }
f9b3e5d9 286
287 /* Only ignore messages flagged as deleted if we are using a
288 * trash folder or auto_expunge */
245a6892 289 if (((isset($move_to_trash) && $move_to_trash)
6edca885 290 || (isset($auto_expunge) && $auto_expunge)) && $sort != 6)
b60b58f9 291 {
f9b3e5d9 292 /** Find and remove the ones that are deleted */
293 $i = 0;
294 $j = 0;
295 while ($j < $numMessages) {
cd928157 296 if (isset($messages[$j]['FLAG_DELETED']) && $messages[$j]['FLAG_DELETED'] == true) {
f9b3e5d9 297 $j++;
298 continue;
299 }
300 $msgs[$i] = $messages[$j];
b60b58f9 301
f9b3e5d9 302 $i++;
5b6ae78a 303 $j++;
5b6ae78a 304 }
f9b3e5d9 305 $numMessages = $i;
0d455368 306 } else {
6edca885 307 if (! isset($messages))
308 $messages = array();
0d455368 309 $msgs = $messages;
5b10f02a 310 }
5b6ae78a 311 }
926da13e 312
4c2d69ac 313 // There's gotta be messages in the array for it to sort them.
f9b3e5d9 314 if ($numMessages > 0 && ! $use_cache) {
0e919368 315 /** 0 = Date (up) 4 = Subject (up)
316 ** 1 = Date (dn) 5 = Subject (dn)
317 ** 2 = Name (up)
318 ** 3 = Name (dn)
319 **/
09856735 320 session_unregister("msgs");
1c292c82 321 if (($sort == 0) || ($sort == 1))
90bc0b93 322 $msort = array_cleave ($msgs, 'TIME_STAMP');
9b0f85eb 323 elseif (($sort == 2) || ($sort == 3))
90bc0b93 324 $msort = array_cleave ($msgs, 'FROM-SORT');
9b0f85eb 325 elseif (($sort == 4) || ($sort == 5))
90bc0b93 326 $msort = array_cleave ($msgs, 'SUBJECT-SORT');
9b0f85eb 327 else // ($sort == 6)
0d455368 328 $msort = $msgs;
329
330 if ($sort < 6) {
9b0f85eb 331 if ($sort % 2) {
0d455368 332 asort($msort);
333 } else {
334 arsort($msort);
335 }
0e919368 336 }
90bc0b93 337 session_register('msort');
4c2d69ac 338 }
5b6ae78a 339 displayMessageArray($imapConnection, $numMessages, $startMessage, $msgs, $msort, $mailbox, $sort, $color,$show_num);
90bc0b93 340 session_register('msgs');
9f2215a1 341 }
342
343 // generic function to convert the msgs array into an HTML table
5b6ae78a 344 function displayMessageArray($imapConnection, $numMessages, $startMessage, &$msgs, $msort, $mailbox, $sort, $color,$show_num) {
cbdc5621 345 global $folder_prefix, $sent_folder;
f9b3e5d9 346 global $imapServerAddress;
21fafac8 347 global $index_order, $real_endMessage, $real_startMessage, $checkall;
feb563a6 348
9f2215a1 349 // if cache isn't already set, do it now
90bc0b93 350 if (!session_is_registered('msgs'))
351 session_register('msgs');
352 if (!session_is_registered('msort'))
353 session_register('msort');
90033b64 354
9c83f905 355 if ($startMessage + ($show_num - 1) < $numMessages) {
356 $endMessage = $startMessage + ($show_num-1);
926da13e 357 } else {
926da13e 358 $endMessage = $numMessages;
359 }
b60b58f9 360
8442ac08 361 if ($endMessage < $startMessage) {
362 $startMessage = $startMessage - $show_num;
363 if ($startMessage < 1)
364 $startMessage = 1;
365 }
b60b58f9 366
9c83f905 367 $nextGroup = $startMessage + $show_num;
368 $prevGroup = $startMessage - $show_num;
20db5033 369 $urlMailbox = urlencode($mailbox);
926da13e 370
90bc0b93 371 do_hook('mailbox_index_before');
926da13e 372
14eb705c 373 $Message = '';
0d1b4832 374 if ($startMessage < $endMessage) {
14eb705c 375 $Message = _("Viewing messages") ." <B>$startMessage</B> ". _("to") ." <B>$endMessage</B> ($numMessages " . _("total") . ")\n";
f9b3e5d9 376 } elseif ($startMessage == $endMessage) {
14eb705c 377 $Message = _("Viewing message") ." <B>$startMessage</B> ($numMessages " . _("total") . ")\n";
0d1b4832 378 }
26b6c99c 379
0d455368 380 if ($sort == 6) {
381 $use = 0;
382 } else {
383 $use = 1;
384 }
2c1872cb 385 $lMore = '';
386 $rMore = '';
5b10f02a 387 if (($nextGroup <= $numMessages) && ($prevGroup >= 0)) {
feb563a6 388 $lMore = "<A HREF=\"right_main.php?use_mailbox_cache=$use&startMessage=$prevGroup&mailbox=$urlMailbox\" TARGET=\"right\">". _("Previous") . '</A>';
389 $rMore = "<A HREF=\"right_main.php?use_mailbox_cache=$use&&startMessage=$nextGroup&mailbox=$urlMailbox\" TARGET=\"right\">". _("Next") ."</A>\n";
926da13e 390 }
f9b3e5d9 391 elseif (($nextGroup > $numMessages) && ($prevGroup >= 0)) {
feb563a6 392 $lMore = "<A HREF=\"right_main.php?use_mailbox_cache=$use&startMessage=$prevGroup&mailbox=$urlMailbox\" TARGET=\"right\">". _("Previous") . '</A>';
393 $rMore = "<FONT COLOR=\"$color[9]\">"._("Next")."</FONT>\n";
3302d0d4 394 }
f9b3e5d9 395 elseif (($nextGroup <= $numMessages) && ($prevGroup < 0)) {
feb563a6 396 $lMore = "<FONT COLOR=\"$color[9]\">"._("Previous") . '</FONT>';
397 $rMore = "<A HREF=\"right_main.php?use_mailbox_cache=$use&startMessage=$nextGroup&mailbox=$urlMailbox\" TARGET=\"right\">". _("Next") ."</A>\n";
398 }
2c1872cb 399 if( $lMore <> '' )
400 $lMore .= ' | ';
feb563a6 401
402 // Page selector block. Following code computes page links.
403 $mMore = '';
404 if( getPref($data_dir, $username, 'page_selector') && $numMessages > $show_num ) {
405
406 $j = intval( $numMessages / $show_num );
407 if( $numMessages % $show_num <> 0 )
408 $j++;
409 $startMessage = min( $startMessage, $numMessages );
410 for( $i = 0; $i < $j; $i++ ) {
411
412 $start = ( ( $i * $show_num ) + 1 );
413
414 if( $startMessage >= $start &&
415 $startMessage < $start + $show_num ) {
416 $mMore .= '<b>' . ($i+1) . '</b> ';
417 } else {
418 $mMore .= "<a href=\"right_main.php?use_mailbox_cache=$use_mailbox_cache&startMessage=$start" .
419 "&mailbox=$mailbox\" TARGET=\"right\">" .
420 ($i+1) .
421 '</a> ';
422 }
423 }
424 $mMore .= ' | ';
14eb705c 425 }
426
245a6892 427 if (! isset($msg))
feb563a6 428 $msg = '';
b60b58f9 429 mail_message_listing_beginning($imapConnection,
14eb705c 430 "move_messages.php?msg=$msg&mailbox=$urlMailbox&startMessage=$startMessage",
feb563a6 431 $mailbox, $sort, $Message, $lMore . $mMore . $rMore, $startMessage);
14eb705c 432
8ae331c2 433 $groupNum = $startMessage % ($show_num - 1);
72b0f272 434 $real_startMessage = $startMessage;
b60b58f9 435 if ($sort == 6) {
436 if ($endMessage - $startMessage < $show_num - 1) {
437 $endMessage = $endMessage - $startMessage + 1;
438 $startMessage = 1;
439 } else if ($startMessage > $show_num) {
440 $endMessage = $show_num;
441 $startMessage = 1;
442 }
443 }
444
445 $endVar = $endMessage + 1;
446
14eb705c 447 // loop through and display the info for each message.
448 $t = 0; // $t is used for the checkbox number
449 if ($numMessages == 0) { // if there's no messages in this folder
450 echo "<TR><TD BGCOLOR=\"$color[4]\" COLSPAN=" . count($index_order);
451 echo "><CENTER><BR><B>". _("THIS FOLDER IS EMPTY") ."</B><BR>&nbsp;</CENTER></TD></TR>";
b60b58f9 452 } else if ($startMessage == $endMessage) { // if there's only one message in the box, handle it different.
a3d65705 453 if ($sort != 6)
454 $i = $startMessage;
455 else
456 $i = 1;
14eb705c 457 reset($msort);
6edca885 458 $k = 0;
14eb705c 459 do {
460 $key = key($msort);
461 next($msort);
462 $k++;
463 } while (isset ($key) && ($k < $i));
72b0f272 464 printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $real_startMessage, 0, 0);
14eb705c 465 } else {
b60b58f9 466 $i = $startMessage;
467
14eb705c 468 reset($msort);
6edca885 469 $k = 0;
14eb705c 470 do {
471 $key = key($msort);
472 next($msort);
473 $k++;
474 } while (isset ($key) && ($k < $i));
475
0d455368 476 do {
72b0f272 477 printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $real_startMessage, 0, 0);
14eb705c 478 $key = key($msort);
479 $t++;
480 $i++;
481 next($msort);
b60b58f9 482 } while ($i && $i < $endVar);
14eb705c 483 }
846f27bb 484 echo '</TABLE></FORM>';
14eb705c 485
486 echo "</td></tr>\n";
487
66289791 488 echo "<TR BGCOLOR=\"$color[4]\"><TD>";
90bc0b93 489 echo '<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td>';
feb563a6 490 echo "$lMore$mMore$rMore</td><td align=right>\n";
eca500d0 491 if (!$startMessage) $startMessage=1;
323218d7 492 ShowSelectAllLink($startMessage, $sort);
66289791 493
feb563a6 494 echo '</td></tr></table></td></tr></table>'; /** End of message-list table */
14eb705c 495
90bc0b93 496 do_hook('mailbox_index_after');
14eb705c 497 }
498
499 /* Displays the standard message list header.
500 * To finish the table, you need to do a "</table></table>";
501 * $moveURL is the URL to submit the delete/move form to
502 * $mailbox is the current mailbox
503 * $sort is the current sorting method (-1 for no sorting available [searches])
504 * $Message is a message that is centered on top of the list
505 * $More is a second line that is left aligned
506 */
8ae331c2 507 function mail_message_listing_beginning($imapConnection, $moveURL,
5252447e 508 $mailbox = '', $sort = -1, $Message = '', $More = '', $startMessage = 1)
14eb705c 509 {
f9b3e5d9 510 global $color, $index_order, $auto_expunge, $move_to_trash;
58da09bd 511 global $checkall, $sent_folder;
eca500d0 512 $urlMailbox = urlencode($mailbox);
14eb705c 513 /** This is the beginning of the message list table. It wraps around all messages */
90bc0b93 514 echo '<TABLE WIDTH="100%" BORDER="0" CELLPADDING="2" CELLSPACING="0">';
8ae331c2 515
14eb705c 516 if ($Message)
517 {
518 echo "<TR BGCOLOR=\"$color[4]\"><TD align=center>$Message</td></tr>\n";
519 }
8ae331c2 520
66289791 521 echo "<TR BGCOLOR=\"$color[4]\"><TD>";
90bc0b93 522 echo '<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td>';
eca500d0 523 echo "$More</td><td align=right>\n";
323218d7 524 ShowSelectAllLink($startMessage, $sort);
66289791 525
feb563a6 526 echo '</td></tr></table></td></tr>';
926da13e 527
68347a84 528 /** The delete and move options */
f8f9bed9 529 echo "<TR><TD BGCOLOR=\"$color[0]\">";
ed4332d1 530
feb563a6 531 echo "\n<FORM name=messageList method=post action=\"$moveURL\">\n";
4f313fcf 532 echo "<TABLE BGCOLOR=\"$color[0]\" COLS=2 BORDER=0 cellpadding=0 cellspacing=0 width=100%>\n";
ed4332d1 533 echo " <TR>\n";
98fe1e9f 534 echo " <TD WIDTH=60% ALIGN=LEFT VALIGN=CENTER>\n";
66289791 535
536
90bc0b93 537 echo ' <NOBR><SMALL>'. _("Move selected to:") .'</SMALL>';
538 echo ' <TT><SMALL><SELECT NAME="targetMailbox">';
7ce342dc 539
9f2215a1 540 $boxes = sqimap_mailbox_list($imapConnection);
7ce342dc 541 for ($i = 0; $i < count($boxes); $i++) {
cbbdef2a 542 if (!in_array("noselect", $boxes[$i]['flags'])) {
90bc0b93 543 $box = $boxes[$i]['unformatted'];
0cd84d75 544 $box2 = str_replace(' ', '&nbsp;', $boxes[$i]['unformatted-disp']);
14eb705c 545 echo " <OPTION VALUE=\"$box\">$box2</option>\n";
6edca885 546 }
dd88d31f 547 }
90bc0b93 548 echo ' </SELECT></SMALL></TT>';
549 echo ' <SMALL><INPUT TYPE=SUBMIT NAME="moveButton" VALUE="'. _("Move") ."\"></SMALL></NOBR>\n";
ed4332d1 550 echo " </TD>\n";
7ce342dc 551 echo " <TD WIDTH=40% ALIGN=RIGHT>\n";
02ad7ce1 552 if (! $auto_expunge) {
90bc0b93 553 echo ' <NOBR><SMALL><INPUT TYPE=SUBMIT NAME="expungeButton" VALUE="'. _("Expunge") .'">&nbsp;'. _("mailbox") ."</SMALL></NOBR>&nbsp;&nbsp;\n";
f9b3e5d9 554 }
aae41ae9 555 echo " <NOBR><SMALL><INPUT TYPE=SUBMIT VALUE=\"". _("Delete") ."\">&nbsp;". _("checked messages") ."</SMALL></NOBR>\n";
14eb705c 556 echo " </TD>\n";
ed4332d1 557 echo " </TR>\n";
558
70b455e0 559 echo "</TABLE>\n";
90bc0b93 560 do_hook('mailbox_form_before');
561 echo '</TD></TR>';
aa4c3749 562
f8f9bed9 563 echo "<TR><TD BGCOLOR=\"$color[0]\">";
ac53fb56 564 echo "<TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=";
565 if ($GLOBALS['alt_index_colors']) {
566 echo "0";
567 } else {
568 echo "1";
569 }
570 echo " BGCOLOR=\"$color[0]\">";
f8f9bed9 571 echo "<TR BGCOLOR=\"$color[5]\" ALIGN=\"center\">";
be8e07f8 572
14eb705c 573 // Print the headers
8e265988 574 for ($i=1; $i <= count($index_order); $i++) {
575 switch ($index_order[$i]) {
576 case 1: # checkbox
14eb705c 577 case 5: # flags
90bc0b93 578 echo ' <TD WIDTH="1%"><B>&nbsp;</B></TD>';
8e265988 579 break;
14eb705c 580
8e265988 581 case 2: # from
14eb705c 582 if ($mailbox == $sent_folder)
20cd8abb 583 echo ' <TD WIDTH="25%"><B>'. _("To") .'</B>';
14eb705c 584 else
20cd8abb 585 echo ' <TD WIDTH="25%"><B>'. _("From") .'</B>';
69c1c5c1 586 ShowSortButton($sort, $mailbox, 2, 3);
9b0f85eb 587 echo "</TD>\n";
8e265988 588 break;
14eb705c 589
8e265988 590 case 3: # date
20cd8abb 591 echo ' <TD NOWRAP WIDTH="5%"><B>'. _("Date") .'</B>';
69c1c5c1 592 ShowSortButton($sort, $mailbox, 0, 1);
9b0f85eb 593 echo "</TD>\n";
8e265988 594 break;
14eb705c 595
8e265988 596 case 4: # subject
9b0f85eb 597 echo ' <TD><B>'. _("Subject") .'</B> ';
69c1c5c1 598 ShowSortButton($sort, $mailbox, 4, 5);
9b0f85eb 599 echo "</TD>\n";
8e265988 600 break;
14eb705c 601
20cd8abb 602 case 6: # size
603 echo ' <TD WIDTH="5%"><b>' . _("Size")."</b></TD>\n";
8e265988 604 break;
605 }
606 }
14eb705c 607 echo "</TR>\n";
3302d0d4 608 }
323218d7 609
9b0f85eb 610 function ShowSortButton($sort, $mailbox, $Up, $Down) {
611 if ($sort != $Up && $sort != $Down) {
612 $img = 'sort_none.gif';
613 $which = $Up;
614 } elseif ($sort == $Up) {
615 $img = 'up_pointer.gif';
616 $which = $Down;
617 } else {
618 $img = 'down_pointer.gif';
619 $which = 6;
620 }
621 echo ' <a href="right_main.php?newsort=' . $which .
69c1c5c1 622 '&startMessage=1&mailbox=' . urlencode($mailbox) .
623 '"><IMG SRC="../images/' . $img .
624 '" BORDER=0 WIDTH=12 HEIGHT=10></a>';
9b0f85eb 625 }
626
323218d7 627 function ShowSelectAllLink($startMessage, $sort)
628 {
629 global $checkall, $PHP_SELF, $what, $where, $mailbox;
5de4de79 630
631 // This code is from Philippe Mingo <mingo@rotedic.com>
632
633 ?>
634<script language="JavaScript">
635<!--
636function CheckAll() {
637 for (var i = 0; i < document.messageList.elements.length; i++) {
638 if( document.messageList.elements[i].name.substr( 0, 3 ) == 'msg') {
639 document.messageList.elements[i].checked =
640 !(document.messageList.elements[i].checked);
641 }
642 }
643}
644window.document.write('<a href="#" onClick="CheckAll();"><?php echo
645 _("Toggle All") ?></A>');
646//-->
647</script><noscript>
648<?PHP
0700d853 649
650 echo "<a href=\"$PHP_SELF?mailbox=" . urlencode($mailbox) .
651 "&startMessage=$startMessage&sort=$sort&checkall=";
7b0485a6 652 if (isset($checkall) && $checkall == '1')
653 echo '0';
323218d7 654 else
7b0485a6 655 echo '1';
323218d7 656 if (isset($where) && isset($what))
7b0485a6 657 echo '&where=' . urlencode($where) . '&what=' . urlencode($what);
323218d7 658 echo "\">";
659 if (isset($checkall) && $checkall == '1')
660 echo _("Unselect All");
661 else
662 echo _("Select All");
0700d853 663
5de4de79 664 echo "</A>\n</noscript>\n";
323218d7 665 }
f93c93b9 666
667 function processSubject($subject)
668 {
669 // Shouldn't ever happen -- caught too many times in the IMAP functions
670 if ($subject == '')
671 return _("(no subject)");
672
673 if (strlen($subject) <= 55)
674 return $subject;
675
676 $ent_strlen=strlen($subject);
677 $trim_val=50;
678 $ent_offset=0;
679 // see if this is entities-encoded string
680 // If so, Iterate through the whole string, find out
681 // the real number of characters, and if more
682 // than 55, substr with an updated trim value.
683 while (($ent_loc = strpos($subject, '&', $ent_offset)) !== false &&
684 ($ent_loc_end = strpos($subject, ';', $ent_loc)) !== false)
685 {
686 $trim_val += ($ent_loc_end-$ent_loc)+1;
687 $ent_strlen -= $ent_loc_end-$ent_loc;
688 $ent_offset = $ent_loc_end+1;
689 }
690
691 if ($ent_strlen <= 55)
692 return $subject;
693
694 return substr($subject, 0, $trim_val) . '...';
695 }
696
26b6c99c 697?>