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