Another minor fix to get auto-clicking on rows on mailbox list working
[squirrelmail.git] / functions / mailbox_display.php
1 <?php
2
3 /**
4 * mailbox_display.php
5 *
6 * Copyright (c) 1999-2005 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 *
12 * @version $Id$
13 * @package squirrelmail
14 */
15
16 /** The standard includes.. */
17 require_once(SM_PATH . 'functions/strings.php');
18 require_once(SM_PATH . 'functions/html.php');
19 require_once(SM_PATH . 'class/html.class.php');
20 require_once(SM_PATH . 'functions/imap_mailbox.php');
21 require_once(SM_PATH . 'functions/imap_messages.php');
22 require_once(SM_PATH . 'functions/imap_asearch.php');
23 require_once(SM_PATH . 'functions/mime.php');
24 require_once(SM_PATH . 'functions/forms.php');
25
26 /**
27 * default value for page_selector_max
28 */
29 define('PG_SEL_MAX', 10);
30
31 /**
32 * The number of pages to cache msg headers
33 */
34 define('SQM_MAX_PAGES_IN_CACHE',5);
35
36 /**
37 * Sort constants used for sorting of messages
38 */
39 define('SQSORT_NONE',0);
40 define('SQSORT_DATE_ASC',1);
41 define('SQSORT_DATE_DEC',2);
42 define('SQSORT_FROM_ASC',3);
43 define('SQSORT_FROM_DEC',4);
44 define('SQSORT_SUBJ_ASC',5);
45 define('SQSORT_SUBJ_DEC',6);
46 define('SQSORT_SIZE_ASC',7);
47 define('SQSORT_SIZE_DEC',8);
48 define('SQSORT_TO_ASC',9);
49 define('SQSORT_TO_DEC',10);
50 define('SQSORT_CC_ASC',11);
51 define('SQSORT_CC_DEC',12);
52 define('SQSORT_INT_DATE_ASC',13);
53 define('SQSORT_INT_DATE_DEC',14);
54
55 define('SQSORT_THREAD',32);
56
57
58 define('MBX_PREF_SORT',0);
59 define('MBX_PREF_LIMIT',1);
60 define('MBX_PREF_AUTO_EXPUNGE',2);
61 define('MBX_PREF_INTERNALDATE',3);
62 define('SQM_MAX_MBX_IN_CACHE',3);
63 // define('MBX_PREF_FUTURE',unique integer key);
64
65 /**
66 * @param mixed $start UNDOCUMENTED
67 */
68 function elapsed($start) {
69
70 $end = microtime();
71 list($start2, $start1) = explode(" ", $start);
72 list($end2, $end1) = explode(" ", $end);
73 $diff1 = $end1 - $start1;
74 $diff2 = $end2 - $start2;
75 if( $diff2 < 0 ){
76 $diff1 -= 1;
77 $diff2 += 1.0;
78 }
79 return $diff2 + $diff1;
80 }
81
82 /**
83 * Displays message header row in messages list
84 *
85 * @param array $aMsg contains all message related parameters
86 * @return void
87 */
88
89 function printMessageInfo($aMsg) {
90 // FIX ME, remove these globals as well by adding an array as argument for the user settings
91 // specificly meant for header display
92 global $checkall,
93 $color,
94 $default_use_priority,
95 $message_highlight_list,
96 $index_order,
97 $truncate_sender, /* number of characters for From/To field (<= 0 for unchanged) */
98 $email_address,
99 $show_recipient_instead, /* show recipient name instead of default identity */
100 $use_icons, /* indicates to use icons or text markers */
101 $icon_theme, /* icons theming */
102 $javascript_on;
103
104 $color_string = $color[4];
105
106 // initialisation:
107 $mailbox = $aMsg['MAILBOX'];
108 $msg = $aMsg['HEADER'];
109 $t = $aMsg['INDX'];
110 $start_msg = $aMsg['PAGEOFFSET'];
111 $last = $aMsg['LAST'];
112 if (isset($aMsg['SEARCH']) && count($aMsg['SEARCH']) >1 ) {
113 $where = $aMsg['SEARCH'][0];
114 $what = $aMsg['SEARCH'][1];
115 } else {
116 $where = false;
117 $what = false;
118 }
119 $iIndent = $aMsg['INDENT'];
120
121 $sSubject = (isset($msg['SUBJECT']) && $msg['SUBJECT'] != '') ? $msg['SUBJECT'] : _("(no subject)");
122 $sFrom = (isset($msg['FROM'])) ? $msg['FROM'] : _("Unknown sender");
123 $sTo = (isset($msg['TO'])) ? $msg['TO'] : _("Unknown recipient");
124 $sCc = (isset($msg['CC'])) ? $msg['CC'] : '';
125 $aFlags = (isset($msg['FLAGS'])) ? $msg['FLAGS'] : array();
126 $iPrio = (isset($msg['PRIORITY'])) ? $msg['PRIORITY'] : 3;
127 $iSize = (isset($msg['SIZE'])) ? $msg['SIZE'] : 0;
128
129 // These don't appear to be used... are they safe to remove
130 $sType0 = (isset($msg['TYPE0'])) ? $msg['TYPE0'] : 'text';
131 $sType1 = (isset($msg['TYPE1'])) ? $msg['TYPE1'] : 'plain';
132 if (isset($msg['INTERNALDATE'])) {
133 $sDate = getDateString(getTimeStamp(explode(' ',$msg['INTERNALDATE'])));
134 } else {
135 $sDate = (isset($msg['DATE'])) ? getDateString(getTimeStamp(explode(' ',$msg['DATE']))) : '';
136 }
137 $iId = (isset($msg['UID'])) ? $msg['UID'] : false;
138
139 if (!$iId) {
140 return;
141 }
142
143 if ($GLOBALS['alt_index_colors']) {
144 if (!($t % 2)) {
145 if (!isset($color[12])) {
146 $color[12] = '#EAEAEA';
147 }
148 $color_string = $color[12];
149 }
150 }
151
152 $urlMailbox = urlencode($mailbox);
153
154 // FIXME, foldertype should be set in right_main.php
155 // in other words, handle as sent is obsoleted from now.
156 // We replace that by providing an array to aMailbox with the to shown headers
157 // that way we are free to show the user different layouts for different folders
158 $bSentFolder = handleAsSent($mailbox);
159 if ((!$bSentFolder) && ($show_recipient_instead)) {
160 // If the From address is the same as $email_address, then handle as Sent
161 $from_array = parseAddress($sFrom, 1);
162 if (!isset($email_address)) {
163 global $data_dir, $username;
164 $email_address = getPref($data_dir, $username, 'email_address');
165 }
166 $bHandleAsSent = ((isset($from_array[0][0])) && ($from_array[0][0] == $email_address));
167 } else {
168 $bHandleAsSent = $bSentFolder;
169 }
170 // If this is a Sent message, display To address instead of From
171 if ($bHandleAsSent) {
172 $sFrom = $sTo;
173 }
174 // Passing 1 below results in only 1 address being parsed, thus defeating the following code
175 $sFrom = parseAddress($sFrom/*,1*/);
176
177 /*
178 * This is done in case you're looking into Sent folders,
179 * because you can have multiple receivers.
180 */
181 $senderNames = $sFrom;
182 $senderName = '';
183 $senderAddress = '';
184 if (sizeof($senderNames)){
185 foreach ($senderNames as $senderNames_part) {
186 if ($senderName != '') {
187 $senderName .= ', ';
188 $senderAddress .= ', ';
189 }
190 $sender_address_part = htmlspecialchars($senderNames_part[0]);
191 $sender_name_part = str_replace('&nbsp;',' ', decodeHeader($senderNames_part[1]));
192 if ($sender_name_part) {
193 $senderName .= $sender_name_part;
194 $senderAddress .= $sender_name_part . ' <' . $sender_address_part . '>';
195 } else {
196 $senderName .= $sender_address_part;
197 $senderAddress .= $sender_address_part;
198 }
199 }
200 }
201 // If Sent, prefix with To: but only if not Sent folder
202 if ($bHandleAsSent ^ $bSentFolder) {
203 $senderName = _("To") . ': ' . $senderName;
204 $senderAddress = _("To") . ': ' . $senderAddress;
205 }
206
207 // this is a column property which can apply to multiple columns. Do not use vars for one column
208 // only. instead we should use something like this:
209 // 1ed column $aMailbox['columns']['SUBJECT'] value: aray with properties ...
210 // 2ed column $aMailbox['columns']['FROM'] value: aray with properties ...
211 // NB in case of the sentfolder this could be the TO field
212 // properties array example:
213 // 'truncate' => length (0 is no truncate)
214 // 'prefix => if (x in b then do that )
215 if ($truncate_sender > 0) {
216 $senderName = truncateWithEntities($senderName, $truncate_sender);
217 }
218
219 $flag = $flag_end = $fontstr = $fontstr_end = $italic = $italic_end = '';
220 $bold = '<b>';
221 $bold_end = '</b>';
222
223 foreach ($aFlags as $sFlag => $value) {
224 switch ($sFlag) {
225 case '\\flagged':
226 if ($value) {
227 $flag = "<font color=\"$color[2]\">";
228 $flag_end = '</font>';
229 }
230 break;
231 case '\\seen':
232 if ($value) {
233 $bold = '';
234 $bold_end = '';
235 }
236 break;
237 case '\\deleted':
238 if ($value) {
239 $fontstr = "<font color=\"$color[9]\">";
240 $fontstr_end = '</font>';
241 }
242 break;
243 }
244 }
245 if ($bHandleAsSent) {
246 $italic = '<i>';
247 $italic_end = '</i>';
248 }
249
250 if ($where && $what) {
251 $searchstr = '&amp;where='.$where.'&amp;what='.$what;
252 } else {
253 $searchstr = '';
254 }
255 /*
256 * Message highlight code
257 */
258 $matches = array('TO' => 'sTo', 'CC' => 'sCc', 'FROM' => 'sFrom', 'SUBJECT' => 'sSubject');
259 if (is_array($message_highlight_list) && count($message_highlight_list)) {
260 $sTo = parseAddress($sTo);
261 $sCc = parseAddress($sCc);
262 foreach ($message_highlight_list as $message_highlight_list_part) {
263 if (trim($message_highlight_list_part['value']) != '') {
264 $high_val = strtolower($message_highlight_list_part['value']);
265 $match_type = strtoupper($message_highlight_list_part['match_type']);
266 if($match_type == 'TO_CC') {
267 $match = array('TO', 'CC');
268 } else {
269 $match = array($match_type);
270 }
271 foreach($match as $match_type) {
272 switch($match_type) {
273 case('TO'):
274 case('CC'):
275 case('FROM'):
276 foreach ($$matches[$match_type] as $address) {
277 $address[0] = decodeHeader($address[0], true, false);
278 $address[1] = decodeHeader($address[1], true, false);
279 if (strstr('^^' . strtolower($address[0]), $high_val) ||
280 strstr('^^' . strtolower($address[1]), $high_val)) {
281 $hlt_color = $message_highlight_list_part['color'];
282 break 4;
283 }
284 }
285 break;
286 default:
287 $headertest = strtolower(decodeHeader($$matches[$match_type], true, false));
288 if (strstr('^^' . $headertest, $high_val)) {
289 $hlt_color = $message_highlight_list_part['color'];
290 break 3;
291 }
292 break;
293 }
294 }
295 }
296 }
297 } /* end Message highlight code */
298
299 if (!isset($hlt_color)) {
300 $hlt_color = $color_string;
301 }
302 $col = 0;
303 $sSubject = str_replace('&nbsp;', ' ', decodeHeader($sSubject));
304 $subject = processSubject($sSubject, $iIndent);
305
306
307 $row_extra = 'valign="top"';
308
309
310 // this stuff does the auto row highlighting on mouseover
311 //
312 if ($javascript_on) {
313 $mouseoverColor = $color[5];
314 $clickedColor = $color[2];
315 $row_extra .= ' onmouseover="setPointer(this, ' . $t . ', \'over\', \'' . $hlt_color . '\', \'' . $mouseoverColor . '\', \'' . $clickedColor . '\');" onmouseout="setPointer(this, ' . $t . ', \'out\', \'' . $hlt_color . '\', \'' . $mouseoverColor . '\', \'' . $clickedColor . '\');" onmousedown="setPointer(this, ' . $t . ', \'click\', \'' . $hlt_color . '\', \'' . $mouseoverColor . '\', \'' . $clickedColor . '\');"';
316 }
317
318
319 echo html_tag( 'tr','','','',$row_extra) . "\n";
320
321
322 // this does the auto-checking of the checkbox no matter
323 // where on the row you click
324 //
325 if ($javascript_on)
326 $javascript_auto_click = ' onMouseDown="if (document.getElementById(\'msg[' . $t . ']\')) { document.getElementById(\'msg[' . $t . ']\').checked = (document.getElementById(\'msg[' . $t . ']\').checked ? false : true); }"';
327
328
329 if (sizeof($index_order)) {
330
331 // figure out which columns should serve as labels for checkbox:
332 // we try to grab the two columns before and after the checkbox,
333 // except the subject column, since it is the link that opens
334 // the message view
335 //
336 // if $javascript_on is set, then the highlighting code takes
337 // care of this; just skip it
338 //
339 $show_label_columns = array();
340 if (!$javascript_on) {
341 $get_next_two = 0;
342 $last_order_part = 0;
343 $last_last_order_part = 0;
344 foreach ($index_order as $index_order_part) {
345
346 if ($index_order_part == 1) {
347 $get_next_two = 1;
348 if ($last_last_order_part != 4)
349 $show_label_columns[] = $last_last_order_part;
350 if ($last_order_part != 4)
351 $show_label_columns[] = $last_order_part;
352
353 } else if ($get_next_two > 0 && $get_next_two < 3 && $index_order_part != 4) {
354 $show_label_columns[] = $index_order_part;
355 $get_next_two++;
356 }
357 $last_last_order_part = $last_order_part;
358 $last_order_part = $index_order_part;
359 }
360 }
361
362
363 // build the actual columns for display
364 //
365 foreach ($index_order as $index_order_part) {
366 if (in_array($index_order_part, $show_label_columns)) {
367 $label_start = '<label for="msg[' . $t . ']">';
368 $label_end = '</label>';
369 } else {
370 $label_start = '';
371 $label_end = '';
372 }
373 switch ($index_order_part) {
374 case 1: /* checkbox */
375 echo html_tag( 'td',
376 addCheckBox("msg[$t]", $checkall, $iId),
377 'center',
378 $hlt_color );
379 break;
380 case 2: /* from */
381 if ($senderAddress != $senderName) {
382 $senderAddress = strtr($senderAddress, array_flip(get_html_translation_table(HTML_SPECIALCHARS)));
383 $title = ' title="' . str_replace(array('"', '<', '>'), array("''", '&lt;', '&gt;'), $senderAddress) . '"';
384 } else {
385 $title = '';
386 }
387 echo html_tag( 'td',
388 $label_start . $italic . $bold . $flag . $fontstr . $senderName .
389 $fontstr_end . $flag_end . $bold_end . $italic_end . $label_end,
390 'left',
391 $hlt_color, $title . $javascript_auto_click);
392 break;
393 case 3: /* date */
394 if ($sDate == '') {
395 $sDate = _("Unknown date");
396 }
397 echo html_tag( 'td',
398 $label_start . $bold . $flag . $fontstr . $sDate .
399 $fontstr_end . $flag_end . $bold_end . $label_end,
400 'center',
401 $hlt_color,
402 'style="white-space: nowrap;"' . $javascript_auto_click );
403 break;
404 case 4: /* subject */
405 $td_str = $bold;
406 if ($iIndent) {
407 $td_str .= str_repeat("&nbsp;&nbsp;&nbsp;&nbsp;",$iIndent);
408 }
409 $td_str .= '<a href="read_body.php?mailbox='.$urlMailbox
410 . '&amp;passed_id='. $iId
411 . '&amp;startMessage='.$start_msg.$searchstr.'"';
412 $td_str .= ' ' .concat_hook_function('subject_link', array($start_msg, $searchstr));
413 if ($subject != $sSubject) {
414 $title = get_html_translation_table(HTML_SPECIALCHARS);
415 $title = array_flip($title);
416 $title = strtr($sSubject, $title);
417 $title = str_replace(array('"', '<', '>'), array("''", '&lt;', '&gt;'), $title);
418 $td_str .= " title=\"$title\"";
419 }
420 $td_str .= ">$flag$subject$flag_end</a>$bold_end";
421 echo html_tag( 'td', $td_str, 'left', $hlt_color, $javascript_auto_click );
422 break;
423 case 5: /* flags */
424
425 // icon message markers
426 //
427 if ($use_icons && $icon_theme != 'none') {
428 $td_str = "<b><small>";
429 if (isset($aFlags['\\flagged']) && $aFlags['\\flagged'] == true) {
430 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/flagged.png" border="0" height="10" width="10" /> ';
431 }
432 if ($default_use_priority) {
433 if ( ($iPrio == 1) || ($iPrio == 2) ) {
434 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/prio_high.png" border="0" height="10" width="5" /> ';
435 }
436 else if ($iPrio == 5) {
437 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/prio_low.png" border="0" height="10" width="5" /> ';
438 }
439 else {
440 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/transparent.png" border="0" width="5" /> ';
441 }
442 }
443 if ($sType1 == 'mixed') {
444 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/attach.png" border="0" height="10" width="6" />';
445 } else {
446 $td_str .= '<img src="' . SM_PATH . 'images/themes/' . $icon_theme . '/transparent.png" border="0" width="6" />';
447 }
448
449 $msg_icon = '';
450 if (!isset($aFlags['\\seen']) || ($aFlags['\\seen']) == false) {
451 $msg_alt = '(' . _("New") . ')';
452 $msg_title = '(' . _("New") . ')';
453 $msg_icon .= SM_PATH . 'images/themes/' . $icon_theme . '/msg_new';
454 } else {
455 $msg_alt = '(' . _("Read") . ')';
456 $msg_title = '(' . _("Read") . ')';
457 $msg_icon .= SM_PATH . 'images/themes/' . $icon_theme . '/msg_read';
458 }
459 if (isset($aFlags['\\deleted']) && ($aFlags['\\deleted']) == true) {
460 $msg_icon .= '_deleted';
461 }
462 if (isset($aFlags['\\answered']) && ($aFlags['\\answered']) == true) {
463 $msg_alt = '(' . _("Answered") . ')';
464 $msg_title = '(' . _("Answered") . ')';
465 $msg_icon .= '_reply';
466 }
467 $td_str .= '<img src="' . $msg_icon . '.png" border="0" alt="'. $msg_alt . '" title="' . $msg_title . '" height="12" width="18" />';
468 $td_str .= '</small></b>';
469 echo html_tag( 'td',
470 $label_start . $td_str . $label_end,
471 'right',
472 $hlt_color,
473 'style="white-space: nowrap;"' . $javascript_auto_click );
474 }
475
476 // plain text message markers
477 //
478 else {
479 $stuff = false;
480 $td_str = "<b><small>";
481 if (isset($aFlags['\\answered']) && $aFlags['\\answered'] == true) {
482 $td_str .= _("A");
483 $stuff = true;
484 }
485 if ($sType1 == 'mixed') {
486 $td_str .= '+';
487 $stuff = true;
488 }
489 if ($default_use_priority) {
490 if ( ($iPrio == 1) || ($iPrio == 2) ) {
491 $td_str .= "<font color=\"$color[1]\">!</font>";
492 $stuff = true;
493 }
494 if ($iPrio == 5) {
495 $td_str .= "<font color=\"$color[8]\">?</font>";
496 $stuff = true;
497 }
498 }
499 if (isset($aFlags['\\deleted']) && $aFlags['\\deleted'] == true) {
500 $td_str .= "<font color=\"$color[1]\">D</font>";
501 $stuff = true;
502 }
503 if (!$stuff) {
504 $td_str .= '&nbsp;';
505 }
506 $td_str .= '</small></b>';
507 echo html_tag( 'td',
508 $label_start . $td_str . $label_end,
509 'center',
510 $hlt_color,
511 'style="white-space: nowrap;"' . $javascript_auto_click );
512 }
513 break;
514 case 6: /* size */
515 echo html_tag( 'td',
516 $label_start . $bold . $fontstr . show_readable_size($iSize) .
517 $fontstr_end . $bold_end . $label_end,
518 'right',
519 $hlt_color, $javascript_auto_click );
520 break;
521 }
522 ++$col;
523 }
524 }
525 /* html for separationlines between rows */
526 if ($last) {
527 echo '</tr>'."\n";
528 } else {
529 echo '</tr>' . "\n" . '<tr><td colspan="' . $col . '" bgcolor="' .
530 $color[0] . '" height="1"></td></tr>' . "\n";
531 }
532 }
533
534
535 function setUserPref($username, $pref, $value) {
536 global $data_dir;
537 setPref($data_dir,$username,$pref,$value);
538 }
539
540 /**
541 * Selects a mailbox for header retrieval.
542 * Cache control for message headers is embedded.
543 *
544 * @param resource $imapConnection imap socket handle
545 * @param string $mailbox mailbox to select and retrieve message headers from
546 * @param array $aConfig array with system config settings and incoming vars
547 * @param array $aProps mailbox specific properties
548 * @return array $aMailbox mailbox array with all relevant information
549 * @author Marc Groot Koerkamp
550 */
551 function sqm_api_mailbox_select($imapConnection,$mailbox,$aConfig,$aProps) {
552 /**
553 * NB: retrieve this from the session before accessing this function
554 * and make sure you write it back at the end of the script after
555 * the aMailbox var is added so that the headers are added to the cache
556 */
557 global $mailbox_cache;
558 /**
559 * In case the properties arrays are empty set the defaults.
560 */
561 // Doesn't appear to be used... safe to remove?
562 $aDefaultMbxPref = array ();
563 // MBX_PREF_SORT => 0,
564 // MBX_PREF_LIMIT => 15,
565 // MBX_PREF_AUTO_EXPUNGE => 0,
566 // MBX_PREF_INTERNALDATE => 0
567 // );
568 /* array_merge doesn't work with integers as keys */
569 // foreach ($aDefaultMbxPref as $key => $value) {
570 // if (!isset($aProps[$key])) {
571 // $aProps[$key] = $value;
572 // }
573 // }
574 $aDefaultConfigProps = array(
575 // 'allow_thread_sort' => 0,
576 'allow_server_sort' => sqimap_capability($imapConnection,'SORT'),
577 // 'charset' => 'US-ASCII',
578 'user' => false, /* no pref storage if false */
579 'setindex' => 0,
580 // 'search' => 'ALL',
581 'max_cache_size' => SQM_MAX_MBX_IN_CACHE
582 );
583
584 $aConfig = array_merge($aDefaultConfigProps,$aConfig);
585 $iSetIndx = $aConfig['setindex'];
586
587 $aMbxResponse = sqimap_mailbox_select($imapConnection, $mailbox);
588
589 if ($mailbox_cache) {
590 if (isset($mailbox_cache[$mailbox])) {
591 $aCachedMailbox = $mailbox_cache[$mailbox];
592 } else {
593 $aCachedMailbox = false;
594 }
595 /* cleanup cache */
596 if (count($mailbox_cache) > $aConfig['max_cache_size'] -1) {
597 $aTime = array();
598 foreach($mailbox_cache as $cachedmailbox => $aVal) {
599 $aTime[$aVal['TIMESTAMP']] = $cachedmailbox;
600 }
601 if (ksort($aTime,SORT_NUMERIC)) {
602 for ($i=0,$iCnt=count($mailbox_cache);$i<($iCnt-$aConfig['max_cache_size']);++$i) {
603 $sOldestMbx = array_shift($aTime);
604 /**
605 * Remove only the UIDSET and MSG_HEADERS from cache because those can
606 * contain large amounts of data.
607 */
608 if (isset($mailbox_cache[$sOldestMbx]['UIDSET'])) {
609 $mailbox_cache[$sOldestMbx]['UIDSET']= false;
610 }
611 if (isset($mailbox_cache[$sOldestMbx]['MSG_HEADERS'])) {
612 $mailbox_cache[$sOldestMbx]['MSG_HEADERS'] = false;
613 }
614 }
615 }
616 }
617
618 } else {
619 $aCachedMailbox = false;
620 }
621
622 /**
623 * Deal with imap servers that do not return the required UIDNEXT or
624 * UIDVALIDITY response
625 * from a SELECT call (since rfc 3501 it's required).
626 */
627 if (!isset($aMbxResponse['UIDNEXT']) || !isset($aMbxResponse['UIDVALIDITY'])) {
628 $aStatus = sqimap_status_messages($imapConnection,$mailbox,
629 array('UIDNEXT','UIDVALIDITY'));
630 $aMbxResponse['UIDNEXT'] = $aStatus['UIDNEXT'];
631 $aMbxResponse['UIDVALIDTY'] = $aStatus['UIDVALIDITY'];
632 }
633
634 $aMailbox['UIDSET'][$iSetIndx] = false;
635 $aMailbox['ID'] = false;
636 $aMailbox['SETINDEX'] = $iSetIndx;
637
638 if ($aCachedMailbox) {
639 /**
640 * Validate integrity of cached data
641 */
642 if ($aCachedMailbox['EXISTS'] == $aMbxResponse['EXISTS'] &&
643 $aMbxResponse['EXISTS'] &&
644 $aCachedMailbox['UIDVALIDITY'] == $aMbxResponse['UIDVALIDITY'] &&
645 $aCachedMailbox['UIDNEXT'] == $aMbxResponse['UIDNEXT'] &&
646 isset($aCachedMailbox['SEARCH'][$iSetIndx]) &&
647 (!isset($aConfig['search']) || /* always set search from the searchpage */
648 $aCachedMailbox['SEARCH'][$iSetIndx] == $aConfig['search'])) {
649 if (isset($aCachedMailbox['MSG_HEADERS'])) {
650 $aMailbox['MSG_HEADERS'] = $aCachedMailbox['MSG_HEADERS'];
651 }
652 $aMailbox['ID'] = $aCachedMailbox['ID'];
653 if (isset($aCachedMailbox['UIDSET'][$iSetIndx]) && $aCachedMailbox['UIDSET'][$iSetIndx]) {
654 if (isset($aProps[MBX_PREF_SORT]) && $aProps[MBX_PREF_SORT] != $aCachedMailbox['SORT'] ) {
655 $newsort = $aProps[MBX_PREF_SORT];
656 $oldsort = $aCachedMailbox['SORT'];
657 /**
658 * If it concerns a reverse sort we do not need to invalidate
659 * the cached sorted UIDSET, a reverse is sufficient.
660 */
661 if ((($newsort % 2) && ($newsort + 1 == $oldsort)) ||
662 (!($newsort % 2) && ($newsort - 1 == $oldsort))) {
663 $aMailbox['UIDSET'][$iSetIndx] = array_reverse($aCachedMailbox['UIDSET'][$iSetIndx]);
664 } else {
665 $aMailbox['MSG_HEADERS'] = false;
666 $aMailbox['ID'] = false;
667 }
668 // store the new sort value in the mailbox pref
669 if ($aConfig['user']) {
670 // FIXME, in ideal situation, we write back the
671 // prefs at the end of the script
672 setUserPref($aConfig['user'],"pref_$mailbox",serialize($aProps));
673 }
674 } else {
675 $aMailbox['UIDSET'][$iSetIndx] = $aCachedMailbox['UIDSET'][$iSetIndx];
676 }
677 }
678 }
679 }
680 /**
681 * Restore the offset in the paginator if no new offset is provided.
682 */
683 if (isset($aMailbox['UIDSET'][$iSetIndx]) && !isset($aConfig['offset']) && $aCachedMailbox['OFFSET']) {
684 $aMailbox['OFFSET'] = $aCachedMailbox['OFFSET'];
685 $aMailbox['PAGEOFFSET'] = $aCachedMailbox['PAGEOFFSET'];
686 } else {
687 $aMailbox['OFFSET'] = (isset($aConfig['offset']) && $aConfig['offset']) ? $aConfig['offset'] -1 : 0;
688 $aMailbox['PAGEOFFSET'] = (isset($aConfig['offset']) && $aConfig['offset']) ? $aConfig['offset'] : 1;
689 }
690
691 /**
692 * Restore the showall value no new showall value is provided.
693 */
694 if (isset($aMailbox['UIDSET'][$iSetIndx]) && !isset($aConfig['showall']) &&
695 isset($aCachedMailbox['SHOWALL'][$iSetIndx]) && $aCachedMailbox['SHOWALL'][$iSetIndx]) {
696 $aMailbox['SHOWALL'][$iSetIndx] = $aCachedMailbox['SHOWALL'][$iSetIndx];
697 } else {
698 $aMailbox['SHOWALL'][$iSetIndx] = (isset($aConfig['showall']) && $aConfig['showall']) ? 1 : 0;
699 }
700
701 if (!isset($aProps[MBX_PREF_SORT]) && isset($aCachedMailbox['SORT'])) {
702 $aMailbox['SORT'] = $aCachedMailbox['SORT'];
703 } else {
704 $aMailbox['SORT'] = (isset($aProps[MBX_PREF_SORT])) ? $aProps[MBX_PREF_SORT] : 0;
705 }
706
707 if (!isset($aProps[MBX_PREF_LIMIT]) && isset($aCachedMailbox['LIMIT'])) {
708 $aMailbox['LIMIT'] = $aCachedMailbox['LIMIT'];
709 } else {
710 $aMailbox['LIMIT'] = (isset($aProps[MBX_PREF_LIMIT])) ? $aProps[MBX_PREF_LIMIT] : 15;
711 }
712
713 if (!isset($aProps[MBX_PREF_INTERNALDATE]) && isset($aCachedMailbox['INTERNALDATE'])) {
714 $aMailbox['INTERNALDATE'] = $aCachedMailbox['INTERNALDATE'];
715 } else {
716 $aMailbox['INTERNALDATE'] = (isset($aProps[MBX_PREF_INTERNALDATE])) ? $aProps[MBX_PREF_INTERNALDATE] : false;
717 }
718
719 if (!isset($aProps[MBX_PREF_AUTO_EXPUNGE]) && isset($aCachedMailbox['AUTO_EXPUNGE'])) {
720 $aMailbox['AUTO_EXPUNGE'] = $aCachedMailbox['AUTO_EXPUNGE'];
721 } else {
722 $aMailbox['AUTO_EXPUNGE'] = (isset($aProps[MBX_PREF_AUTO_EXPUNGE])) ? $aProps[MBX_PREF_AUTO_EXPUNGE] : false;
723 }
724
725 if (!isset($aConfig['allow_thread_sort']) && isset($aCachedMailbox['ALLOW_THREAD'])) {
726 $aMailbox['ALLOW_THREAD'] = $aCachedMailbox['ALLOW_THREAD'];
727 } else {
728 $aMailbox['ALLOW_THREAD'] = (isset($aConfig['allow_thread_sort'])) ? $aConfig['allow_thread_sort'] : false;
729 }
730
731 if (!isset($aConfig['search']) && isset($aCachedMailbox['SEARCH'][$iSetIndx])) {
732 $aMailbox['SEARCH'][$iSetIndx] = $aCachedMailbox['SEARCH'][$iSetIndx];
733 } else {
734 $aMailbox['SEARCH'][$iSetIndx] = (isset($aConfig['search'])) ? $aConfig['search'] : 'ALL';
735 }
736
737 if (!isset($aConfig['charset']) && isset($aCachedMailbox['CHARSET'][$iSetIndx])) {
738 $aMailbox['CHARSET'][$iSetIndx] = $aCachedMailbox['CHARSET'][$iSetIndx];
739 } else {
740 $aMailbox['CHARSET'][$iSetIndx] = (isset($aConfig['charset'])) ? $aConfig['charset'] : 'US-ASCII';
741 }
742
743 $aMailbox['NAME'] = $mailbox;
744 $aMailbox['EXISTS'] = $aMbxResponse['EXISTS'];
745 $aMailbox['SEEN'] = (isset($aMbxResponse['SEEN'])) ? $aMbxResponse['SEEN'] : $aMbxResponse['EXISTS'];
746 $aMailbox['RECENT'] = (isset($aMbxResponse['RECENT'])) ? $aMbxResponse['RECENT'] : 0;
747 $aMailbox['UIDVALIDITY'] = $aMbxResponse['UIDVALIDITY'];
748 $aMailbox['UIDNEXT'] = $aMbxResponse['UIDNEXT'];
749 $aMailbox['PERMANENTFLAGS'] = $aMbxResponse['PERMANENTFLAGS'];
750 $aMailbox['RIGHTS'] = $aMbxResponse['RIGHTS'];
751
752
753
754 /* decide if we are thread sorting or not */
755 if (!$aMailbox['ALLOW_THREAD']) {
756 if ($aMailbox['SORT'] & SQSORT_THREAD) {
757 $aMailbox['SORT'] -= SQSORT_THREAD;
758 }
759 }
760 if ($aMailbox['SORT'] & SQSORT_THREAD) {
761 $aMailbox['SORT_METHOD'] = 'THREAD';
762 $aMailbox['THREAD_INDENT'] = $aCachedMailbox['THREAD_INDENT'];
763 } else if (isset($aConfig['allow_server_sort']) && $aConfig['allow_server_sort']) {
764 $aMailbox['SORT_METHOD'] = 'SERVER';
765 $aMailbox['THREAD_INDENT'] = false;
766 } else {
767 $aMailbox['SORT_METHOD'] = 'SQUIRREL';
768 $aMailbox['THREAD_INDENT'] = false;
769 }
770
771 /* set a timestamp for cachecontrol */
772 $aMailbox['TIMESTAMP'] = time();
773 return $aMailbox;
774 }
775
776
777
778 /**
779 * Does the $srt $_GET var to field mapping
780 *
781 * @param int $srt Field to sort on
782 * @param bool $bServerSort Server sorting is true
783 * @return string $sSortField Field to sort on
784 */
785 function getSortField($sort,$bServerSort) {
786 switch($sort) {
787 case SQSORT_NONE:
788 $sSortField = 'UID';
789 break;
790 case SQSORT_DATE_ASC:
791 case SQSORT_DATE_DEC:
792 $sSortField = 'DATE';
793 break;
794 case SQSORT_FROM_ASC:
795 case SQSORT_FROM_DEC:
796 $sSortField = 'FROM';
797 break;
798 case SQSORT_SUBJ_ASC:
799 case SQSORT_SUBJ_DEC:
800 $sSortField = 'SUBJECT';
801 break;
802 case SQSORT_SIZE_ASC:
803 case SQSORT_SIZE_DEC:
804 $sSortField = ($bServerSort) ? 'SIZE' : 'RFC822.SIZE';
805 break;
806 case SQSORT_TO_ASC:
807 case SQSORT_TO_DEC:
808 $sSortField = 'TO';
809 break;
810 case SQSORT_CC_ASC:
811 case SQSORT_CC_DEC:
812 $sSortField = 'CC';
813 break;
814 case SQSORT_INT_DATE_ASC:
815 case SQSORT_INT_DATE_DEC:
816 $sSortField = ($bServerSort) ? 'ARRIVAL' : 'INTERNALDATE';
817 break;
818 case SQSORT_THREAD:
819 break;
820 default: $sSortField = 'UID';
821 break;
822
823 }
824 return $sSortField;
825 }
826
827 function get_sorted_msgs_list($imapConnection,&$aMailbox,&$error) {
828 $iSetIndx = (isset($aMailbox['SETINDEX'])) ? $aMailbox['SETINDEX'] : 0;
829 $bDirection = ($aMailbox['SORT'] % 2);
830 $error = false;
831 if (!$aMailbox['SEARCH'][$iSetIndx]) {
832 $aMailbox['SEARCH'][$iSetIndx] = 'ALL';
833 }
834 switch ($aMailbox['SORT_METHOD']) {
835 case 'THREAD':
836 $aRes = get_thread_sort($imapConnection,$aMailbox['SEARCH'][$iSetIndx]);
837 if ($aRes === false) {
838 $error = '<b><small><center><font color=red>' .
839 _("Thread sorting is not supported by your IMAP server.") . '<br />' .
840 _("Please contact your system administrator and report this error.") .
841 '</center></small></b>';
842 $aMailbox['SORT'] -= SQSORT_THREAD;
843 } else {
844 $aMailbox['UIDSET'][$iSetIndx] = $aRes[0];
845 $aMailbox['THREAD_INDENT'][$iSetIndx] = $aRes[1];
846 }
847 break;
848 case 'SERVER':
849 $sSortField = getSortField($aMailbox['SORT'],true);
850 $id = sqimap_get_sort_order($imapConnection, $sSortField, $bDirection, $aMailbox['SEARCH'][$iSetIndx]);
851 if ($id === false) {
852 $error = '<b><small><center><font color=red>' .
853 _("Server-side sorting is not supported by your IMAP server.") . '<br />' .
854 _("Please contact your system administrator and report this error.") .
855 '</center></small></b>';
856 } else {
857 $aMailbox['UIDSET'][$iSetIndx] = $id;
858 }
859 break;
860 default:
861 $id = NULL;
862 if ($aMailbox['SEARCH'][$iSetIndx] != 'ALL') {
863 $id = sqimap_run_search($imapConnection, $aMailbox['SEARCH'][$iSetIndx], $aMailbox['CHARSET'][$iSetIndx]);
864 }
865 $sSortField = getSortField($aMailbox['SORT'],false);
866 $aMailbox['UIDSET'][$iSetIndx] = get_squirrel_sort($imapConnection, $sSortField, $bDirection, $id);
867 break;
868 }
869 return $error;
870 }
871
872
873
874
875 function fetchMessageHeaders($imapConnection, &$aMailbox) {
876
877 /**
878 * Retrieve the UIDSET.
879 * Setindex is used to be able to store multiple uid sets. That will make it
880 * possible to display the mailbox multiple times in different sort order
881 * or to store serach results separate from normal mailbox view.
882 */
883 $iSetIndx = (isset($aMailbox['SETINDEX'])) ? $aMailbox['SETINDEX'] : 0;
884
885 $iLimit = ($aMailbox['SHOWALL'][$iSetIndx]) ? $aMailbox['EXISTS'] : $aMailbox['LIMIT'];
886 /**
887 * Adjust the start_msg
888 */
889 $start_msg = $aMailbox['PAGEOFFSET'];
890 if($aMailbox['PAGEOFFSET'] > $aMailbox['EXISTS']) {
891 $start_msg -= $aMailbox['LIMIT'];
892 if($start_msg < 1) {
893 $start_msg = 1;
894 }
895 }
896
897
898 if (is_array($aMailbox['UIDSET'])) {
899 $aUid =& $aMailbox['UIDSET'][$iSetIndx];
900 } else {
901 $aUid = false;
902 }
903
904 // initialize the fields we want to retrieve:
905 $aHeaderFields = array('Date', 'To', 'Cc', 'From', 'Subject', 'X-Priority', 'Importance', 'Priority', 'Content-Type');
906 $aFetchItems = array('FLAGS', 'RFC822.SIZE');
907
908 // Are we sorting on internaldate then retrieve the internaldate value as well
909 if ($aMailbox['INTERNALDATE']) {
910 $aFetchItems[] = 'INTERNALDATE';
911 }
912
913
914 /**
915 * A uidset with sorted uid's is available. We can use the cache
916 */
917 if (($aMailbox['SORT'] != SQSORT_NONE || $aMailbox['SEARCH'][$iSetIndx] != 'ALL') &&
918 isset($aUid) && $aUid ) {
919
920 // limit the cache to SQM_MAX_PAGES_IN_CACHE
921 if (!$aMailbox['SHOWALL'][$iSetIndx]) {
922 $iMaxMsgs = $iLimit * SQM_MAX_PAGES_IN_CACHE;
923 $iCacheSize = count($aMailbox['MSG_HEADERS']);
924 if ($iCacheSize > $iMaxMsgs) {
925 $iReduce = $iCacheSize - $iMaxMsgs;
926 foreach ($aMailbox['MSG_HEADERS'] as $iUid => $value) {
927 if ($iReduce) {
928 unset($aMailbox['MSG_HEADERS'][$iUid]);
929 } else {
930 break;
931 }
932 --$iReduce;
933 }
934 }
935 }
936
937 $id_slice = array_slice($aUid,$start_msg-1,$iLimit);
938 /* do some funky cache checks */
939 $aUidCached = array_keys($aMailbox['MSG_HEADERS']);
940 $aUidNotCached = array_values(array_diff($id_slice,$aUidCached));
941 /**
942 * $aUidNotCached contains an array with UID's which need to be fetched to
943 * complete the needed message headers.
944 */
945 if (count($aUidNotCached)) {
946 $aMsgs = sqimap_get_small_header_list($imapConnection,$aUidNotCached,
947 $aHeaderFields,$aFetchItems);
948 // append the msgs to the existend headers
949 $aMailbox['MSG_HEADERS'] += $aMsgs;
950 }
951
952 } else {
953 /**
954 * Initialize the sorted UID list and fetch the visible message headers
955 */
956 if ($aMailbox['SORT'] != SQSORT_NONE || $aMailbox['SEARCH'][$iSetIndx] != 'ALL') {// || $aMailbox['SORT_METHOD'] & SQSORT_THREAD 'THREAD') {
957
958 $error = false;
959 if ($aMailbox['SEARCH'][$iSetIndx] && $aMailbox['SORT'] == 0) {
960 $aUid = sqimap_run_search($imapConnection, $aMailbox['SEARCH'][$iSetIndx], $aMailbox['CHARSET'][$iSetIndx]);
961 } else {
962 $error = get_sorted_msgs_list($imapConnection,$aMailbox,$error);
963 $aUid = $aMailbox['UIDSET'][$iSetIndx];
964 }
965 if ($error === false) {
966 $id_slice = array_slice($aUid,$aMailbox['OFFSET'], $iLimit);
967 if (count($id_slice)) {
968 $aMailbox['MSG_HEADERS'] = sqimap_get_small_header_list($imapConnection,$id_slice,
969 $aHeaderFields,$aFetchItems);
970 } else {
971 return false;
972 }
973
974 } else {
975 // FIX ME, format message and fallback to squirrel sort
976 if ($error) {
977 echo $error;
978 }
979 }
980 } else {
981 // limit the cache to SQM_MAX_PAGES_IN_CACHE
982 if (!$aMailbox['SHOWALL'][$iSetIndx] && isset($aMailbox['MSG_HEADERS']) && is_array($aMailbox['MSG_HEADERS'])) {
983 $iMaxMsgs = $iLimit * SQM_MAX_PAGES_IN_CACHE;
984 $iCacheSize = count($aMailbox['MSG_HEADERS']);
985 if ($iCacheSize > $iMaxMsgs) {
986 $iReduce = $iCacheSize - $iMaxMsgs;
987 foreach ($aMailbox['MSG_HEADERS'] as $iUid => $value) {
988 if ($iReduce) {
989 $iId = $aMailbox['MSG_HEADERS'][$iUid]['ID'];
990 unset($aMailbox['MSG_HEADERS'][$iUid]);
991 unset($aMailbox['ID'][$iId]);
992 } else {
993 break;
994 }
995 --$iReduce;
996 }
997 }
998 }
999
1000 /**
1001 * retrieve messages by sequence id's and fetch the UID to retrieve
1002 * the UID. for sorted lists this is not needed because a UID FETCH
1003 * automaticly add the UID value in fetch results
1004 **/
1005 $aFetchItems[] = 'UID';
1006
1007 //create id range
1008 $iRangeStart = $aMailbox['EXISTS'] - $aMailbox['OFFSET'];
1009 $iRangeEnd = ($iRangeStart > $iLimit) ?
1010 ($iRangeStart - $iLimit+1):1;
1011
1012 $id_slice = range($iRangeStart, $iRangeEnd);
1013 /**
1014 * Non sorted mailbox with cached message headers
1015 */
1016 if (isset($aMailbox['ID']) && is_array($aMailbox['ID'])) {
1017 // the fetched id => uid relation
1018 $aId = $aMailbox['ID'];
1019 $aIdCached = array();
1020 foreach ($aId as $iId => $iUid) {
1021 if (isset($aMailbox['MSG_HEADERS'][$iUid])) {
1022 if ($iId <= $iRangeStart && $iId >= $iRangeEnd) {
1023 $aIdCached[] = $iId;
1024 }
1025 }
1026 }
1027 $aIdNotCached = array_diff($id_slice,$aIdCached);
1028 } else {
1029 $aIdNotCached = $id_slice;
1030 }
1031
1032 if (count($aIdNotCached)) {
1033 $aMsgs = sqimap_get_small_header_list($imapConnection,$aIdNotCached,
1034 $aHeaderFields,$aFetchItems);
1035 // append the msgs to the existend headers
1036 if (isset($aMailbox['MSG_HEADERS']) && is_array($aMailbox['MSG_HEADERS'])) {
1037 $aMailbox['MSG_HEADERS'] += $aMsgs;
1038 } else {
1039 $aMailbox['MSG_HEADERS'] = $aMsgs;
1040 }
1041 // update the ID array
1042 foreach ($aMsgs as $iUid => $aMsg) {
1043 if (isset($aMsg['ID'])) {
1044 $aMailbox['ID'][$aMsg['ID']] = $iUid;
1045 }
1046 }
1047 }
1048
1049 /**
1050 * In unsorted state we show newest messages first which means
1051 * that the UIDSET which represents the order of the messages
1052 * should contain a high to low ordered UID list
1053 */
1054 $aSortedUidList = array();
1055 foreach ($id_slice as $iId) {
1056 if (isset($aMailbox['ID'][$iId])) {
1057 $aSortedUidList[] = $aMailbox['ID'][$iId];
1058 }
1059 }
1060 $aMailbox['UIDSET'][$iSetIndx] = $aSortedUidList;
1061 $aMailbox['OFFSET'] = 0;
1062 }
1063 }
1064 return true;
1065 }
1066
1067 /**
1068 * This function loops through a group of messages in the mailbox
1069 * and shows them to the user.
1070 *
1071 * @param mixed $imapConnection
1072 * @param array $aMailbox associative array with mailbox related vars
1073 */
1074 function showMessagesForMailbox($imapConnection, &$aMailbox) {
1075 global $color, $javascript_on, $compact_paginator;
1076
1077 // to retrieve the internaldate pref: (I know this is not the right place to do that, move up in front
1078 // and use a properties array as function argument to provide user preferences
1079 global $data_dir, $username;
1080
1081 if (!fetchMessageHeaders($imapConnection, $aMailbox)) {
1082 return false;
1083 }
1084 $iSetIndx = $aMailbox['SETINDEX'];
1085 $iLimit = ($aMailbox['SHOWALL'][$iSetIndx]) ? $aMailbox['EXISTS'] : $aMailbox['LIMIT'];
1086 $iEnd = ($aMailbox['PAGEOFFSET'] + ($iLimit - 1) < $aMailbox['EXISTS']) ?
1087 $aMailbox['PAGEOFFSET'] + $iLimit - 1 : $aMailbox['EXISTS'];
1088
1089 $paginator_str = get_paginator_str($aMailbox['NAME'], $aMailbox['PAGEOFFSET'],
1090 $aMailbox['EXISTS'], $aMailbox['LIMIT'], $aMailbox['SHOWALL'][$iSetIndx]);
1091
1092 $msg_cnt_str = get_msgcnt_str($aMailbox['PAGEOFFSET'], $iEnd,$aMailbox['EXISTS']);
1093
1094 do_hook('mailbox_index_before');
1095
1096 if ($javascript_on && $compact_paginator) {
1097 // Insert compact paginator javascript
1098 echo "\n<!-- start of compact paginator javascript -->\n"
1099 . "<script language=\"JavaScript\">\n"
1100 . "function SubmitOnSelect(select, URL)\n"
1101 . "{\n"
1102 . " URL += select.options[select.selectedIndex].value;\n"
1103 . " window.location.href = URL;\n"
1104 . "}\n"
1105 . "</script>\n"
1106 . "<!-- end of compact paginator javascript -->\n";
1107 }
1108 mail_message_listing_beginning($imapConnection, $aMailbox, $msg_cnt_str, $paginator_str);
1109 ?>
1110 <tr><td height="5" bgcolor="<?php echo $color[4]; ?>"></td></tr>
1111 <tr>
1112 <td>
1113 <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="<?php echo $color[9]; ?>">
1114 <tr>
1115 <td>
1116 <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="<?php echo $color[5]; ?>">
1117 <?php
1118 printHeader($aMailbox);
1119 displayMessageArray($imapConnection, $aMailbox);
1120 ?>
1121 </table>
1122 </td>
1123 </tr>
1124 </table>
1125 </td>
1126 </tr>
1127 <?php
1128 mail_message_listing_end($aMailbox, $paginator_str, $msg_cnt_str);
1129 ?>
1130 </table></form>
1131 <?php
1132
1133 }
1134
1135 /**
1136 * Function to map an uid list with a msg header array by uid
1137 * The mapped headers are printed with printMessage
1138 * aMailbox parameters contains info about the page we are on, the
1139 * used search criteria, the number of messages to show
1140 *
1141 * @param resource $imapConnection socket handle to imap
1142 * @param array $aMailbox array with required elements MSG_HEADERS, UIDSET, OFFSET, LIMIT
1143 * @return void
1144 **/
1145 function displayMessageArray($imapConnection, $aMailbox) {
1146 $iSetIndx = $aMailbox['SETINDEX'];
1147 $aId = $aMailbox['UIDSET'][$iSetIndx];
1148 $aHeaders = $aMailbox['MSG_HEADERS'];
1149 $iOffset = $aMailbox['OFFSET'];
1150 $sort = $aMailbox['SORT'];
1151 $iPageOffset = $aMailbox['PAGEOFFSET'];
1152 $sMailbox = $aMailbox['NAME'];
1153 $sSearch = (isset($aMailbox['SEARCH'][$aMailbox['SETINDEX']])) ? $aMailbox['SEARCH'][$aMailbox['SETINDEX']] : false;
1154 $aSearch = ($sSearch) ? array('search.php',$aMailbox['SETINDEX']) : null;
1155
1156 if ($aMailbox['SORT'] & SQSORT_THREAD) {
1157 $aIndentArray =& $aMailbox['THREAD_INDENT'][$aMailbox['SETINDEX']];
1158 $bThread = true;
1159 } else {
1160 $bThread = false;
1161 }
1162 /*
1163 * Loop through and display the info for each message.
1164 * ($t is used for the checkbox number)
1165 */
1166 $iEnd = ($aMailbox['SHOWALL'][$iSetIndx]) ? $aMailbox['EXISTS'] : $iOffset + $aMailbox['LIMIT'];
1167 for ($i=$iOffset,$t=0;$i<$iEnd;++$i) {
1168 if (isset($aId[$i])) {
1169 $bLast = ((isset($aId[$i+1]) && isset($aHeaders[$aId[$i+1]]))
1170 || ($i == $iEnd )) ? false : true;
1171 if ($bThread) {
1172 $indent = (isset($aIndentArray[$aId[$i]])) ? $aIndentArray[$aId[$i]] : 0;
1173 } else {
1174 $indent = 0;
1175 }
1176 $aMsg = array(
1177 'HEADER' => $aHeaders[$aId[$i]],
1178 'INDX' => $t,
1179 'OFFSET' => $iOffset,
1180 'PAGEOFFSET' => $iPageOffset,
1181 'SORT' => $sort,
1182 'SEARCH' => $aSearch,
1183 'MAILBOX' => $sMailbox,
1184 'INDENT' => $indent,
1185 'LAST' => $bLast
1186 );
1187 printMessageInfo($aMsg);
1188 ++$t;
1189 } else {
1190 break;
1191 }
1192 }
1193 }
1194
1195 /**
1196 * Displays the standard message list header.
1197 *
1198 * To finish the table, you need to do a "</table></table>";
1199 *
1200 * @param resource $imapConnection
1201 * @param array $aMailbox associative array with mailbox related information
1202 * @param string $msg_cnt_str
1203 * @param string $paginator Paginator string
1204 */
1205 function mail_message_listing_beginning ($imapConnection,
1206 $aMailbox,
1207 $msg_cnt_str = '',
1208 $paginator = '&nbsp;'
1209 ) {
1210 global $color, $show_flag_buttons, $PHP_SELF;
1211 global $lastTargetMailbox, $boxes;
1212
1213 $php_self = $PHP_SELF;
1214
1215 if (preg_match('/^(.+)\?.+$/',$php_self,$regs)) {
1216 $source_url = $regs[1];
1217 } else {
1218 $source_url = $php_self;
1219 }
1220 $php_self = str_replace('&', '&amp;', $php_self);
1221
1222 if (!isset($msg)) {
1223 $msg = '';
1224 }
1225
1226 $moveFields = addHidden('msg', $msg).
1227 addHidden('mailbox', $aMailbox['NAME']).
1228 addHidden('startMessage', $aMailbox['PAGEOFFSET']);
1229
1230 /* build thread sorting links */
1231 $sort = $aMailbox['SORT'];
1232 if ($aMailbox['ALLOW_THREAD']) {
1233 if ($aMailbox['SORT'] & SQSORT_THREAD) {
1234 $sort -= SQSORT_THREAD;
1235 $thread_name = _("Unthread View");
1236 } else {
1237 $thread_name = _("Thread View");
1238 $sort = $aMailbox['SORT'] + SQSORT_THREAD;
1239 }
1240 $thread_link_str = '<small>[<a href="' . $source_url . '?srt='
1241 . $sort . '&amp;start_messages=1'
1242 . '&amp;mailbox=' . urlencode($aMailbox['NAME']) . '">' . $thread_name
1243 . '</a>]</small>';
1244 } else {
1245 $thread_link_str ='';
1246 }
1247 /*
1248 * This is the beginning of the message list table.
1249 * It wraps around all messages
1250 */
1251 $safe_name = preg_replace("/[^0-9A-Za-z_]/", '_', $aMailbox['NAME']);
1252 $form_name = "FormMsgs" . $safe_name;
1253
1254 echo '<form name="' . $form_name . '" method="post" action="'.$php_self.'">' ."\n"
1255 . $moveFields;
1256 echo '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td>';
1257
1258 $button_str = '';
1259 // display flag buttons only if supported
1260 if ($show_flag_buttons &&
1261 in_array('\\flagged',$aMailbox['PERMANENTFLAGS'], true) ) {
1262 $button_str .= getButton('submit', 'markUnflagged', _("Unflag"));
1263 $button_str .= getButton('submit', 'markFlagged', _("Flag"));
1264 $button_str .= "&nbsp;\n";
1265 }
1266 if (in_array('\\seen',$aMailbox['PERMANENTFLAGS'], true)) {
1267 $button_str .= getButton('submit', 'markUnread', _("Unread"));
1268 $button_str .= getButton('submit', 'markRead', _("Read"));
1269 $button_str .= "&nbsp;\n";
1270 }
1271 $button_str .= getButton('submit', 'attache',_("Forward")) .
1272 "&nbsp;\n";
1273 if (in_array('\\deleted',$aMailbox['PERMANENTFLAGS'], true)) {
1274 $button_str .= getButton('submit', 'delete',_("Delete"));
1275 $button_str .= '<input type="checkbox" name="bypass_trash" />' . _("Bypass Trash");
1276 $button_str .= "&nbsp;\n";
1277 }
1278 if (!$aMailbox['AUTO_EXPUNGE'] && $aMailbox['RIGHTS'] != 'READ-ONLY') {
1279 $button_str .= getButton('submit', 'expungeButton',_("Expunge")) .'&nbsp;' . _("mailbox") . "\n";
1280 $button_str .= '&nbsp;';
1281 }
1282 ?>
1283 <table width="100%" cellpadding="1" cellspacing="0" style="border: 1px solid <?php echo $color[0]; ?>">
1284 <tr>
1285 <td>
1286 <table bgcolor="<?php echo $color[4]; ?>" border="0" width="100%" cellpadding="1" cellspacing="0">
1287 <tr>
1288 <?php echo html_tag('td', '<small>' . $paginator . $thread_link_str . '</small>', 'left') . "\n"; ?>
1289 <?php echo html_tag('td', '&nbsp;', 'center') . "\n"; ?>
1290 <?php echo html_tag('td', '<small>' . $msg_cnt_str . '</small>', 'right') . "\n"; ?>
1291 </tr>
1292 </table>
1293 </td>
1294 </tr>
1295 <tr bgcolor="<?php echo $color[0]; ?>">
1296 <td>
1297 <table border="0" width="100%" cellpadding="1" cellspacing="0">
1298 <tr>
1299 <?php echo html_tag('td', '', 'left') . "\n"; ?>
1300 <small>
1301 <?php echo $button_str; ?>
1302 <?php do_hook('mailbox_display_buttons'); ?>
1303 </small>
1304 </td>
1305 <?php
1306 if (in_array('\\deleted',$aMailbox['PERMANENTFLAGS'], true)) {
1307 ?>
1308 <?php echo html_tag('td', '', 'right'); ?>
1309 <small>&nbsp;<tt>
1310 <select name="targetMailbox">
1311 <?php echo sqimap_mailbox_option_list($imapConnection, array(strtolower($lastTargetMailbox)), 0, $boxes); ?>
1312 </select></tt>&nbsp;
1313 <?php echo getButton('submit', 'moveButton',_("Move")); ?>
1314 </small>
1315 <?php
1316 }
1317 ?>
1318 </td>
1319 </tr>
1320 </table>
1321 </td>
1322 </tr>
1323 </table>
1324 </td></tr>
1325 <?php
1326 do_hook('mailbox_form_before');
1327 }
1328
1329 /**
1330 * Function to add the last row in a message list, it contains the paginator and info about
1331 * the number of messages.
1332 *
1333 * @param array $aMailbox associative array with mailbox related information
1334 * @param string $paginator_str Paginator string [Prev | Next] [ 1 2 3 ... 91 92 94 ] [Show all]
1335 * @param string $msg_cnt_str Message count string Viewing Messages: 21 to 1861 (20 total)
1336 */
1337 function mail_message_listing_end($aMailbox, $paginator_str, $msg_cnt_str) {
1338 global $color;
1339
1340 if ($aMailbox['EXISTS']) {
1341 /* space between list and footer */
1342
1343 ?>
1344 <tr><td height="5" bgcolor="<?php echo $color[4]; ?>" colspan="1"></td></tr>
1345 <tr>
1346 <td>
1347 <table width="100%" cellpadding="1" cellspacing="0" style="border: 1px solid <?php echo $color[0]; ?>">
1348 <tr>
1349 <td>
1350 <table bgcolor="<?php echo $color[4]; ?>" border="0" width="100%" cellpadding="1" cellspacing="0">
1351 <tr>
1352 <?php echo html_tag('td', '<small>' . $paginator_str . '</small>', 'left'); ?>
1353 <?php echo html_tag('td', '<small>' . $msg_cnt_str . '</small>', 'right'); ?>
1354 </tr>
1355 </table>
1356 </td>
1357 </tr>
1358 </table>
1359 </td>
1360 </tr>
1361 <?php
1362 }
1363 /* End of message-list table */
1364
1365 do_hook('mailbox_index_after');
1366 }
1367
1368 /**
1369 * Prints the table header for the messages list view
1370 *
1371 * @param array $aMailbox
1372 */
1373 function printHeader($aMailbox) {
1374 global $index_order, $internal_date_sort, $color;
1375
1376 if ($aMailbox['SORT_METHOD'] != 'THREAD') {
1377 $showsort = true;
1378 } else {
1379 $showsort = false;
1380 }
1381
1382 echo html_tag( 'tr' ,'' , 'center', $color[5] );
1383
1384 /* calculate the width of the subject column based on the
1385 * widths of the other columns */
1386 $widths = array(1=>1,2=>25,3=>5,4=>0,5=>1,6=>5);
1387 $subjectwidth = 100;
1388 foreach($index_order as $item) {
1389 $subjectwidth -= $widths[$item];
1390 }
1391
1392 foreach ($index_order as $item) {
1393 switch ($item) {
1394 case 1: /* checkbox */
1395 echo html_tag( 'td',get_selectall_link($aMailbox) , '', '', 'width="1%"' );
1396 break;
1397 case 5: /* flags */
1398 echo html_tag( 'td','&nbsp;' , '', '', 'width="1%"' );
1399 break;
1400 case 2: /* from */
1401 if (handleAsSent($aMailbox['NAME'])) {
1402 echo html_tag( 'td' ,'' , 'left', '', 'width="25%"' )
1403 . '<b>' . _("To") . '</b>';
1404 if ($showsort) {
1405 ShowSortButton($aMailbox, SQSORT_TO_ASC, SQSORT_TO_DEC);
1406 }
1407 } else {
1408 echo html_tag( 'td' ,'' , 'left', '', 'width="25%"' )
1409 . '<b>' . _("From") . '</b>';
1410 if ($showsort) {
1411 ShowSortButton($aMailbox, SQSORT_FROM_ASC, SQSORT_FROM_DEC);
1412 }
1413 }
1414 echo "</td>\n";
1415 break;
1416 case 3: /* date */
1417 echo html_tag( 'td' ,'' , 'left', '', 'width="5%" style="white-space: nowrap;"' )
1418 . '<b>' . _("Date") . '</b>';
1419 if ($showsort) {
1420 if ($internal_date_sort) {
1421 ShowSortButton($aMailbox, SQSORT_INT_DATE_ASC, SQSORT_INT_DATE_DEC);
1422 } else {
1423 ShowSortButton($aMailbox, SQSORT_DATE_ASC, SQSORT_DATE_DEC);
1424 }
1425 }
1426 echo "</td>\n";
1427 break;
1428 case 4: /* subject */
1429 echo html_tag( 'td' ,'' , 'left', '', 'width="'.$subjectwidth.'%"' )
1430 . '<b>' . _("Subject") . '</b>';
1431 if ($showsort) {
1432 ShowSortButton($aMailbox, SQSORT_SUBJ_ASC, SQSORT_SUBJ_DEC);
1433 }
1434 echo "</td>\n";
1435 break;
1436 case 6: /* size */
1437 echo html_tag( 'td', '', 'center','','width="5%" style="white-space: nowrap;"')
1438 . '<b>' . _("Size") . '</b>';
1439 if ($showsort) {
1440 ShowSortButton($aMailbox, SQSORT_SIZE_ASC, SQSORT_SIZE_DEC);
1441 }
1442 echo "</td>\n";
1443 break;
1444 }
1445 }
1446 echo "</tr>\n";
1447 }
1448
1449
1450 /**
1451 * This function shows the sort button. Isn't this a good comment?
1452 *
1453 * @param array $aMailbox
1454 * @param integer $Down
1455 * @param integer $Up
1456 */
1457 function ShowSortButton($aMailbox, $Down, $Up ) {
1458 global $PHP_SELF;
1459
1460 /* Figure out which image we want to use. */
1461 if ($aMailbox['SORT'] != $Up && $aMailbox['SORT'] != $Down) {
1462 $img = 'sort_none.png';
1463 $which = $Up;
1464 } elseif ($aMailbox['SORT'] == $Up) {
1465 $img = 'up_pointer.png';
1466 $which = $Down;
1467 } else {
1468 $img = 'down_pointer.png';
1469 $which = 0;
1470 }
1471
1472 if (preg_match('/^(.+)\?.+$/',$PHP_SELF,$regs)) {
1473 $source_url = $regs[1];
1474 } else {
1475 $source_url = $PHP_SELF;
1476 }
1477
1478 /* Now that we have everything figured out, show the actual button. */
1479 echo ' <a href="' . $source_url .'?srt=' . $which
1480 . '&amp;startMessage=1&amp;mailbox=' . urlencode($aMailbox['NAME'])
1481 . '"><img src="../images/' . $img
1482 . '" border="0" width="12" height="10" alt="sort" title="'
1483 . _("Click here to change the sorting of the message list") .'" /></a>';
1484 }
1485
1486 /**
1487 * FIXME: Undocumented function
1488 *
1489 * @param array $aMailbox
1490 */
1491 function get_selectall_link($aMailbox) {
1492 global $checkall, $javascript_on;
1493 global $PHP_SELF;
1494
1495 $result = '';
1496 if ($javascript_on) {
1497 $safe_name = preg_replace("/[^0-9A-Za-z_]/", '_', $aMailbox['NAME']);
1498 $func_name = "CheckAll" . $safe_name;
1499 $form_name = "FormMsgs" . $safe_name;
1500 $result = '<script language="JavaScript" type="text/javascript">'
1501 . "\n<!-- \n"
1502 . "function " . $func_name . "() {\n"
1503 . " for (var i = 0; i < document." . $form_name . ".elements.length; i++) {\n"
1504 . " if(document." . $form_name . ".elements[i].type == 'checkbox' && "
1505 . " document." . $form_name . ".elements[i].name.substring(0,3) == 'msg'){\n"
1506 . " document." . $form_name . ".elements[i].checked = "
1507 . " !(document." . $form_name . ".elements[i].checked);\n"
1508 . " }\n"
1509 . " }\n"
1510 . "}\n"
1511 . "//-->\n"
1512 . '</script>'
1513 . '<input type="checkbox" name="toggleAll" title="'._("Toggle All").'" onclick="'.$func_name.'();" />';
1514 // . <a href="javascript:void(0)" onclick="' . $func_name . '();">' . _("Toggle All")
1515 // . "</a>\n";
1516 } else {
1517 $result .= "<a href=\"$PHP_SELF";
1518 // FIXME: why strpos() is used to detect presense of the symbol in the string.
1519 // Function returns boolean value only when symbol is not found
1520 if (strpos($PHP_SELF, "?")) {
1521 $prefix = '&amp;';
1522 } else {
1523 $prefix = '?';
1524 }
1525
1526 // If variables are part of GET request, they are present in $PHP_SELF
1527 // maybe other functions can be used instead of sqgetGlobalVar (like preg_match)
1528 if (! sqgetGlobalVar('mailbox',$tmp,SQ_GET)) {
1529 $result .= $prefix . 'mailbox=' . urlencode($aMailbox['NAME']);
1530 $prefix = '&amp;';
1531 }
1532 if (! sqgetGlobalVar('startMessage',$tmp,SQ_GET)) {
1533 $result .= $prefix . 'startMessage=' . $aMailbox['PAGEOFFSET'];
1534 $prefix = '&amp;';
1535 }
1536 if (! sqgetGlobalVar('str',$tmp,SQ_GET)) {
1537 $result .= $prefix . 'str=' . $aMailbox['SORT'];
1538 $prefix = '&amp;';
1539 }
1540
1541 if (isset($checkall) && $checkall == '1') {
1542 $checkall_val = '0';
1543 } else {
1544 $checkall_val = '1';
1545 }
1546 if (! sqgetGlobalVar('checkall',$tmp,SQ_GET) ) {
1547 $result .= $prefix . 'checkall=' . $checkall_val;
1548 $prefix = '&amp;';
1549 } else {
1550 // checkall is already present in php_self. replace it
1551 $result = preg_replace("/checkall=(\d)/","checkall=$checkall_val",$result);
1552 }
1553
1554 // FIXME: I suspect that search pages use different variables in 1.5.1cvs
1555 // and these variables are present in $PHP_SELF.
1556 if (isset($aMailbox['SEARCH']) && isset($aMailbox['SEARCH'][0]) && ! sqgetGlobalVar('where',$tmp,SQ_GET)) {
1557 $result .= '&amp;where=' . urlencode($aMailbox['SEARCH'][0]);
1558 if (isset($aMailbox['SEARCH'][1]) && ! sqgetGlobalVar('what',$tmp,SQ_GET)) {
1559 $result .= '&amp;what=' . urlencode($aMailbox['SEARCH'][1]);
1560 }
1561 }
1562 $result .= "\">";
1563 $result .= _("All");
1564 $result .= "</a>\n";
1565 }
1566
1567 /* Return our final result. */
1568 return ($result);
1569 }
1570
1571 /**
1572 * This function computes the "Viewing Messages..." string.
1573 *
1574 * @param integer $start_msg first message number
1575 * @param integer $end_msg last message number
1576 * @param integer $num_msgs total number of message in folder
1577 * @return string
1578 */
1579 function get_msgcnt_str($start_msg, $end_msg, $num_msgs) {
1580 /* Compute the $msg_cnt_str. */
1581 $result = '';
1582 if ($start_msg < $end_msg) {
1583 $result = sprintf(_("Viewing Messages: %s to %s (%s total)"),
1584 '<b>'.$start_msg.'</b>', '<b>'.$end_msg.'</b>', $num_msgs);
1585 } else if ($start_msg == $end_msg) {
1586 $result = sprintf(_("Viewing Message: %s (%s total)"), '<b>'.$start_msg.'</b>', $num_msgs);
1587 } else {
1588 $result = '<br />';
1589 }
1590 /* Return our result string. */
1591 return ($result);
1592 }
1593
1594 /**
1595 * Generate a paginator link.
1596 *
1597 * @param mixed $box Mailbox name
1598 * @param mixed $start_msg Message Offset
1599 * @param mixed $use
1600 * @param string $text text used for paginator link
1601 * @return string
1602 */
1603 function get_paginator_link($box, $start_msg, $text) {
1604 sqgetGlobalVar('PHP_SELF',$php_self,SQ_SERVER);
1605 $result = "<a href=\"$php_self?startMessage=$start_msg&amp;mailbox=$box\" "
1606 . ">$text</a>";
1607
1608 return ($result);
1609 }
1610
1611 /**
1612 * This function computes the paginator string.
1613 *
1614 * @param string $box mailbox name
1615 * @param integer $iOffset offset in total number of messages
1616 * @param integer $iTotal total number of messages
1617 * @param integer $iLimit maximum number of messages to show on a page
1618 * @param bool $bShowAll show all messages at once (non paginate mode)
1619 * @return string $result paginate string with links to pages
1620 */
1621 function get_paginator_str($box, $iOffset, $iTotal, $iLimit, $bShowAll) {
1622 global $username, $data_dir, $javascript_on;
1623 // page selector globals
1624 global $page_selector, $page_selector_max, $compact_paginator;
1625 sqgetGlobalVar('PHP_SELF',$php_self,SQ_SERVER);
1626
1627 /* Initialize paginator string chunks. */
1628 $prv_str = '';
1629 $nxt_str = '';
1630 $pg_str = '';
1631 $all_str = '';
1632
1633 $box = urlencode($box);
1634
1635 /* Create simple strings that will be creating the paginator. */
1636 $spc = '&nbsp;'; /* This will be used as a space. */
1637 $sep = '|'; /* This will be used as a seperator. */
1638
1639 /* Make sure that our start message number is not too big. */
1640 $iOffset = min($iOffset, $iTotal);
1641
1642 /* Compute the starting message of the previous and next page group. */
1643 $next_grp = $iOffset + $iLimit;
1644 $prev_grp = $iOffset - $iLimit;
1645
1646 if (!$bShowAll) {
1647 /* Compute the basic previous and next strings. */
1648 if ($compact_paginator) {
1649 if (($next_grp <= $iTotal) && ($prev_grp >= 0)) {
1650 $prv_str = get_paginator_link($box, $prev_grp, '<');
1651 $nxt_str = get_paginator_link($box, $next_grp, '>');
1652 } else if (($next_grp > $iTotal) && ($prev_grp >= 0)) {
1653 $prv_str = get_paginator_link($box, $prev_grp, '<');
1654 $nxt_str = '>';
1655 } else if (($next_grp <= $iTotal) && ($prev_grp < 0)) {
1656 $prv_str = '<';
1657 $nxt_str = get_paginator_link($box, $next_grp, '>');
1658 }
1659 } else {
1660 if (($next_grp <= $iTotal) && ($prev_grp >= 0)) {
1661 $prv_str = get_paginator_link($box, $prev_grp, _("Previous"));
1662 $nxt_str = get_paginator_link($box, $next_grp, _("Next"));
1663 } else if (($next_grp > $iTotal) && ($prev_grp >= 0)) {
1664 $prv_str = get_paginator_link($box, $prev_grp, _("Previous"));
1665 $nxt_str = _("Next");
1666 } else if (($next_grp <= $iTotal) && ($prev_grp < 0)) {
1667 $prv_str = _("Previous");
1668 $nxt_str = get_paginator_link($box, $next_grp, _("Next"));
1669 }
1670 }
1671
1672 /* Page selector block. Following code computes page links. */
1673 if ($iLimit != 0 && $page_selector && ($iTotal > $iLimit)) {
1674 /* Most importantly, what is the current page!!! */
1675 $cur_pg = intval($iOffset / $iLimit) + 1;
1676
1677 /* Compute total # of pages and # of paginator page links. */
1678 $tot_pgs = ceil($iTotal / $iLimit); /* Total number of Pages */
1679
1680 if (!$compact_paginator) {
1681 $vis_pgs = min($page_selector_max, $tot_pgs - 1); /* Visible Pages */
1682
1683 /* Compute the size of the four quarters of the page links. */
1684
1685 /* If we can, just show all the pages. */
1686 if (($tot_pgs - 1) <= $page_selector_max) {
1687 $q1_pgs = $cur_pg - 1;
1688 $q2_pgs = $q3_pgs = 0;
1689 $q4_pgs = $tot_pgs - $cur_pg;
1690
1691 /* Otherwise, compute some magic to choose the four quarters. */
1692 } else {
1693 /*
1694 * Compute the magic base values. Added together,
1695 * these values will always equal to the $pag_pgs.
1696 * NOTE: These are DEFAULT values and do not take
1697 * the current page into account. That is below.
1698 */
1699 $q1_pgs = floor($vis_pgs/4);
1700 $q2_pgs = round($vis_pgs/4, 0);
1701 $q3_pgs = ceil($vis_pgs/4);
1702 $q4_pgs = round(($vis_pgs - $q2_pgs)/3, 0);
1703
1704 /* Adjust if the first quarter contains the current page. */
1705 if (($cur_pg - $q1_pgs) < 1) {
1706 $extra_pgs = ($q1_pgs - ($cur_pg - 1)) + $q2_pgs;
1707 $q1_pgs = $cur_pg - 1;
1708 $q2_pgs = 0;
1709 $q3_pgs += ceil($extra_pgs / 2);
1710 $q4_pgs += floor($extra_pgs / 2);
1711
1712 /* Adjust if the first and second quarters intersect. */
1713 } else if (($cur_pg - $q2_pgs - ceil($q2_pgs/3)) <= $q1_pgs) {
1714 $extra_pgs = $q2_pgs;
1715 $extra_pgs -= ceil(($cur_pg - $q1_pgs - 1) * 3/4);
1716 $q2_pgs = ceil(($cur_pg - $q1_pgs - 1) * 3/4);
1717 $q3_pgs += ceil($extra_pgs / 2);
1718 $q4_pgs += floor($extra_pgs / 2);
1719
1720 /* Adjust if the fourth quarter contains the current page. */
1721 } else if (($cur_pg + $q4_pgs) >= $tot_pgs) {
1722 $extra_pgs = ($q4_pgs - ($tot_pgs - $cur_pg)) + $q3_pgs;
1723 $q3_pgs = 0;
1724 $q4_pgs = $tot_pgs - $cur_pg;
1725 $q1_pgs += floor($extra_pgs / 2);
1726 $q2_pgs += ceil($extra_pgs / 2);
1727
1728 /* Adjust if the third and fourth quarter intersect. */
1729 } else if (($cur_pg + $q3_pgs + 1) >= ($tot_pgs - $q4_pgs + 1)) {
1730 $extra_pgs = $q3_pgs;
1731 $extra_pgs -= ceil(($tot_pgs - $cur_pg - $q4_pgs) * 3/4);
1732 $q3_pgs = ceil(($tot_pgs - $cur_pg - $q4_pgs) * 3/4);
1733 $q1_pgs += floor($extra_pgs / 2);
1734 $q2_pgs += ceil($extra_pgs / 2);
1735 }
1736 }
1737
1738 /*
1739 * I am leaving this debug code here, commented out, because
1740 * it is a really nice way to see what the above code is doing.
1741 * echo "qts = $q1_pgs/$q2_pgs/$q3_pgs/$q4_pgs = "
1742 * . ($q1_pgs + $q2_pgs + $q3_pgs + $q4_pgs) . '<br />';
1743 */
1744
1745 /* Print out the page links from the compute page quarters. */
1746
1747 /* Start with the first quarter. */
1748 if (($q1_pgs == 0) && ($cur_pg > 1)) {
1749 $pg_str .= "...$spc";
1750 } else {
1751 for ($pg = 1; $pg <= $q1_pgs; ++$pg) {
1752 $start = (($pg-1) * $iLimit) + 1;
1753 $pg_str .= get_paginator_link($box, $start, $pg) . $spc;
1754 }
1755 if ($cur_pg - $q2_pgs - $q1_pgs > 1) {
1756 $pg_str .= "...$spc";
1757 }
1758 }
1759
1760 /* Continue with the second quarter. */
1761 for ($pg = $cur_pg - $q2_pgs; $pg < $cur_pg; ++$pg) {
1762 $start = (($pg-1) * $iLimit) + 1;
1763 $pg_str .= get_paginator_link($box, $start, $pg) . $spc;
1764 }
1765
1766 /* Now print the current page. */
1767 $pg_str .= $cur_pg . $spc;
1768
1769 /* Next comes the third quarter. */
1770 for ($pg = $cur_pg + 1; $pg <= $cur_pg + $q3_pgs; ++$pg) {
1771 $start = (($pg-1) * $iLimit) + 1;
1772 $pg_str .= get_paginator_link($box, $start, $pg) . $spc;
1773 }
1774
1775 /* And last, print the forth quarter page links. */
1776 if (($q4_pgs == 0) && ($cur_pg < $tot_pgs)) {
1777 $pg_str .= "...$spc";
1778 } else {
1779 if (($tot_pgs - $q4_pgs) > ($cur_pg + $q3_pgs)) {
1780 $pg_str .= "...$spc";
1781 }
1782 for ($pg = $tot_pgs - $q4_pgs + 1; $pg <= $tot_pgs; ++$pg) {
1783 $start = (($pg-1) * $iLimit) + 1;
1784 $pg_str .= get_paginator_link($box, $start,$pg) . $spc;
1785 }
1786 }
1787 }
1788 $last_grp = (($tot_pgs - 1) * $iLimit) + 1;
1789 }
1790 } else {
1791 $pg_str = "<a href=\"$php_self?showall=0"
1792 . "&amp;startMessage=1&amp;mailbox=$box\" "
1793 . ">" ._("Paginate") . '</a>';
1794 }
1795
1796 /* Put all the pieces of the paginator string together. */
1797 /**
1798 * Hairy code... But let's leave it like it is since I am not certain
1799 * a different approach would be any easier to read. ;)
1800 */
1801 $result = '';
1802 if ( $prv_str || $nxt_str ) {
1803
1804 /* Compute the 'show all' string. */
1805 $all_str = "<a href=\"$php_self?showall=1"
1806 . "&amp;startMessage=1&amp;mailbox=$box\" "
1807 . ">" . _("Show All") . '</a>';
1808 }
1809
1810 if ($compact_paginator) {
1811 if ( $prv_str || $nxt_str ) {
1812 $result .= '[' . get_paginator_link($box, 1, '<<') . ']';
1813 $result .= '[' . $prv_str . ']';
1814
1815 $pg_url = $php_self . '?mailbox=' . $box;
1816
1817 $result .= '[' . $nxt_str . ']';
1818 $result .= '[' . get_paginator_link($box, $last_grp, '>>') . ']';
1819
1820 if ($page_selector) {
1821 $result .= $spc . '<select name="startMessage"';
1822 if ($javascript_on) {
1823 $result .= ' onchange="JavaScript:SubmitOnSelect'
1824 . '(this, \'' . $pg_url . '&amp;startMessage=\')"';
1825 }
1826 $result .='>';
1827
1828 for ($p = 0; $p < $tot_pgs; $p++) {
1829 $result .= '<option ';
1830 if (($p+1) == $cur_pg) $result .= 'selected ';
1831 $result .= 'value="' . (($p*$iLimit)+1) . '">'
1832 . ($p+1) . "/$tot_pgs" . '</option>';
1833 }
1834
1835 $result .= '</select>';
1836
1837 if ($javascript_on) {
1838 $result .= '<noscript language="JavaScript">'
1839 . addSubmit(_("Go"))
1840 . '</noscript>';
1841 } else {
1842 $result .= addSubmit(_("Go"));
1843 }
1844 }
1845 }
1846
1847 $result .= ($pg_str != '' ? '['.$pg_str.']' . $spc : '');
1848 $result .= ($all_str != '' ? $spc . '['.$all_str.']' . $spc . $spc : '');
1849 } else {
1850 if ( $prv_str || $nxt_str ) {
1851 $result .= '[';
1852 $result .= ($prv_str != '' ? $prv_str . $spc . $sep . $spc : '');
1853 $result .= ($nxt_str != '' ? $nxt_str : '');
1854 $result .= ']' . $spc ;
1855 }
1856
1857 $result .= ($pg_str != '' ? $spc . '['.$spc.$pg_str.']' . $spc : '');
1858 $result .= ($all_str != '' ? $spc . '['.$all_str.']' . $spc . $spc : '');
1859 }
1860 /* If the resulting string is blank, return a non-breaking space. */
1861 if ($result == '') {
1862 $result = '&nbsp;';
1863 }
1864 /* Return our final magical paginator string. */
1865 return ($result);
1866 }
1867
1868 /**
1869 * FIXME: Undocumented function
1870 */
1871 function truncateWithEntities($subject, $trim_at)
1872 {
1873 $ent_strlen = strlen($subject);
1874 if (($trim_at <= 0) || ($ent_strlen <= $trim_at))
1875 return $subject;
1876
1877 global $languages, $squirrelmail_language;
1878
1879 /*
1880 * see if this is entities-encoded string
1881 * If so, Iterate through the whole string, find out
1882 * the real number of characters, and if more
1883 * than $trim_at, substr with an updated trim value.
1884 */
1885 $trim_val = $trim_at;
1886 $ent_offset = 0;
1887 $ent_loc = 0;
1888 while ( $ent_loc < $trim_val && (($ent_loc = strpos($subject, '&', $ent_offset)) !== false) &&
1889 (($ent_loc_end = strpos($subject, ';', $ent_loc+3)) !== false) ) {
1890 $trim_val += ($ent_loc_end-$ent_loc);
1891 $ent_offset = $ent_loc_end+1;
1892 }
1893 if (($trim_val > $trim_at) && ($ent_strlen > $trim_val) && (strpos($subject,';',$trim_val) < ($trim_val + 6))) {
1894 $i = strpos($subject,';',$trim_val);
1895 if ($i) {
1896 $trim_val = strpos($subject,';',$trim_val);
1897 }
1898 }
1899 // only print '...' when we're actually dropping part of the subject
1900 if ($ent_strlen <= $trim_val)
1901 return $subject;
1902
1903 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
1904 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_strimwidth')) {
1905 return call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_strimwidth', $subject, $trim_val);
1906 }
1907
1908 return substr_replace($subject, '...', $trim_val + 1);
1909 }
1910
1911 /**
1912 * FIXME: Undocumented function
1913 */
1914 function processSubject($subject, $threadlevel = 0) {
1915 /* Shouldn't ever happen -- caught too many times in the IMAP functions */
1916 if ($subject == '') {
1917 return _("(no subject)");
1918 }
1919
1920 global $truncate_subject; /* number of characters for Subject field (<= 0 for unchanged) */
1921 $trim_at = $truncate_subject;
1922
1923 /* if this is threaded, subtract two chars per indentlevel */
1924 if (($threadlevel > 0) && ($threadlevel <= 10))
1925 $trim_at -= (2*$threadlevel);
1926
1927 return truncateWithEntities($subject, $trim_at);
1928 }
1929
1930
1931 /**
1932 * Creates button
1933 *
1934 * @deprecated see form functions available in 1.5.1 and 1.4.3.
1935 * @param string $type
1936 * @param string $name
1937 * @param string $value
1938 * @param string $js
1939 * @param bool $enabled
1940 */
1941 function getButton($type, $name, $value, $js = '', $enabled = TRUE) {
1942 $disabled = ( $enabled ? '' : 'disabled ' );
1943 $js = ( $js ? $js.' ' : '' );
1944 return '<input '.$disabled.$js.
1945 'type="'.$type.
1946 '" name="'.$name.
1947 '" value="'.$value .
1948 '" style="padding: 0px; margin: 0px" />';
1949 }
1950
1951 /**
1952 * Puts string into cell, aligns it and adds <small> tag
1953 *
1954 * @param string $string string
1955 * @param string $align alignment
1956 */
1957 function getSmallStringCell($string, $align) {
1958 return html_tag('td',
1959 '<small>' . $string . ':&nbsp; </small>',
1960 $align,
1961 '',
1962 'style="white-space: nowrap;"' );
1963 }
1964
1965 /**
1966 * This should go in imap_mailbox.php
1967 * @param string $mailbox
1968 */
1969 function handleAsSent($mailbox) {
1970 global $handleAsSent_result;
1971
1972 /* First check if this is the sent or draft folder. */
1973 $handleAsSent_result = isSentMailbox($mailbox) || isDraftMailbox($mailbox);
1974
1975 /* Then check the result of the handleAsSent hook. */
1976 do_hook('check_handleAsSent_result', $mailbox);
1977
1978 /* And return the result. */
1979 return $handleAsSent_result;
1980 }
1981
1982 /**
1983 * Process messages list form and handle the cache gracefully. If $sButton and
1984 * $aUid are provided as argument then you can fake a message list submit and
1985 * use it i.e. in read_body.php for del move next and update the cache
1986 *
1987 * @param resource $imapConnection imap connection
1988 * @param array $aMailbox (reference) cached mailbox
1989 * @param string $sButton fake a submit button
1990 * @param array $aUid fake the $msg array
1991 * @return string $sError error string in case of an error
1992 * @author Marc Groot Koerkamp
1993 */
1994 function handleMessageListForm($imapConnection,&$aMailbox,$sButton='',$aUid = array()) {
1995
1996 /* incoming formdata */
1997 $sButton = (sqgetGlobalVar('moveButton', $sTmp, SQ_POST)) ? 'move' : $sButton;
1998 $sButton = (sqgetGlobalVar('expungeButton', $sTmp, SQ_POST)) ? 'expunge' : $sButton;
1999 $sButton = (sqgetGlobalVar('attache', $sTmp, SQ_POST)) ? 'attache' : $sButton;
2000 $sButton = (sqgetGlobalVar('delete', $sTmp, SQ_POST)) ? 'setDeleted' : $sButton;
2001 $sButton = (sqgetGlobalVar('undeleteButton', $sTmp, SQ_POST)) ? 'setDeleted' : $sButton;
2002 $sButton = (sqgetGlobalVar('markRead', $sTmp, SQ_POST)) ? 'setSeen' : $sButton;
2003 $sButton = (sqgetGlobalVar('markUnread', $sTmp, SQ_POST)) ? 'unsetSeen' : $sButton;
2004 $sButton = (sqgetGlobalVar('markFlagged', $sTmp, SQ_POST)) ? 'setFlagged' : $sButton;
2005 $sButton = (sqgetGlobalVar('markUnflagged', $sTmp, SQ_POST)) ? 'unsetFlagged' : $sButton;
2006 sqgetGlobalVar('targetMailbox', $targetMailbox, SQ_POST);
2007 sqgetGlobalVar('bypass_trash', $bypass_trash, SQ_POST);
2008 sqgetGlobalVar('msg', $msg, SQ_POST);
2009
2010 $sError = '';
2011 $mailbox = $aMailbox['NAME'];
2012
2013 /* retrieve the check boxes */
2014 $aUid = (isset($msg) && is_array($msg)) ? array_values($msg) : $aUid;
2015
2016 if (count($aUid) && $sButton != 'expunge') {
2017 $aUpdatedMsgs = false;
2018 $bExpunge = false;
2019 switch ($sButton) {
2020 case 'setDeleted':
2021 // check if id exists in case we come from read_body
2022 if (count($aUid) == 1 && is_array($aMailbox['UIDSET'][$aMailbox['SETINDEX']]) &&
2023 !in_array($aUid[0],$aMailbox['UIDSET'][$aMailbox['SETINDEX']])) {
2024 break;
2025 }
2026 $aUpdatedMsgs = sqimap_msgs_list_delete($imapConnection, $mailbox, $aUid,$bypass_trash);
2027 $bExpunge = true;
2028 break;
2029 case 'unsetDeleted':
2030 case 'setSeen':
2031 case 'unsetSeen':
2032 case 'setFlagged':
2033 case 'unsetFlagged':
2034 // get flag
2035 $sFlag = (substr($sButton,0,3) == 'set') ? '\\'.substr($sButton,3) : '\\'.substr($sButton,5);
2036 $bSet = (substr($sButton,0,3) == 'set') ? true : false;
2037 $aUpdatedMsgs = sqimap_toggle_flag($imapConnection, $aUid, $sFlag, $bSet, true);
2038 break;
2039 case 'move':
2040 $aUpdatedMsgs = sqimap_msgs_list_move($imapConnection,$aUid,$targetMailbox);
2041 sqsession_register($targetMailbox,'lastTargetMailbox');
2042 $bExpunge = true;
2043 break;
2044 case 'attache':
2045 $aMsgHeaders = array();
2046 foreach ($aUid as $iUid) {
2047 $aMsgHeaders[$iUid] = $aMailbox['MSG_HEADERS'][$iUid];
2048 }
2049 if (count($aMsgHeaders)) {
2050 $composesession = attachSelectedMessages($imapConnection,$aMsgHeaders);
2051 // dirty hack, add info to $aMailbox
2052 $aMailbox['FORWARD_SESSION'] = $composesession;
2053 }
2054 break;
2055 default:
2056 // Hook for plugin buttons
2057 do_hook_function('mailbox_display_button_action', $aUid);
2058 break;
2059 }
2060 /**
2061 * Updates messages is an array containing the result of the untagged
2062 * fetch responses send by the imap server due to a flag change. That
2063 * response is parsed in a array with msg arrays by the parseFetch function
2064 */
2065 if ($aUpdatedMsgs) {
2066 // Update the message headers cache
2067 $aDeleted = array();
2068 foreach ($aUpdatedMsgs as $iUid => $aMsg) {
2069 if (isset($aMsg['FLAGS'])) {
2070 /**
2071 * Only update the cached headers if the header is
2072 * cached.
2073 */
2074 if (isset($aMailbox['MSG_HEADERS'][$iUid])) {
2075 $aMailbox['MSG_HEADERS'][$iUid]['FLAGS'] = $aMsg['FLAGS'];
2076 }
2077 /**
2078 * Count the messages with the \Delete flag set so we can determine
2079 * if the number of expunged messages equals the number of flagged
2080 * messages for deletion.
2081 */
2082 if (isset($aMsg['FLAGS']['\\deleted']) && $aMsg['FLAGS']['\\deleted']) {
2083 $aDeleted[] = $iUid;
2084 }
2085 }
2086 }
2087 if ($bExpunge && $aMailbox['AUTO_EXPUNGE'] &&
2088 $iExpungedMessages = sqimap_mailbox_expunge($imapConnection, $aMailbox['NAME'], true))
2089 {
2090 if (count($aDeleted) != $iExpungedMessages) {
2091 // there are more messages deleted permanently then we expected
2092 // invalidate the cache
2093 $aMailbox['UIDSET'][$aMailbox['SETINDEX']] = false;
2094 $aMailbox['MSG_HEADERS'] = false;
2095 } else {
2096 // remove expunged messages from cache
2097 $aUidSet = $aMailbox['UIDSET'][$aMailbox['SETINDEX']];
2098 if (is_array($aUidSet)) {
2099 // create a UID => array index temp array
2100 $aUidSetDummy = array_flip($aUidSet);
2101 foreach ($aDeleted as $iUid) {
2102 // get the id as well in case of SQM_SORT_NONE
2103 if ($aMailbox['SORT'] == SQSORT_NONE) {
2104 $aMailbox['ID'] = false;
2105 //$iId = $aMailbox['MSG_HEADERS'][$iUid]['ID'];
2106 //unset($aMailbox['ID'][$iId]);
2107 }
2108 // unset the UID and message header
2109 unset($aUidSetDummy[$iUid]);
2110 unset($aMailbox['MSG_HEADERS'][$iUid]);
2111 }
2112 $aMailbox['UIDSET'][$aMailbox['SETINDEX']] = array_keys($aUidSetDummy);
2113 }
2114 }
2115 // update EXISTS info
2116 if ($iExpungedMessages) {
2117 $aMailbox['EXISTS'] -= (int) $iExpungedMessages;
2118 }
2119 // Change the startMessage number if the mailbox was changed
2120 if (($aMailbox['PAGEOFFSET']-1) >= $aMailbox['EXISTS']) {
2121 $aMailbox['PAGEOFFSET'] = ($aMailbox['PAGEOFFSET'] > $aMailbox['LIMIT']) ?
2122 $aMailbox['PAGEOFFSET'] - $aMailbox['LIMIT'] : 1;
2123 $aMailbox['OFFSET'] = $aMailbox['PAGEOFFSET'] - 1 ;
2124 }
2125 }
2126 }
2127 } else {
2128 if ($sButton == 'expunge') {
2129 /**
2130 * on expunge we do not know which messages will be deleted
2131 * so it's useless to try to sync the cache
2132
2133 * Close the mailbox so we do not need to parse the untagged expunge
2134 * responses which do not contain uid info.
2135 * NB: Closing a mailbox is faster then expunge because the imap
2136 * server does not need to generate the untagged expunge responses
2137 */
2138 sqimap_run_command($imapConnection,'CLOSE',false,$result,$message);
2139 $aMbxResponse = sqimap_mailbox_select($imapConnection,$aMailbox['NAME']);
2140 // update the $aMailbox array
2141 $aMailbox['EXISTS'] = $aMbxResponse['EXISTS'];
2142 $aMailbox['UIDSET'] = false;
2143 } else {
2144 if ($sButton) {
2145 $sError = _("No messages were selected.");
2146 }
2147 }
2148 }
2149 return $sError;
2150 }
2151
2152 function attachSelectedMessages($imapConnection,$aMsgHeaders) {
2153 global $username, $attachment_dir,
2154 $data_dir, $composesession,
2155 $compose_messages;
2156
2157 if (!isset($compose_messages)) {
2158 $compose_messages = array();
2159 sqsession_register($compose_messages,'compose_messages');
2160 }
2161
2162 if (!$composesession) {
2163 $composesession = 1;
2164 sqsession_register($composesession,'composesession');
2165 } else {
2166 $composesession++;
2167 sqsession_register($composesession,'composesession');
2168 }
2169
2170 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
2171
2172 $composeMessage = new Message();
2173 $rfc822_header = new Rfc822Header();
2174 $composeMessage->rfc822_header = $rfc822_header;
2175 $composeMessage->reply_rfc822_header = '';
2176
2177 foreach($aMsgHeaders as $iUid => $aMsgHeader) {
2178 /**
2179 * Retrieve the full message
2180 */
2181 $body_a = sqimap_run_command($imapConnection, "FETCH $iUid RFC822", true, $response, $readmessage, TRUE);
2182
2183 if ($response == 'OK') {
2184 $subject = (isset($aMsgHeader['SUBJECT'])) ? $aMsgHeader['SUBJECT'] : $iUid;
2185
2186 array_shift($body_a);
2187 array_pop($body_a);
2188 $body = implode('', $body_a);
2189 $body .= "\r\n";
2190
2191 $localfilename = GenerateRandomString(32, 'FILE', 7);
2192 $full_localfilename = "$hashed_attachment_dir/$localfilename";
2193
2194 $fp = fopen( $full_localfilename, 'wb');
2195 fwrite ($fp, $body);
2196 fclose($fp);
2197 $composeMessage->initAttachment('message/rfc822',$subject.'.msg',
2198 $full_localfilename);
2199 }
2200 }
2201
2202 $compose_messages[$composesession] = $composeMessage;
2203 sqsession_register($compose_messages,'compose_messages');
2204 return $composesession;
2205 }
2206
2207 // vim: et ts=4
2208 ?>