More cleanups.
[squirrelmail.git] / functions / mailbox_display.php
CommitLineData
59177427 1<?php
2ba13803 2
35586184 3/**
0fdc2fb6 4* mailbox_display.php
5*
6* Copyright (c) 1999-2004 The SquirrelMail Project Team
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*
763b63fe 12* @version $Id$
0fdc2fb6 13* @package squirrelmail
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');
b531f8ea 23require_once(SM_PATH . 'functions/forms.php');
43fdb2a4 24
d6c32258 25/**
0fdc2fb6 26* default value for page_selector_max
27*/
6c930ade 28define('PG_SEL_MAX', 10);
29
8cc8ec79 30/**
31* Sort constants used for sorting of messages
32*/
03975a39 33define('SQSORT_NONE',0);
34define('SQSORT_DATE_ASC',1);
35define('SQSORT_DATE_DEC',2);
36define('SQSORT_FROM_ASC',3);
37define('SQSORT_FROM_DEC',4);
38define('SQSORT_SUBJ_ASC',5);
39define('SQSORT_SUBJ_DEC',6);
40define('SQSORT_SIZE_ASC',7);
41define('SQSORT_SIZE_DEC',8);
42define('SQSORT_TO_ASC',9);
43define('SQSORT_TO_DEC',10);
44define('SQSORT_CC_ASC',11);
45define('SQSORT_CC_DEC',12);
46define('SQSORT_INT_DATE_ASC',13);
47define('SQSORT_INT_DATE_DEC',14);
e0e30169 48define('SQSORT_THREAD',42);
d6c32258 49/**
0fdc2fb6 50* @param mixed $start UNDOCUMENTED
51*/
52function elapsed($start) {
53
54 $end = microtime();
55 list($start2, $start1) = explode(" ", $start);
56 list($end2, $end1) = explode(" ", $end);
57 $diff1 = $end1 - $start1;
58 $diff2 = $end2 - $start2;
59 if( $diff2 < 0 ){
60 $diff1 -= 1;
61 $diff2 += 1.0;
62 }
63 return $diff2 + $diff1;
098ea084 64}
65
c7df3f1b 66/**
8cc8ec79 67* Displays message header row in messages list
0fdc2fb6 68*
8cc8ec79 69* @param array $aMsg contains all message related parameters
70* @return void
0fdc2fb6 71*/
72
8cc8ec79 73function printMessageInfo($aMsg) {
e0e30169 74 // FIX ME, remove these globals as well by adding an array as argument for the user settings
75 // specificly meant for header display
8008456a 76 global $checkall,
e0e30169 77 $color,
0fdc2fb6 78 $default_use_priority,
79 $message_highlight_list,
80 $index_order,
0fdc2fb6 81 $truncate_sender, /* number of characters for From/To field (<= 0 for unchanged) */
82 $email_address,
83 $show_recipient_instead, /* show recipient name instead of default identity */
84 $use_icons, /* indicates to use icons or text markers */
85 $icon_theme; /* icons theming */
459e3347 86
e9e5f0fa 87 $color_string = $color[4];
8008456a 88
03975a39 89 // initialisation:
8cc8ec79 90 $mailbox = $aMsg['MAILBOX'];
91 $msg = $aMsg['HEADER'];
92 $t = $aMsg['INDX'];
93 $start_msg = $aMsg['PAGEOFFSET'];
94 $last = $aMsg['LAST'];
95 if (isset($aMsg['SEARCH']) && count($aMsg['SEARCH']) >1 ) {
96 $where = $aMsg['SEARCH'][0];
97 $what = $aMsg['SEARCH'][1];
98 } else {
99 $where = false;
100 $what = false;
101 }
e0e30169 102 $iIndent = $aMsg['INDENT'];
8cc8ec79 103
104 $sSubject = (isset($msg['SUBJECT']) && $msg['SUBJECT'] != '') ? $msg['SUBJECT'] : _("(no subject)");
105 $sFrom = (isset($msg['FROM'])) ? $msg['FROM'] : _("Unknown sender");
106 $sTo = (isset($msg['TO'])) ? $msg['TO'] : _("Unknown recipient");
107 $sCc = (isset($msg['CC'])) ? $msg['CC'] : '';
108 $aFlags = (isset($msg['FLAGS'])) ? $msg['FLAGS'] : array();
109 $iPrio = (isset($msg['PRIORITY'])) ? $msg['PRIORITY'] : 3;
110 $iSize = (isset($msg['SIZE'])) ? $msg['SIZE'] : 0;
111 $sType0 = (isset($msg['TYPE0'])) ? $msg['TYPE0'] : 'text';
112 $sType1 = (isset($msg['TYPE1'])) ? $msg['TYPE1'] : 'plain';
e0e30169 113 if (isset($msg['INTERNALDATE'])) {
114 $sDate = getDateString(getTimeStamp(explode(' ',$msg['INTERNALDATE'])));
115 } else {
116 $sDate = (isset($msg['DATE'])) ? getDateString(getTimeStamp(explode(' ',$msg['DATE']))) : '';
117 }
8cc8ec79 118 $iId = (isset($msg['ID'])) ? $msg['ID'] : false;
119
8cc8ec79 120 if (!$iId) {
121 return;
122 }
03975a39 123
8008456a 124 if ($GLOBALS['alt_index_colors']) {
e0e30169 125 if (!($t % 2)) {
8008456a 126 if (!isset($color[12])) {
127 $color[12] = '#EAEAEA';
128 }
129 $color_string = $color[12];
130 }
bdfb67f8 131 }
8008456a 132
8008456a 133 $urlMailbox = urlencode($mailbox);
e9e5f0fa 134
e0e30169 135 // FIXME, foldertype should be set in right_main.php
136 // in other words, handle as sent is obsoleted from now.
137 // We replace that by providing an array to aMailbox with the to shown headers
138 // that way we are free to show the user different layouts for different folders
53ad5f60 139 $bSentFolder = handleAsSent($mailbox);
1ae2832e 140 if ((!$bSentFolder) && ($show_recipient_instead)) {
141 // If the From address is the same as $email_address, then handle as Sent
03975a39 142 $from_array = parseAddress($sFrom, 1);
1ae2832e 143 if (!isset($email_address)) {
144 global $datadir, $username;
145 $email_address = getPref($datadir, $username, 'email_address');
146 }
147 $bHandleAsSent = ((isset($from_array[0][0])) && ($from_array[0][0] == $email_address));
8cc8ec79 148 } else {
1ae2832e 149 $bHandleAsSent = $bSentFolder;
8cc8ec79 150 }
53ad5f60 151 // If this is a Sent message, display To address instead of From
03975a39 152 if ($bHandleAsSent) {
153 $sFrom = $sTo;
154 }
53ad5f60 155 // Passing 1 below results in only 1 address being parsed, thus defeating the following code
03975a39 156 $sFrom = parseAddress($sFrom/*,1*/);
9701e9c8 157
0fdc2fb6 158 /*
e9e5f0fa 159 * This is done in case you're looking into Sent folders,
160 * because you can have multiple receivers.
161 */
03975a39 162 $senderNames = $sFrom;
098ea084 163 $senderName = '';
26454147 164 $senderAddress = '';
098ea084 165 if (sizeof($senderNames)){
166 foreach ($senderNames as $senderNames_part) {
e9e5f0fa 167 if ($senderName != '') {
168 $senderName .= ', ';
26454147 169 $senderAddress .= ', ';
e9e5f0fa 170 }
26454147 171 $sender_address_part = htmlspecialchars($senderNames_part[0]);
53ad5f60 172 $sender_name_part = str_replace('&nbsp;',' ', decodeHeader($senderNames_part[1]));
26454147 173 if ($sender_name_part) {
174 $senderName .= $sender_name_part;
175 $senderAddress .= $sender_name_part . ' <' . $sender_address_part . '>';
098ea084 176 } else {
26454147 177 $senderName .= $sender_address_part;
178 $senderAddress .= $sender_address_part;
098ea084 179 }
180 }
937c81fa 181 }
53ad5f60 182 // If Sent, prefix with To: but only if not Sent folder
183 if ($bHandleAsSent ^ $bSentFolder) {
184 $senderName = _("To:") . ' ' . $senderName;
185 $senderAddress = _("To:") . ' ' . $senderAddress;
186 }
459e3347 187
e0e30169 188 // this is a column property which can apply to multiple columns. Do not use vars for one column
189 // only. instead we should use something like this:
190 // 1ed column $aMailbox['columns']['SUBJECT'] value: aray with properties ...
191 // 2ed column $aMailbox['columns']['FROM'] value: aray with properties ...
192 // NB in case of the sentfolder this could be the TO field
193 // properties array example:
194 // 'truncate' => length (0 is no truncate)
195 // 'prefix => if (x in b then do that )
8cc8ec79 196 if ($truncate_sender > 0) {
197 $senderName = truncateWithEntities($senderName, $truncate_sender);
bdfb67f8 198 }
8cc8ec79 199
200 $flag = $flag_end = $bold = $bold_end = $fontstr = $fontstr_end = $italic = $italic_end = '';
201 $bold = '<b>';
202 $bold_end = '</b>';
203
8cc8ec79 204 foreach ($aFlags as $sFlag => $value) {
205 switch ($sFlag) {
206 case '\\flagged':
207 if ($value) {
208 $flag = "<font color=\"$color[2]\">";
209 $flag_end = '</font>';
210 }
211 break;
212 case '\\seen':
213 if ($value) {
214 $bold = '';
215 $bold_end = '';
216 }
217 break;
218 case '\\deleted':
219 if ($value) {
220 $fontstr = "<font color=\"$color[9]\">";
221 $fontstr_end = '</font>';
222 }
223 break;
224 }
bdfb67f8 225 }
53ad5f60 226 if ($bHandleAsSent) {
8008456a 227 $italic = '<i>';
228 $italic_end = '</i>';
8008456a 229 }
230
d215ca7d 231 if ($where && $what) {
232 $searchstr = '&amp;where='.$where.'&amp;what='.$what;
233 } else {
234 $searchstr = '';
6a622b59 235 }
8cc8ec79 236 /*
237 * Message highlight code
238 */
3667f469 239 $matches = array('TO' => 'sTo', 'CC' => 'sCc', 'FROM' => 'sFrom', 'SUBJECT' => 'sSubject');
937c81fa 240 if (is_array($message_highlight_list) && count($message_highlight_list)) {
03975a39 241 $sTo = parseAddress($sTo);
242 $sCc = parseAddress($sCc);
8008456a 243 foreach ($message_highlight_list as $message_highlight_list_part) {
244 if (trim($message_highlight_list_part['value']) != '') {
c0d04f97 245 $high_val = strtolower($message_highlight_list_part['value']);
246 $match_type = strtoupper($message_highlight_list_part['match_type']);
8415b2d3 247 if($match_type == 'TO_CC') {
248 $match = array('TO', 'CC');
249 } else {
250 $match = array($match_type);
251 }
252 foreach($match as $match_type) {
253 switch($match_type) {
254 case('TO'):
255 case('CC'):
256 case('FROM'):
3667f469 257 foreach ($$matches[$match_type] as $address) {
9701e9c8 258 $address[0] = decodeHeader($address[0], true, false);
259 $address[1] = decodeHeader($address[1], true, false);
8415b2d3 260 if (strstr('^^' . strtolower($address[0]), $high_val) ||
261 strstr('^^' . strtolower($address[1]), $high_val)) {
262 $hlt_color = $message_highlight_list_part['color'];
263 break 4;
264 }
937c81fa 265 }
937c81fa 266 break;
8415b2d3 267 default:
3667f469 268 $headertest = strtolower(decodeHeader($$matches[$match_type], true, false));
9701e9c8 269 if (strstr('^^' . $headertest, $high_val)) {
937c81fa 270 $hlt_color = $message_highlight_list_part['color'];
4669e892 271 break 3;
937c81fa 272 }
8415b2d3 273 break;
274 }
8008456a 275 }
276 }
277 }
8cc8ec79 278 } /* end Message highlight code */
8008456a 279
280 if (!isset($hlt_color)) {
281 $hlt_color = $color_string;
282 }
5e0efebf 283 $col = 0;
03975a39 284 $sSubject = str_replace('&nbsp;', ' ', decodeHeader($sSubject));
e0e30169 285 $subject = processSubject($sSubject, $iIndent);
8cc8ec79 286
287 echo html_tag( 'tr','','','','VALIGN="top"') . "\n";
288
6a622b59 289 if (sizeof($index_order)) {
8008456a 290 foreach ($index_order as $index_order_part) {
291 switch ($index_order_part) {
292 case 1: /* checkbox */
293 echo html_tag( 'td',
03975a39 294 addCheckBox("msg[$t]", $checkall, $iId),
0fdc2fb6 295 'center',
296 $hlt_color );
8008456a 297 break;
298 case 2: /* from */
26454147 299 if ($senderAddress != $senderName) {
300 $senderAddress = strtr($senderAddress, array_flip(get_html_translation_table(HTML_SPECIALCHARS)));
301 $title = ' title="' . str_replace('"', "''", $senderAddress) . '"';
8cc8ec79 302 } else {
26454147 303 $title = '';
8cc8ec79 304 }
8008456a 305 echo html_tag( 'td',
0fdc2fb6 306 $italic . $bold . $flag . $fontstr . $senderName .
307 $fontstr_end . $flag_end . $bold_end . $italic_end,
308 'left',
309 $hlt_color, $title );
8008456a 310 break;
311 case 3: /* date */
03975a39 312 if ($sDate == '') {
313 $sDate = _("Unknown date");
53d9fbc5 314 }
8008456a 315 echo html_tag( 'td',
03975a39 316 $bold . $flag . $fontstr . $sDate .
0fdc2fb6 317 $fontstr_end . $flag_end . $bold_end,
318 'center',
319 $hlt_color,
320 'nowrap' );
8008456a 321 break;
322 case 4: /* subject */
323 $td_str = $bold;
e0e30169 324 if ($iIndent) {
325 $td_str .= str_repeat("&nbsp;&nbsp;&nbsp;&nbsp;",$iIndent);
8008456a 326 }
e9e5f0fa 327 $td_str .= '<a href="read_body.php?mailbox='.$urlMailbox
6a622b59 328 . '&amp;passed_id='. $msg["ID"]
329 . '&amp;startMessage='.$start_msg.$searchstr.'"';
158fa340 330 $td_str .= ' ' .concat_hook_function('subject_link', array($start_msg, $searchstr));
03975a39 331 if ($subject != $sSubject) {
8008456a 332 $title = get_html_translation_table(HTML_SPECIALCHARS);
333 $title = array_flip($title);
03975a39 334 $title = strtr($sSubject, $title);
8008456a 335 $title = str_replace('"', "''", $title);
336 $td_str .= " title=\"$title\"";
337 }
338 $td_str .= ">$flag$subject$flag_end</a>$bold_end";
c1c17724 339 echo html_tag( 'td', $td_str, 'left', $hlt_color );
8008456a 340 break;
341 case 5: /* flags */
6a622b59 342
6395c46d 343 // icon message markers
344 //
345 if ($use_icons && $icon_theme != 'none') {
346 $td_str = "<b><small>";
03975a39 347 if (isset($aFlags['\\flagged']) && $aFlags['\\flagged'] == true) {
55103ede 348 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/flagged.png" border="0" height="10" width="10" /> ';
6395c46d 349 }
350 if ($default_use_priority) {
03975a39 351 if ( ($iPrio == 1) || ($iPrio == 2) ) {
55103ede 352 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/prio_high.png" border="0" height="10" width="5" /> ';
6395c46d 353 }
03975a39 354 else if ($iPrio == 5) {
55103ede 355 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/prio_low.png" border="0" height="10" width="5" /> ';
6395c46d 356 }
0fdc2fb6 357 else {
55103ede 358 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/transparent.png" border="0" width="5" /> ';
6395c46d 359 }
360 }
03975a39 361 if ($sType1 == 'mixed') {
55103ede 362 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/attach.png" border="0" height="10" width="6" />';
0fdc2fb6 363 } else {
55103ede 364 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/transparent.png" border="0" width="6" />';
6395c46d 365 }
366
367 $msg_icon = '';
03975a39 368 if (!isset($aFlags['\\seen']) || ($aFlags['\\seen']) == false) {
6395c46d 369 $msg_alt = '(' . _("New") . ')';
370 $msg_title = '(' . _("New") . ')';
371 $msg_icon .= SM_PATH . 'images/themes/' . $icon_theme . '/msg_new';
0fdc2fb6 372 } else {
6395c46d 373 $msg_alt = '(' . _("Read") . ')';
374 $msg_title = '(' . _("Read") . ')';
375 $msg_icon .= SM_PATH . 'images/themes/' . $icon_theme . '/msg_read';
376 }
03975a39 377 if (isset($aFlags['\\deleted']) && ($aFlags['\\deleted']) == true) {
6395c46d 378 $msg_icon .= '_deleted';
379 }
03975a39 380 if (isset($aFlags['\\answered']) && ($aFlags['\\answered']) == true) {
d3685401 381 $msg_alt = '(' . _("Answered") . ')';
382 $msg_title = '(' . _("Answered") . ')';
6395c46d 383 $msg_icon .= '_reply';
384 }
55103ede 385 $td_str .= '<img src="' . $msg_icon . '.png" border="0" alt="'. $msg_alt . '" title="' . $msg_title . '" height="12" width="18" />';
6395c46d 386 $td_str .= '</small></b>';
387 echo html_tag( 'td',
0fdc2fb6 388 $td_str,
389 'right',
390 $hlt_color,
391 'nowrap' );
8008456a 392 }
6395c46d 393
6395c46d 394 // plain text message markers
395 //
396 else {
397 $stuff = false;
398 $td_str = "<b><small>";
03975a39 399 if (isset($aFlags['\\answered']) && $aFlags['\\answered'] == true) {
6395c46d 400 $td_str .= _("A");
8008456a 401 $stuff = true;
402 }
03975a39 403 if ($sType1 == 'mixed') {
6395c46d 404 $td_str .= '+';
8008456a 405 $stuff = true;
406 }
6395c46d 407 if ($default_use_priority) {
03975a39 408 if ( ($iPrio == 1) || ($iPrio == 2) ) {
6395c46d 409 $td_str .= "<font color=\"$color[1]\">!</font>";
410 $stuff = true;
411 }
03975a39 412 if ($iPrio == 5) {
6395c46d 413 $td_str .= "<font color=\"$color[8]\">?</font>";
414 $stuff = true;
415 }
416 }
03975a39 417 if (isset($aFlags['\\deleted']) && $aFlags['\\deleted'] == true) {
6395c46d 418 $td_str .= "<font color=\"$color[1]\">D</font>";
419 $stuff = true;
420 }
421 if (!$stuff) {
422 $td_str .= '&nbsp;';
423 }
424 $td_str .= '</small></b>';
425 echo html_tag( 'td',
0fdc2fb6 426 $td_str,
427 'center',
428 $hlt_color,
429 'nowrap' );
8008456a 430 }
8008456a 431 break;
432 case 6: /* size */
8008456a 433 echo html_tag( 'td',
03975a39 434 $bold . $fontstr . show_readable_size($iSize) .
0fdc2fb6 435 $fontstr_end . $bold_end,
436 'right',
437 $hlt_color );
8008456a 438 break;
439 }
ed230bc3 440 ++$col;
8008456a 441 }
bdfb67f8 442 }
8cc8ec79 443 /* html for separationlines between rows */
1c198ef7 444 if ($last) {
445 echo '</tr>'."\n";
446 } else {
55103ede 447 echo '</tr>' . "\n" . '<tr><td colspan="' . $col . '" bgcolor="' .
0fdc2fb6 448 $color[0] . '" height="1"></td></tr>' . "\n";
6a622b59 449 }
e9e5f0fa 450}
451
c7df3f1b 452/**
03975a39 453* Does the $sort $_GET var to field mapping
0fdc2fb6 454*
03975a39 455* @param int $sort Field to sort on
456* @param bool $bServerSort Server sorting is true
457* @param mixed $key UNDOCUMENTED
458* @return string $sSortField Field tosort on
0fdc2fb6 459*/
03975a39 460function getSortField($sort,$bServerSort) {
461 switch($sort) {
462 case SQSORT_NONE:
463 $sSortField = 'UID';
464 break;
465 case SQSORT_DATE_ASC:
466 case SQSORT_DATE_DEC:
467 $sSortField = 'DATE';
468 break;
469 case SQSORT_FROM_ASC:
470 case SQSORT_FROM_DEC:
471 $sSortField = 'FROM';
472 break;
473 case SQSORT_SUBJ_ASC:
474 case SQSORT_SUBJ_DEC:
475 $sSortField = 'SUBJECT';
476 break;
477 case SQSORT_SIZE_ASC:
478 case SQSORT_SIZE_DEC:
479 $sSortField = ($bServerSort) ? 'SIZE' : 'RFC822.SIZE';
480 break;
481 case SQSORT_TO_ASC:
482 case SQSORT_TO_DEC:
483 $sSortField = 'TO';
484 break;
485 case SQSORT_CC_ASC:
486 case SQSORT_CC_DEC:
487 $sSortField = 'CC';
488 break;
489 case SQSORT_INT_DATE_ASC:
490 case SQSORT_INT_DATE_DEC:
491 $sSortField = ($bServerSort) ? 'ARRIVAL' : 'INTERNALDATE';
492 break;
e0e30169 493 case SQSORT_THREAD:
03975a39 494 break;
e0e30169 495 default: $sSortField = 'UID';
496 break;
497
fe6efa94 498 }
03975a39 499 return $sSortField;
e9e5f0fa 500}
501
e0e30169 502function get_sorted_msgs_list($imapConnection,$aMailbox,&$error) {
503 $bDirection = ($aMailbox['SORT'] % 2);
03975a39 504 $error = false;
e0e30169 505 switch ($aMailbox['SORT_METHOD']) {
8cc8ec79 506 case 'THREAD':
03975a39 507 $id = get_thread_sort($imapConnection);
508 if ($id === false) {
509 $error = '<b><small><center><font color=red>' .
510 _("Thread sorting is not supported by your IMAP server.") . '<br />' .
511 _("Please report this to the system administrator.").
512 '</center></small></b>';
513 }
514 break;
8cc8ec79 515 case 'SERVER':
e0e30169 516 $sSortField = getSortField($aMailbox['SORT'],true);
03975a39 517 $id = sqimap_get_sort_order($imapConnection, $sSortField, $bDirection);
518 if ($id === false) {
519 $error = '<b><small><center><font color=red>' .
520 _( "Server-side sorting is not supported by your IMAP server.") . '<br />' .
521 _("Please report this to the system administrator.").
522 '</center></small></b>';
83cdc70b 523 }
03975a39 524 break;
525 default:
e0e30169 526 $sSortField = getSortField($aMailbox['SORT'],false);
03975a39 527 $id = get_squirrel_sort($imapConnection, $sSortField, $bDirection);
528 break;
e9e5f0fa 529 }
03975a39 530 return $id;
e9e5f0fa 531}
532
c7df3f1b 533/**
0fdc2fb6 534* This function loops through a group of messages in the mailbox
535* and shows them to the user.
536*
537* @param mixed $imapConnection
8cc8ec79 538* @param array $aMailbox associative array with mailbox related vars
0fdc2fb6 539*/
8cc8ec79 540function showMessagesForMailbox($imapConnection, $aMailbox) {
e0e30169 541 global $msgs, $server_sort_array,$indent_array;
8cc8ec79 542
543 // to retrieve the internaldate pref: (I know this is not the right place to do that, move up in front
544 // and use a properties array as function argument to provide user preferences
545 global $data_dir, $username;
546
e0e30169 547 // retrieve indent array for thread sort
548
549
1c198ef7 550 /* if there's no messages in this folder */
8cc8ec79 551 if ($aMailbox['EXISTS'] == 0) {
1c198ef7 552 $string = '<b>' . _("THIS FOLDER IS EMPTY") . '</b>';
553 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
554 echo ' <tr><td>';
555 echo ' <table width="100%" cellpadding="0" cellspacing="0" align="center" border="0" bgcolor="'.$color[4].'">';
556 echo ' <tr><td><br />';
557 echo ' <table cellpadding="1" cellspacing="5" align="center" border="0">';
558 echo ' <tr>' . html_tag( 'td', $string."\n", 'left')
559 . '</tr>';
560 echo ' </table>';
561 echo ' <br /></td></tr>';
562 echo ' </table></td></tr>';
563 echo ' </table>';
564 return;
565 }
566
8cc8ec79 567 if ($aMailbox['EXISTS'] > 0) {
6a622b59 568 /* if $start_msg is lower than $num_msgs, we probably deleted all messages
0fdc2fb6 569 * in the last page. We need to re-adjust the start_msg
570 */
8cc8ec79 571 $start_msg = $aMailbox['PAGEOFFSET'];
572 if($aMailbox['PAGEOFFSET'] > $aMailbox['EXISTS']) {
573 $start_msg -= $aMailbox['LIMIT'];
6a622b59 574 if($start_msg < 1) {
575 $start_msg = 1;
576 }
e9e5f0fa 577 }
8cc8ec79 578 $aMailbox['SEARCH'] = array(); // Alex maybe you can change this so that you can use it from a search
579
580 // initialize the fields we want to retrieve:
581 $aHeaderFields = array('Date', 'To', 'Cc', 'From', 'Subject', 'X-Priority', 'Content-Type');
582 $aFetchItems = array('FLAGS', 'RFC822.SIZE');
583 // Are we sorting on internaldate then retrieve the internaldate value as well
584 $internaldate = getPref($data_dir, $username, 'internal_date_sort');
585 if ($internaldate) {
586 $aFetchItems[] = 'INTERNALDATE';
587 }
e0e30169 588 if ($aMailbox['SORT'] == SQSORT_NONE) {
8cc8ec79 589 /**
590 * retrieve messages by sequence id's and fetch the UID to retrieve
591 * the UID. for sorted lists this is not needed because a UID FETCH
592 * automaticly add the UID value in fetch results
593 **/
594 $aFetchItems[] = 'UID';
595 }
4e9f35e4 596
6a622b59 597 /* This code and the next if() block check for
0fdc2fb6 598 * server-side sorting methods. The $id array is
599 * formatted and $sort is set to 6 to disable
600 * SM internal sorting
601 */
6a622b59 602
e0e30169 603 if ($aMailbox['SORT'] != SQSORT_NONE && isset($aMailbox['UIDSET']) &&
604 $aMailbox['UIDSET'] ) {
605 $id = $aMailbox['UIDSET'];
03975a39 606 if (sqsession_is_registered('msgs')) {
607 sqsession_unregister('msgs');
608 }
8cc8ec79 609 $id_slice = array_slice($id,$start_msg-1,$aMailbox['LIMIT']);
03975a39 610 if (count($id_slice)) {
e0e30169 611 $msgs = sqimap_get_small_header_list($imapConnection,$id_slice,$aMailbox['LIMIT'],
612 $aHeaderFields,$aFetchItems);
613
03975a39 614 } else {
615 return false;
616 }
8cc8ec79 617 // FIX ME, move to msgs cache bound to a mailbox
03975a39 618 sqsession_register($msgs, 'msgs');
619 } else {
620 if (sqsession_is_registered('server_sort_array')) {
621 sqsession_unregister('server_sort_array');
622 }
e0e30169 623
624 if ($aMailbox['SORT'] != SQSORT_NONE || $aMailbox['SORT_METHOD'] == 'THREAD') {
625 $id = get_sorted_msgs_list($imapConnection,$aMailbox,$error);
8cc8ec79 626 if ($id !== false) {
627 $id_slice = array_slice($id,$aMailbox['OFFSET'], $aMailbox['LIMIT']);
628 if (count($id_slice)) {
629 $msgs = sqimap_get_small_header_list($imapConnection,$id_slice,$aMailbox['LIMIT'],
630 $aHeaderFields,$aFetchItems);
631 } else {
632 return false;
633 }
6a622b59 634 }
03975a39 635 } else {
8cc8ec79 636 //create id range
637 $iRangeEnd = (($aMailbox['EXISTS'] - $aMailbox['OFFSET']) > $aMailbox['LIMIT']) ?
638 $aMailbox['EXISTS'] - $aMailbox['OFFSET'] +1 - $aMailbox['LIMIT']:
639 $aMailbox['EXISTS'] - $aMailbox['OFFSET'];
640 $iRangeStart = (($aMailbox['EXISTS'] - $aMailbox['OFFSET']) > $aMailbox['LIMIT']) ?
641 $aMailbox['EXISTS']-$aMailbox['OFFSET'] +1:1;
642 $id_slice = range($iRangeStart, $iRangeEnd);
643 $msgs = sqimap_get_small_header_list($imapConnection,$id_slice,$aMailbox['LIMIT'],
644 $aHeaderFields,$aFetchItems);
645 $msgs = array_reverse($msgs,true /* preserve key */);
646 // generate id array
647 $id = array_keys($msgs);
648 $aMailbox['OFFSET'] = 0;
649 }
650 // FIX ME, use an id list bound to a mailbox
651 if ($id !== false) {
652 sqsession_register($id, 'server_sort_array');
03975a39 653 }
7b73b809 654
8cc8ec79 655 sqsession_register($msgs, 'msgs');
03975a39 656 }
8cc8ec79 657 $aMailbox['UIDSET'] =& $id;
658 $aMailbox['MSG_HEADERS'] =& $msgs;
e0e30169 659 if ($aMailbox['SORT_METHOD'] == 'THREAD') {
660 sqgetGlobalVar('indent_array',$indent_array,SQ_SESSION);
661 $aMailbox['THREAD_INDENT'] =& $indent_array;
662 }
6a622b59 663 } /* if exists > 0 */
664
e0e30169 665 $iEnd = ($aMailbox['PAGEOFFSET'] + ($aMailbox['LIMIT'] - 1) < $aMailbox['EXISTS']) ?
666 $aMailbox['PAGEOFFSET'] + $aMailbox['LIMIT'] - 1 : $aMailbox['EXISTS'];
6a622b59 667
e0e30169 668 $paginator_str = get_paginator_str($aMailbox['NAME'], $aMailbox['PAGEOFFSET'], $iEnd,
8cc8ec79 669 $aMailbox['EXISTS'], $aMailbox['LIMIT'], $aMailbox['SORT']);
6a622b59 670
e0e30169 671 $msg_cnt_str = get_msgcnt_str($aMailbox['PAGEOFFSET'], $iEnd,$aMailbox['EXISTS']);
6a622b59 672
673 do_hook('mailbox_index_before');
abafb676 674?>
675<table border="0" width="100%" cellpadding="0" cellspacing="0">
0fdc2fb6 676<tr>
abafb676 677 <td>
8cc8ec79 678 <?php mail_message_listing_beginning($imapConnection, $aMailbox, $msg_cnt_str, $paginator_str); ?>
abafb676 679 </td>
0fdc2fb6 680</tr>
681<tr><td height="5" bgcolor="<?php echo $color[4]; ?>"></td></tr>
682<tr>
abafb676 683 <td>
0fdc2fb6 684 <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="<?php echo $color[9]; ?>">
abafb676 685 <tr>
0fdc2fb6 686 <td>
abafb676 687 <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="<?php echo $color[5]; ?>">
0fdc2fb6 688 <tr>
abafb676 689 <td>
0fdc2fb6 690 <?php
8cc8ec79 691 printHeader($aMailbox);
692 displayMessageArray($imapConnection, $aMailbox);
0fdc2fb6 693 ?>
abafb676 694 </td>
0fdc2fb6 695 </tr>
abafb676 696 </table>
0fdc2fb6 697 </td>
abafb676 698 </tr>
0fdc2fb6 699 </table>
700 <?php
8cc8ec79 701 mail_message_listing_end($aMailbox['EXISTS'], $paginator_str, $msg_cnt_str);
0fdc2fb6 702 ?>
abafb676 703 </td>
0fdc2fb6 704</tr>
abafb676 705</table>
706<?php
8415b2d3 707 //$t = elapsed($start);
46a49f65 708 //echo("elapsed time = $t seconds\n");
6c930ade 709}
bdfb67f8 710
c7df3f1b 711/**
8cc8ec79 712* Function to map an uid list with a msg header array by uid
713* The mapped headers are printed with printMessage
714* aMailbox parameters contains info about the page we are on, the
715* used search criteria, the number of messages to show
0fdc2fb6 716*
8cc8ec79 717* @param resource $imapConnection socket handle to imap
718* @param array $aMailbox array with required elements MSG_HEADERS, UIDSET, OFFSET, LIMIT
719* @return void
720**/
721function displayMessageArray($imapConnection, $aMailbox) {
722
723 $aId = $aMailbox['UIDSET'];
724 $aHeaders = $aMailbox['MSG_HEADERS'];
725 $iOffset = $aMailbox['OFFSET'];
726 $sort = $aMailbox['SORT'];
727 $iPageOffset = $aMailbox['PAGEOFFSET'];
728 $sMailbox = $aMailbox['NAME'];
729 $aSearch = (isset($aMailbox['SEARCH'])) ? $aMailbox['SEARCH'] : false;
e0e30169 730 if ($aMailbox['SORT_METHOD'] == 'THREAD') {
731 $aIndentArray =& $aMailbox['THREAD_INDENT'];
732 $bThread = true;
733 } else {
734 $bThread = false;
735 }
6a622b59 736 /*
0fdc2fb6 737 * Loop through and display the info for each message.
738 * ($t is used for the checkbox number)
739 */
8cc8ec79 740 $iEnd = ($aMailbox['LIMIT']) ? $iOffset + $aMailbox['LIMIT'] : 99999999 /* no limit */;
741 for ($i=$iOffset,$t=0;$i<$iEnd;++$i) {
742 if (isset($aId[$i])) {
743 $bLast = ((isset($aId[$i+1]) && isset($aHeaders[$aId[$i+1]]))
744 || ($i == $iEnd )) ? false : true;
e0e30169 745 if ($bThread) {
746 $indent = (isset($aIndentArray[$aId[$i]])) ? $aIndentArray[$aId[$i]] : 0;
747 } else {
748 $indent = 0;
749 }
8cc8ec79 750 $aMsg = array(
751 'HEADER' => $aHeaders[$aId[$i]],
752 'INDX' => $t,
753 'OFFSET' => $iOffset,
754 'PAGEOFFSET' => $iPageOffset,
755 'SORT' => $sort,
756 'SEARCH' => $aSearch,
757 'MAILBOX' => $sMailbox,
e0e30169 758 'INDENT' => $indent,
8cc8ec79 759 'LAST' => $bLast
760 );
761 printMessageInfo($aMsg);
0fdc2fb6 762 ++$t;
6a622b59 763 } else {
1c198ef7 764 break;
6a622b59 765 }
94ac35c6 766 }
bdfb67f8 767}
768
c7df3f1b 769/**
0fdc2fb6 770* Displays the standard message list header.
771*
772* To finish the table, you need to do a "</table></table>";
773*
8cc8ec79 774* @param resource $imapConnection
775* @param array $aMailbox associative array with mailbox related information
776* @param string $msg_cnt_str
777* @param string $paginator Paginator string
0fdc2fb6 778*/
6a622b59 779function mail_message_listing_beginning ($imapConnection,
8cc8ec79 780 $aMailbox,
781 $msg_cnt_str = '',
782 $paginator = '&nbsp;'
783 ) {
784 global $color, $base_uri, $show_flag_buttons, $PHP_SELF;
785
786
6a622b59 787
788 $php_self = $PHP_SELF;
789 /* fix for incorrect $PHP_SELF */
790 if (strpos($php_self, 'move_messages.php')) {
791 $php_self = str_replace('move_messages.php', 'right_main.php', $php_self);
792 }
8cc8ec79 793 $urlMailbox = urlencode($aMailbox['NAME']);
e35045b7 794
6a622b59 795 if (preg_match('/^(.+)\?.+$/',$php_self,$regs)) {
796 $source_url = $regs[1];
797 } else {
798 $source_url = $php_self;
799 }
800
801 if (!isset($msg)) {
802 $msg = '';
803 }
abafb676 804
805 if (!strpos($php_self,'?')) {
806 $location = $php_self.'?mailbox=INBOX&amp;startMessage=1';
807 } else {
808 $location = $php_self;
809 }
810
b531f8ea 811 $moveFields = addHidden('msg', $msg).
8cc8ec79 812 addHidden('mailbox', $aMailbox['NAME']).
813 addHidden('startMessage', $aMailbox['PAGEOFFSET']).
814 addHidden('location', $location);
8fe969f6 815
5e0539cd 816 /* build thread sorting links */
5e0539cd 817
8cc8ec79 818 if ($aMailbox['ALLOW_THREAD']) {
819 if ($aMailbox['SORT_METHOD'] == 'THREAD') {
820 $set_thread = 2;
821 $thread_name = _("Unthread View");
822 } else {
823 $set_thread = 1;
824 $thread_name = _("Thread View");
825 }
826 $thread_link_str = '<small>[<a href="' . $source_url . '?sort='
827 . $aMailbox['SORT'] . '&start_messages=1&set_thread=' . $set_thread
828 . '&mailbox=' . urlencode($aMailbox['NAME']) . '">' . $thread_name
829 . '</a>]</small>';
830 } else {
831 $thread_link_str ='';
832 }
6a622b59 833 /*
0fdc2fb6 834 * This is the beginning of the message list table.
835 * It wraps around all messages
836 */
8cc8ec79 837 $safe_name = preg_replace("/[^0-9A-Za-z_]/", '_', $aMailbox['NAME']);
3027826a 838 $form_name = "FormMsgs" . $safe_name;
3da12e67 839
3027826a 840 echo '<form name="' . $form_name . '" method="post" action="move_messages.php">' ."\n"
0fdc2fb6 841 . $moveFields;
abafb676 842?>
0fdc2fb6 843 <table width="100%" cellpadding="1" cellspacing="0" style="border: 1px solid <?php echo $color[0]; ?>">
abafb676 844 <tr>
0fdc2fb6 845 <td>
abafb676 846 <table bgcolor="<?php echo $color[4]; ?>" border="0" width="100%" cellpadding="1" cellspacing="0">
0fdc2fb6 847 <tr>
74091b64 848 <td align="left"><small><?php echo $paginator . $thread_link_str; ?></small></td>
d8a255fe 849 <td align="center"></td>
abafb676 850 <td align="right"><small><?php echo $msg_cnt_str; ?></small></td>
0fdc2fb6 851 </tr>
abafb676 852 </table>
0fdc2fb6 853 </td>
abafb676 854 </tr>
855 <tr width="100%" cellpadding="1" cellspacing="0" border="0" bgcolor="<?php echo $color[0]; ?>">
0fdc2fb6 856 <td>
abafb676 857 <table border="0" width="100%" cellpadding="1" cellspacing="0">
0fdc2fb6 858 <tr>
abafb676 859 <td align="left">
0fdc2fb6 860 <small><?php
4669e892 861
fd181f53 862 // display flag buttons only if supported
8cc8ec79 863 if ($show_flag_buttons &&
864 array_search('\\flagged',$aMailbox['PERMANENTFLAGS'], true) !== FALSE) {
1a531551 865 echo getButton('SUBMIT', 'markUnflagged',_("Unflag"));
fd181f53 866 echo getButton('SUBMIT', 'markFlagged',_("Flag"));
867 echo '&nbsp;';
fd181f53 868 }
8cc8ec79 869 if (array_search('\\seen',$aMailbox['PERMANENTFLAGS'], true) !== FALSE) {
4669e892 870 echo getButton('SUBMIT', 'markUnread',_("Unread"));
871 echo getButton('SUBMIT', 'markRead',_("Read"));
872 echo '&nbsp;';
873 }
98a9cc03 874
abafb676 875 echo getButton('SUBMIT', 'attache',_("Forward"));
876 echo '&nbsp;';
8cc8ec79 877 if (array_search('\\deleted',$aMailbox['PERMANENTFLAGS'], true) !== FALSE) {
4669e892 878 echo getButton('SUBMIT', 'delete',_("Delete"));
879 echo '<input type="checkbox" name="bypass_trash" />' . _("Bypass Trash");
880 echo '&nbsp;';
881 }
8cc8ec79 882 if (!$aMailbox['AUTO_EXPUNGE'] && $aMailbox['RIGHTS'] != 'READ-ONLY') {
0fdc2fb6 883 echo getButton('SUBMIT', 'expungeButton',_("Expunge")) .'&nbsp;' . _("mailbox") . "\n";
884 echo '&nbsp;';
abafb676 885 }
886 do_hook('mailbox_display_buttons');
0fdc2fb6 887 ?></small>
abafb676 888 </td>
4669e892 889 <?php
8cc8ec79 890 if (array_search('\\deleted',$aMailbox['PERMANENTFLAGS'], true) !== FALSE) {
4669e892 891 echo '<td align="right">
0fdc2fb6 892 <small>';
5e0539cd 893 //echo $thread_link_str; //previous behaviour
4669e892 894 getMbxList($imapConnection);
895 echo getButton('SUBMIT', 'moveButton',_("Move")) . "\n
0fdc2fb6 896 </small>";
4669e892 897 }
898 ?>
abafb676 899 </td>
0fdc2fb6 900 </tr>
abafb676 901 </table>
0fdc2fb6 902 </td>
abafb676 903 </tr>
0fdc2fb6 904 </table>
a966982b 905
abafb676 906<?php
1b91be0c 907 do_hook('mailbox_form_before');
e9e5f0fa 908}
a966982b 909
c7df3f1b 910/**
e0e30169 911* Function to add the last row in a message list, it contains the paginator and info about
912* the number of messages.
0fdc2fb6 913*
8cc8ec79 914* @param integer $num_msgs number of messages in a mailbox
915* @param string $paginator_str Paginator string [Prev | Next] [ 1 2 3 ... 91 92 94 ] [Show all]
916* @param string $msg_cnt_str Message count string Viewing Messages: 21 to 1861 (20 total)
0fdc2fb6 917*/
8cc8ec79 918function mail_message_listing_end($num_msgs, $paginator_str, $msg_cnt_str) {
919global $color;
0fdc2fb6 920if ($num_msgs) {
4b920601 921 /* space between list and footer */
abafb676 922?>
0fdc2fb6 923<tr><td height="5" bgcolor="<?php echo $color[4]; ?>" colspan="1"></td></tr>
924<tr>
abafb676 925 <td>
0fdc2fb6 926 <table width="100%" cellpadding="1" cellspacing="0" style="border: 1px solid <?php echo $color[0]; ?>">
abafb676 927 <tr>
0fdc2fb6 928 <td>
abafb676 929 <table bgcolor="<?php echo $color[4]; ?>" border="0" width="100%" cellpadding="1" cellspacing="0">
0fdc2fb6 930 <tr>
abafb676 931 <td align="left"><small><?php echo $paginator_str; ?></small></td>
932 <td align="right"><small><?php echo $msg_cnt_str; ?></small></td>
0fdc2fb6 933 </tr>
abafb676 934 </table>
0fdc2fb6 935 </td>
abafb676 936 </tr>
0fdc2fb6 937 </table>
abafb676 938 </td>
0fdc2fb6 939</tr>
abafb676 940<?php
0fdc2fb6 941}
6a622b59 942 /* End of message-list table */
a966982b 943
6a622b59 944 do_hook('mailbox_index_after');
c7df3f1b 945 echo "</form>\n";
a966982b 946}
947
c7df3f1b 948/**
8cc8ec79 949* Prints the table header for the messages list view
0fdc2fb6 950*
8cc8ec79 951* @param array $aMailbox
0fdc2fb6 952*/
8cc8ec79 953function printHeader($aMailbox) {
954 global $index_order, $internal_date_sort, $color;
955
956 if ($aMailbox['SORT_METHOD'] != 'THREAD') {
957 $showsort = true;
958 } else {
959 $showsort = false;
960 }
961
1b91be0c 962 echo html_tag( 'tr' ,'' , 'center', $color[5] );
e4b5f9d1 963
964 /* calculate the width of the subject column based on the
0fdc2fb6 965 * widths of the other columns */
e4b5f9d1 966 $widths = array(1=>1,2=>25,3=>5,4=>0,5=>1,6=>5);
967 $subjectwidth = 100;
968 foreach($index_order as $item) {
4669e892 969 $subjectwidth -= $widths[$item];
e4b5f9d1 970 }
971
972 foreach ($index_order as $item) {
973 switch ($item) {
8008456a 974 case 1: /* checkbox */
8cc8ec79 975 echo html_tag( 'td',get_selectall_link($aMailbox) , '', '', 'width="1%"' );
abafb676 976 break;
8008456a 977 case 5: /* flags */
abafb676 978 echo html_tag( 'td','' , '', '', 'width="1%"' );
8008456a 979 break;
980 case 2: /* from */
8cc8ec79 981 if (handleAsSent($aMailbox['NAME'])) {
1b91be0c 982 echo html_tag( 'td' ,'' , 'left', '', 'width="25%"' )
0fdc2fb6 983 . '<b>' . _("To") . '</b>';
03975a39 984 if ($showsort) {
8cc8ec79 985 ShowSortButton($aMailbox, SQSORT_TO_ASC, SQSORT_TO_DEC);
03975a39 986 }
8008456a 987 } else {
1b91be0c 988 echo html_tag( 'td' ,'' , 'left', '', 'width="25%"' )
0fdc2fb6 989 . '<b>' . _("From") . '</b>';
03975a39 990 if ($showsort) {
8cc8ec79 991 ShowSortButton($aMailbox, SQSORT_FROM_ASC, SQSORT_FROM_DEC);
03975a39 992 }
8008456a 993 }
1b91be0c 994 echo "</td>\n";
8008456a 995 break;
996 case 3: /* date */
1b91be0c 997 echo html_tag( 'td' ,'' , 'left', '', 'width="5%" nowrap' )
0fdc2fb6 998 . '<b>' . _("Date") . '</b>';
a966982b 999 if ($showsort) {
03975a39 1000 if ($internal_date_sort) {
8cc8ec79 1001 ShowSortButton($aMailbox, SQSORT_INT_DATE_ASC, SQSORT_INT_DATE_DEC);
03975a39 1002 } else {
8cc8ec79 1003 ShowSortButton($aMailbox, SQSORT_DATE_ASC, SQSORT_DATE_DEC);
03975a39 1004 }
8008456a 1005 }
1b91be0c 1006 echo "</td>\n";
8008456a 1007 break;
a966982b 1008 case 4: /* subject */
e4b5f9d1 1009 echo html_tag( 'td' ,'' , 'left', '', 'width="'.$subjectwidth.'%"' )
0fdc2fb6 1010 . '<b>' . _("Subject") . '</b>';
a966982b 1011 if ($showsort) {
8cc8ec79 1012 ShowSortButton($aMailbox, SQSORT_SUBJ_ASC, SQSORT_SUBJ_DEC);
8008456a 1013 }
1b91be0c 1014 echo "</td>\n";
8008456a 1015 break;
1016 case 6: /* size */
03975a39 1017 echo html_tag( 'td', '', 'center','','width="5%" nowrap')
1018 . '<b>' . _("Size") . '</b>';
1019 if ($showsort) {
8cc8ec79 1020 ShowSortButton($aMailbox, SQSORT_SIZE_ASC, SQSORT_SIZE_DEC);
03975a39 1021 }
1022 echo "</td>\n";
8008456a 1023 break;
1024 }
bdfb67f8 1025 }
1b91be0c 1026 echo "</tr>\n";
bdfb67f8 1027}
1028
e9e5f0fa 1029
c7df3f1b 1030/**
0fdc2fb6 1031* This function shows the sort button. Isn't this a good comment?
1032*
8cc8ec79 1033* @param array $aMailbox
1034* @param integer $Down
1035* @param integer $Up
0fdc2fb6 1036*/
8cc8ec79 1037function ShowSortButton($aMailbox, $Down, $Up ) {
6a622b59 1038 global $PHP_SELF;
94a4ea53 1039
6a622b59 1040 /* Figure out which image we want to use. */
8cc8ec79 1041 if ($aMailbox['SORT'] != $Up && $aMailbox['SORT'] != $Down) {
6a622b59 1042 $img = 'sort_none.png';
1043 $which = $Up;
8cc8ec79 1044 } elseif ($aMailbox['SORT'] == $Up) {
6a622b59 1045 $img = 'up_pointer.png';
1046 $which = $Down;
6c930ade 1047 } else {
6a622b59 1048 $img = 'down_pointer.png';
03975a39 1049 $which = 0;
e35045b7 1050 }
6a622b59 1051
1052 if (preg_match('/^(.+)\?.+$/',$PHP_SELF,$regs)) {
1053 $source_url = $regs[1];
e35045b7 1054 } else {
6a622b59 1055 $source_url = $PHP_SELF;
6c930ade 1056 }
6a622b59 1057
1058 /* Now that we have everything figured out, show the actual button. */
1059 echo ' <a href="' . $source_url .'?newsort=' . $which
8cc8ec79 1060 . '&amp;startMessage=1&amp;mailbox=' . urlencode($aMailbox['NAME'])
0fdc2fb6 1061 . '"><img src="../images/' . $img
1062 . '" border="0" width="12" height="10" alt="sort" title="'
1063 . _("Click here to change the sorting of the message list") .' /"></a>';
6a622b59 1064}
1065
c7df3f1b 1066/**
0fdc2fb6 1067* FIXME: Undocumented function
1068*
8cc8ec79 1069* @param array $aMailbox
0fdc2fb6 1070*/
8cc8ec79 1071function get_selectall_link($aMailbox) {
1072 global $checkall, $javascript_on;
6a622b59 1073 global $PHP_SELF, $PG_SHOWNUM;
1074
1075 $result = '';
1076 if ($javascript_on) {
8cc8ec79 1077 $safe_name = preg_replace("/[^0-9A-Za-z_]/", '_', $aMailbox['NAME']);
3027826a 1078 $func_name = "CheckAll" . $safe_name;
1079 $form_name = "FormMsgs" . $safe_name;
6a622b59 1080 $result = '<script language="JavaScript" type="text/javascript">'
1081 . "\n<!-- \n"
3027826a 1082 . "function " . $func_name . "() {\n"
1083 . " for (var i = 0; i < document." . $form_name . ".elements.length; i++) {\n"
3962deff 1084 . " if(document." . $form_name . ".elements[i].type == 'checkbox' && "
e0b57c62 1085 . " document." . $form_name . ".elements[i].name.substring(0,3) == 'msg'){\n"
3027826a 1086 . " document." . $form_name . ".elements[i].checked = "
1087 . " !(document." . $form_name . ".elements[i].checked);\n"
6a622b59 1088 . " }\n"
1089 . " }\n"
1090 . "}\n"
1091 . "//-->\n"
abafb676 1092 . '</script>'
c7df3f1b 1093 . '<input type="checkbox" name="toggleAll" title="'._("Toggle All").'" onclick="'.$func_name.'();" />';
abafb676 1094// . <a href="javascript:void(0)" onClick="' . $func_name . '();">' . _("Toggle All")
1095// . "</a>\n";
e35045b7 1096 } else {
6a622b59 1097 if (strpos($PHP_SELF, "?")) {
8cc8ec79 1098 $result .= "<a href=\"$PHP_SELF&amp;mailbox=" . urlencode($aMailbox['NAME'])
1099 . "&amp;startMessage=$aMailbox[PAGEOFFSET]&amp;sort=$aMailbox[SORT]&amp;checkall=";
6a622b59 1100 } else {
1101 $result .= "<a href=\"$PHP_SELF?mailbox=" . urlencode($mailbox)
8cc8ec79 1102 . "&amp;startMessage=$aMailbox[PAGEOFFSET]&amp;sort=$aMailbox[SORT]&amp;checkall=";
6a622b59 1103 }
1104 if (isset($checkall) && $checkall == '1') {
1105 $result .= '0';
1106 } else {
1107 $result .= '1';
1108 }
1109
8cc8ec79 1110 if (isset($aMailbox['SEARCH']) && $aMailbox['SEARCH'][0]) {
1111 $result .= '&amp;where=' . urlencode($aMailbox['SEARCH'][0])
1112 . '&amp;what=' . urlencode($aMailbox['SEARCH'][1]);
6a622b59 1113 }
1114 $result .= "\">";
98a9cc03 1115 $result .= _("All");
c7df3f1b 1116 $result .= "</a>\n";
e35045b7 1117 }
23d6bd09 1118
6a622b59 1119 /* Return our final result. */
1120 return ($result);
bdfb67f8 1121}
1a0e0983 1122
c7df3f1b 1123/**
0fdc2fb6 1124* This function computes the "Viewing Messages..." string.
1125*
1126* @param integer $start_msg first message number
1127* @param integer $end_msg last message number
1128* @param integer $num_msgs total number of message in folder
1129* @return string
1130*/
bdfb67f8 1131function get_msgcnt_str($start_msg, $end_msg, $num_msgs) {
6a622b59 1132 /* Compute the $msg_cnt_str. */
1133 $result = '';
1134 if ($start_msg < $end_msg) {
c7df3f1b 1135 $result = sprintf(_("Viewing Messages: %s to %s (%s total)"),
0fdc2fb6 1136 '<b>'.$start_msg.'</b>', '<b>'.$end_msg.'</b>', $num_msgs);
6a622b59 1137 } else if ($start_msg == $end_msg) {
c7df3f1b 1138 $result = sprintf(_("Viewing Message: %s (1 total)"), '<b>'.$start_msg.'</b>');
6a622b59 1139 } else {
c7df3f1b 1140 $result = '<br />';
6a622b59 1141 }
1142 /* Return our result string. */
1143 return ($result);
bdfb67f8 1144}
1145
c7df3f1b 1146/**
0fdc2fb6 1147* Generate a paginator link.
1148*
8cc8ec79 1149* @param mixed $box Mailbox name
1150* @param mixed $start_msg Message Offset
0fdc2fb6 1151* @param mixed $use
1152* @param string $text text used for paginator link
1153* @return string
1154*/
6c930ade 1155function get_paginator_link($box, $start_msg, $use, $text) {
e35045b7 1156
c7df3f1b 1157 $result = "<a href=\"right_main.php?use_mailbox_cache=$use"
6a622b59 1158 . "&amp;startMessage=$start_msg&amp;mailbox=$box\" "
c7df3f1b 1159 . ">$text</a>";
6a622b59 1160
6a622b59 1161 return ($result);
7b294953 1162}
1163
c7df3f1b 1164/**
0fdc2fb6 1165* This function computes the paginator string.
1166*
8cc8ec79 1167* @param string $box
1168* @param integer $start_msg
1169* @param integer $end_msg
0fdc2fb6 1170* @param integer $num_msgs
8cc8ec79 1171* @param integer $show_num
1172* @param integer $sort
0fdc2fb6 1173*/
6a622b59 1174function get_paginator_str($box, $start_msg, $end_msg, $num_msgs,
0fdc2fb6 1175 $show_num, $sort) {
dcc1cc82 1176 global $username, $data_dir, $use_mailbox_cache, $color, $PG_SHOWNUM;
6a622b59 1177
1178 /* Initialize paginator string chunks. */
1179 $prv_str = '';
1180 $nxt_str = '';
eac26493 1181 $pg_str = '';
6a622b59 1182 $all_str = '';
6a622b59 1183
1184 $box = urlencode($box);
8d4de56c 1185 $use = 0;
6a622b59 1186 /* Create simple strings that will be creating the paginator. */
1187 $spc = '&nbsp;'; /* This will be used as a space. */
1188 $sep = '|'; /* This will be used as a seperator. */
1189
1190 /* Get some paginator preference values. */
1191 $pg_sel = getPref($data_dir, $username, 'page_selector', SMPREF_ON);
1192 $pg_max = getPref($data_dir, $username, 'page_selector_max', PG_SEL_MAX);
1193
1194 /* Make sure that our start message number is not too big. */
1195 $start_msg = min($start_msg, $num_msgs);
1196
6a622b59 1197 /* Compute the starting message of the previous and next page group. */
1198 $next_grp = $start_msg + $show_num;
1199 $prev_grp = $start_msg - $show_num;
1200
1201 /* Compute the basic previous and next strings. */
1202 if (($next_grp <= $num_msgs) && ($prev_grp >= 0)) {
1203 $prv_str = get_paginator_link($box, $prev_grp, $use, _("Previous"));
1204 $nxt_str = get_paginator_link($box, $next_grp, $use, _("Next"));
1205 } else if (($next_grp > $num_msgs) && ($prev_grp >= 0)) {
1206 $prv_str = get_paginator_link($box, $prev_grp, $use, _("Previous"));
abafb676 1207 $nxt_str = _("Next");
6a622b59 1208 } else if (($next_grp <= $num_msgs) && ($prev_grp < 0)) {
abafb676 1209 $prv_str = _("Previous");
6a622b59 1210 $nxt_str = get_paginator_link($box, $next_grp, $use, _("Next"));
1211 }
1212
1213 /* Page selector block. Following code computes page links. */
8d4de56c 1214 if ($show_num != 0 && $pg_sel && ($num_msgs > $show_num)) {
6a622b59 1215 /* Most importantly, what is the current page!!! */
1216 $cur_pg = intval($start_msg / $show_num) + 1;
1217
1218 /* Compute total # of pages and # of paginator page links. */
1219 $tot_pgs = ceil($num_msgs / $show_num); /* Total number of Pages */
1220 $vis_pgs = min($pg_max, $tot_pgs - 1); /* Visible Pages */
1221
1222 /* Compute the size of the four quarters of the page links. */
1223
1224 /* If we can, just show all the pages. */
1225 if (($tot_pgs - 1) <= $pg_max) {
1226 $q1_pgs = $cur_pg - 1;
1227 $q2_pgs = $q3_pgs = 0;
1228 $q4_pgs = $tot_pgs - $cur_pg;
1229
e35045b7 1230 /* Otherwise, compute some magic to choose the four quarters. */
6a622b59 1231 } else {
1232 /*
0fdc2fb6 1233 * Compute the magic base values. Added together,
1234 * these values will always equal to the $pag_pgs.
1235 * NOTE: These are DEFAULT values and do not take
1236 * the current page into account. That is below.
1237 */
6a622b59 1238 $q1_pgs = floor($vis_pgs/4);
1239 $q2_pgs = round($vis_pgs/4, 0);
1240 $q3_pgs = ceil($vis_pgs/4);
1241 $q4_pgs = round(($vis_pgs - $q2_pgs)/3, 0);
1242
1243 /* Adjust if the first quarter contains the current page. */
1244 if (($cur_pg - $q1_pgs) < 1) {
1245 $extra_pgs = ($q1_pgs - ($cur_pg - 1)) + $q2_pgs;
1246 $q1_pgs = $cur_pg - 1;
1247 $q2_pgs = 0;
1248 $q3_pgs += ceil($extra_pgs / 2);
1249 $q4_pgs += floor($extra_pgs / 2);
1250
1251 /* Adjust if the first and second quarters intersect. */
1252 } else if (($cur_pg - $q2_pgs - ceil($q2_pgs/3)) <= $q1_pgs) {
1253 $extra_pgs = $q2_pgs;
176204a5 1254 $extra_pgs -= ceil(($cur_pg - $q1_pgs - 1) * 3/4);
1255 $q2_pgs = ceil(($cur_pg - $q1_pgs - 1) * 3/4);
6a622b59 1256 $q3_pgs += ceil($extra_pgs / 2);
1257 $q4_pgs += floor($extra_pgs / 2);
1258
1259 /* Adjust if the fourth quarter contains the current page. */
1260 } else if (($cur_pg + $q4_pgs) >= $tot_pgs) {
1261 $extra_pgs = ($q4_pgs - ($tot_pgs - $cur_pg)) + $q3_pgs;
1262 $q3_pgs = 0;
1263 $q4_pgs = $tot_pgs - $cur_pg;
1264 $q1_pgs += floor($extra_pgs / 2);
1265 $q2_pgs += ceil($extra_pgs / 2);
1266
1267 /* Adjust if the third and fourth quarter intersect. */
1268 } else if (($cur_pg + $q3_pgs + 1) >= ($tot_pgs - $q4_pgs + 1)) {
1269 $extra_pgs = $q3_pgs;
176204a5 1270 $extra_pgs -= ceil(($tot_pgs - $cur_pg - $q4_pgs) * 3/4);
1271 $q3_pgs = ceil(($tot_pgs - $cur_pg - $q4_pgs) * 3/4);
6a622b59 1272 $q1_pgs += floor($extra_pgs / 2);
1273 $q2_pgs += ceil($extra_pgs / 2);
1274 }
1275 }
e35045b7 1276
6a622b59 1277 /*
0fdc2fb6 1278 * I am leaving this debug code here, commented out, because
1279 * it is a really nice way to see what the above code is doing.
1280 * echo "qts = $q1_pgs/$q2_pgs/$q3_pgs/$q4_pgs = "
1281 * . ($q1_pgs + $q2_pgs + $q3_pgs + $q4_pgs) . '<br />';
1282 */
6a622b59 1283
1284 /* Print out the page links from the compute page quarters. */
1285
1286 /* Start with the first quarter. */
1287 if (($q1_pgs == 0) && ($cur_pg > 1)) {
1288 $pg_str .= "...$spc";
1289 } else {
1290 for ($pg = 1; $pg <= $q1_pgs; ++$pg) {
1291 $start = (($pg-1) * $show_num) + 1;
1292 $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
1293 }
1294 if ($cur_pg - $q2_pgs - $q1_pgs > 1) {
1295 $pg_str .= "...$spc";
1296 }
1297 }
1298
1299 /* Continue with the second quarter. */
1300 for ($pg = $cur_pg - $q2_pgs; $pg < $cur_pg; ++$pg) {
1301 $start = (($pg-1) * $show_num) + 1;
1302 $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
1303 }
1304
1305 /* Now print the current page. */
1306 $pg_str .= $cur_pg . $spc;
1307
1308 /* Next comes the third quarter. */
1309 for ($pg = $cur_pg + 1; $pg <= $cur_pg + $q3_pgs; ++$pg) {
1310 $start = (($pg-1) * $show_num) + 1;
1311 $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
1312 }
1313
1314 /* And last, print the forth quarter page links. */
1315 if (($q4_pgs == 0) && ($cur_pg < $tot_pgs)) {
1316 $pg_str .= "...$spc";
1317 } else {
1318 if (($tot_pgs - $q4_pgs) > ($cur_pg + $q3_pgs)) {
1319 $pg_str .= "...$spc";
1320 }
1321 for ($pg = $tot_pgs - $q4_pgs + 1; $pg <= $tot_pgs; ++$pg) {
1322 $start = (($pg-1) * $show_num) + 1;
1323 $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
1324 }
1325 }
1326 } else if ($PG_SHOWNUM == 999999) {
c7df3f1b 1327 $pg_str = "<a href=\"right_main.php?PG_SHOWALL=0"
6a622b59 1328 . "&amp;use_mailbox_cache=$use&amp;startMessage=1&amp;mailbox=$box\" "
c7df3f1b 1329 . ">" ._("Paginate") . '</a>';
6a622b59 1330 }
1331
6a622b59 1332 /* Put all the pieces of the paginator string together. */
1333 /**
0fdc2fb6 1334 * Hairy code... But let's leave it like it is since I am not certain
1335 * a different approach would be any easier to read. ;)
1336 */
6a622b59 1337 $result = '';
abafb676 1338 if ( $prv_str != '' || $nxt_str != '' )
1339 {
0fdc2fb6 1340 $result .= '[';
1341 $result .= ($prv_str != '' ? $prv_str . $spc . $sep . $spc : '');
1342 $result .= ($nxt_str != '' ? $nxt_str : '');
1343 $result .= ']' . $spc ;
1344
1345 /* Compute the 'show all' string. */
1346 $all_str = "<a href=\"right_main.php?PG_SHOWALL=1"
1347 . "&amp;use_mailbox_cache=$use&amp;startMessage=1&amp;mailbox=$box\" "
1348 . ">" . _("Show All") . '</a>';
abafb676 1349 }
eac26493 1350
1351 $result .= ($pg_str != '' ? $spc . '['.$spc.$pg_str.']' . $spc : '');
abafb676 1352 $result .= ($all_str != '' ? $spc . '['.$all_str.']' . $spc . $spc : '');
6a622b59 1353
1354 /* If the resulting string is blank, return a non-breaking space. */
1355 if ($result == '') {
1356 $result = '&nbsp;';
1357 }
e35045b7 1358
6a622b59 1359 /* Return our final magical paginator string. */
1360 return ($result);
bdfb67f8 1361}
1362
c7df3f1b 1363/**
0fdc2fb6 1364* FIXME: Undocumented function
1365*/
eaa4f45f 1366function truncateWithEntities($subject, $trim_at)
1367{
341aa42f 1368 $ent_strlen = strlen($subject);
1369 if (($trim_at <= 0) || ($ent_strlen <= $trim_at))
6a622b59 1370 return $subject;
eaa4f45f 1371
1372 global $languages, $squirrelmail_language;
6a622b59 1373
6a622b59 1374 /*
0fdc2fb6 1375 * see if this is entities-encoded string
1376 * If so, Iterate through the whole string, find out
1377 * the real number of characters, and if more
1378 * than $trim_at, substr with an updated trim value.
1379 */
341aa42f 1380 $trim_val = $trim_at;
1381 $ent_offset = 0;
1382 $ent_loc = 0;
a1440f89 1383 while ( $ent_loc < $trim_val && (($ent_loc = strpos($subject, '&', $ent_offset)) !== false) &&
1384 (($ent_loc_end = strpos($subject, ';', $ent_loc+3)) !== false) ) {
1385 $trim_val += ($ent_loc_end-$ent_loc);
6a622b59 1386 $ent_offset = $ent_loc_end+1;
1387 }
341aa42f 1388 if (($trim_val > $trim_at) && ($ent_strlen > $trim_val) && (strpos($subject,';',$trim_val) < ($trim_val + 6))) {
a1440f89 1389 $i = strpos($subject,';',$trim_val);
1390 if ($i) {
1391 $trim_val = strpos($subject,';',$trim_val);
1392 }
46a49f65 1393 }
341aa42f 1394 // only print '...' when we're actually dropping part of the subject
1395 if ($ent_strlen <= $trim_val)
6a622b59 1396 return $subject;
6a622b59 1397
1398 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
1399 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
1400 return $languages[$squirrelmail_language]['XTRA_CODE']('strimwidth', $subject, $trim_val);
1401 }
ecaf6352 1402
341aa42f 1403 return substr_replace($subject, '...', $trim_val);
bdfb67f8 1404}
f93c93b9 1405
c7df3f1b 1406/**
0fdc2fb6 1407* FIXME: Undocumented function
1408*/
eaa4f45f 1409function processSubject($subject, $threadlevel = 0) {
1410 /* Shouldn't ever happen -- caught too many times in the IMAP functions */
1411 if ($subject == '') {
1412 return _("(no subject)");
1413 }
1414
3fc1a95f 1415 global $truncate_subject; /* number of characters for Subject field (<= 0 for unchanged) */
1416 $trim_at = $truncate_subject;
eaa4f45f 1417
1418 /* if this is threaded, subtract two chars per indentlevel */
1419 if (($threadlevel > 0) && ($threadlevel <= 10))
1420 $trim_at -= (2*$threadlevel);
1421
1422 return truncateWithEntities($subject, $trim_at);
1423}
1424
c7df3f1b 1425/**
0fdc2fb6 1426* FIXME: Undocumented function
1427*
1428* @param mixed $imapConnection
1429* @param mixed $boxes
1430*/
26454147 1431function getMbxList($imapConnection, $boxes = 0) {
6a622b59 1432 global $lastTargetMailbox;
1433 echo ' <small>&nbsp;<tt><select name="targetMailbox">';
4669e892 1434 echo sqimap_mailbox_option_list($imapConnection, array(strtolower($lastTargetMailbox)), 0, $boxes);
c7df3f1b 1435 echo ' </select></tt>&nbsp;';
e9e5f0fa 1436}
1437
c7df3f1b 1438/**
0fdc2fb6 1439* Creates button
1440*
1441* @deprecated see form functions available in 1.5.1 and 1.4.3.
1442* @param string $type
1443* @param string $name
1444* @param string $value
1445* @param string $js
1446* @param bool $enabled
1447*/
1a531551 1448function getButton($type, $name, $value, $js = '', $enabled = TRUE) {
98a9cc03 1449 $disabled = ( $enabled ? '' : 'disabled ' );
1a531551 1450 $js = ( $js ? $js.' ' : '' );
c7df3f1b 1451 return '<input '.$disabled.$js.
0fdc2fb6 1452 'type="'.$type.
1453 '" name="'.$name.
c7df3f1b 1454 '" value="'.$value .
1455 '" style="padding: 0px; margin: 0px" />';
e9e5f0fa 1456}
1457
c7df3f1b 1458/**
0fdc2fb6 1459* Puts string into cell, aligns it and adds <small> tag
1460*
1461* @param string $string string
1462* @param string $align alignment
1463*/
e9e5f0fa 1464function getSmallStringCell($string, $align) {
6a622b59 1465 return html_tag('td',
1466 '<small>' . $string . ':&nbsp; </small>',
1467 $align,
1468 '',
1469 'nowrap' );
e9e5f0fa 1470}
1471
c7df3f1b 1472/**
0fdc2fb6 1473* This should go in imap_mailbox.php
1474* @param string $mailbox
1475*/
a3439b27 1476function handleAsSent($mailbox) {
6a8e7cae 1477 global $handleAsSent_result;
4669e892 1478
6a622b59 1479 /* First check if this is the sent or draft folder. */
6a8e7cae 1480 $handleAsSent_result = isSentMailbox($mailbox) || isDraftMailbox($mailbox);
a3439b27 1481
6a622b59 1482 /* Then check the result of the handleAsSent hook. */
1483 do_hook('check_handleAsSent_result', $mailbox);
a3439b27 1484
6a622b59 1485 /* And return the result. */
6a8e7cae 1486 return $handleAsSent_result;
6a622b59 1487}
e842b215 1488
b531f8ea 1489?>