e93a9e0031aae42984ade6ee77be788eb39f8627
[squirrelmail.git] / functions / mailbox_display.php
1 <?php
2
3 /**
4 ** mailbox_display.php
5 **
6 ** This contains functions that display mailbox information, such as the
7 ** table row that has sender, date, subject, etc...
8 **
9 **/
10
11 $mailbox_display_php = true;
12
13 function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $startMessage, $where, $what) {
14 global $color, $msgs, $msort;
15 global $sent_folder;
16 global $message_highlight_list;
17 global $index_order;
18
19 $msg = $msgs[$key];
20
21 $senderName = sqimap_find_displayable_name($msg["FROM"]);
22 $urlMailbox = urlencode($mailbox);
23 $subject = trim($msg["SUBJECT"]);
24 if ($subject == "")
25 $subject = _("(no subject)");
26
27 echo "<TR>\n";
28
29 if ($msg["FLAG_FLAGGED"] == true) { $flag = "<font color=$color[2]>"; $flag_end = "</font>"; }
30 if ($msg["FLAG_SEEN"] == false) { $bold = "<b>"; $bold_end = "</b>"; }
31 if ($mailbox == $sent_folder) { $italic = "<i>"; $italic_end = "</i>"; }
32
33 for ($i=0; $i < count($message_highlight_list); $i++) {
34 if (trim($message_highlight_list[$i]["value"]) != "") {
35 if ($message_highlight_list[$i]["match_type"] == "to_cc") {
36 if (strpos("^^".strtolower($msg["TO"]), strtolower($message_highlight_list[$i]["value"])) || strpos("^^".strtolower($msg["CC"]), strtolower($message_highlight_list[$i]["value"]))) {
37 $hlt_color = $message_highlight_list[$i]["color"];
38 continue;
39 }
40 } else if (strpos("^^".strtolower($msg[strtoupper($message_highlight_list[$i]["match_type"])]),strtolower($message_highlight_list[$i]["value"]))) {
41 $hlt_color = $message_highlight_list[$i]["color"];
42 continue;
43 }
44 }
45 }
46
47 if (!$hlt_color)
48 $hlt_color = $color[4];
49
50 if ($where && $what) {
51 $search_stuff = "&where=".urlencode($where)."&what=".urlencode($what);
52 }
53
54 for ($i=1; $i <= count($index_order); $i++) {
55 switch ($index_order[$i]) {
56 case 1: # checkbox
57 echo " <td width=1% bgcolor=$hlt_color align=center><input type=checkbox name=\"msg[$t]\" value=".$msg["ID"]."$checked></TD>\n";
58 break;
59 case 2: # from
60 echo " <td width=30% bgcolor=$hlt_color>$italic$bold$flag$senderName$flag_end$bold_end$italic_end</td>\n";
61 break;
62 case 3: # date
63 echo " <td nowrap width=1% bgcolor=$hlt_color><center>$bold$flag".$msg["DATE_STRING"]."$flag_end$bold_end</center></td>\n";
64 break;
65 case 4: # subject
66 echo " <td bgcolor=$hlt_color>$bold<a href=\"read_body.php?mailbox=$urlMailbox&passed_id=".$msg["ID"]."&startMessage=$startMessage&show_more=0$search_stuff\">$flag$subject$flag_end</a>$bold_end</td>\n";
67 break;
68 case 5: # flags
69 $stuff = false;
70 echo " <td bgcolor=$hlt_color width=1% nowrap><b><small>\n";
71 if ($msg["FLAG_ANSWERED"] == true) {
72 echo "A\n";
73 $stuff = true;
74 }
75 if ($msg["TYPE0"] == "multipart") {
76 echo "+\n";
77 $stuff = true;
78 }
79 if (ereg("(1|2)",substr($msg["PRIORITY"],0,1))) {
80 echo "<font color=$color[1]>!</font>\n";
81 $stuff = true;
82 }
83 if ($msg["FLAG_DELETED"]) {
84 echo "<font color=\"$color[1]\">D</font>\n";
85 $stuff = true;
86 }
87
88 if (!$stuff) echo "&nbsp;\n";
89 echo "</small></b></td>\n";
90 break;
91 case 6: # size
92 echo " <td bgcolor=$hlt_color width=1%>$bold".show_readable_size($msg['SIZE'])."$bold_end</td>\n";
93 break;
94 }
95 }
96
97
98 echo "</tr>\n";
99 }
100
101 /**
102 ** This function loops through a group of messages in the mailbox and shows them
103 **/
104 function showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color,$show_num, $use_cache) {
105 global $msgs, $msort;
106 global $sent_folder;
107 global $message_highlight_list;
108 global $auto_expunge;
109
110 sqimap_mailbox_expunge($imapConnection, $mailbox);
111 sqimap_mailbox_select($imapConnection, $mailbox);
112
113 if (!$use_cache) {
114 // if it's sorted
115 if ($numMessages >= 1) {
116 if ($sort < 6) {
117 for ($q = 0; $q < $numMessages; $q++) {
118 if($mailbox == $sent_folder)
119 $hdr = sqimap_get_small_header ($imapConnection, $q+1, true);
120 else
121 $hdr = sqimap_get_small_header ($imapConnection, $q+1, false);
122
123 $from[$q] = $hdr->from;
124 $date[$q] = $hdr->date;
125 $subject[$q] = $hdr->subject;
126 $to[$q] = $hdr->to;
127 $priority[$q] = $hdr->priority;
128 $cc[$q] = $hdr->cc;
129 $size[$q] = $hdr->size;
130 $type[$q] = $hdr->type0;
131 $flags[$q] = sqimap_get_flags ($imapConnection, $q+1);
132 }
133 } else {
134 // if it's not sorted
135 if ($startMessage + ($show_num - 1) < $numMessages) {
136 $endMessage = $startMessage + ($show_num-1);
137 } else {
138 $endMessage = $numMessages;
139 }
140
141 if ($endMessage < $startMessage) {
142 $startMessage = $startMessage - $show_num;
143 if ($startMessage < 1)
144 $startMessage = 1;
145 }
146
147 $j = $startMessage - 1;;
148 echo $startMessage . " - " . $endMessage . "<br>";
149 for ($q = $startMessage; $q <= $endMessage; $q++) {
150 if($mailbox == $sent_folder)
151 $hdr = sqimap_get_small_header ($imapConnection, $q, true);
152 else
153 $hdr = sqimap_get_small_header ($imapConnection, $q, false);
154
155 $from[$j] = $hdr->from;
156 $date[$j] = $hdr->date;
157 $subject[$j] = $hdr->subject;
158 $to[$j] = $hdr->to;
159 $priority[$j] = $hdr->priority;
160 $cc[$j] = $hdr->cc;
161 $size[$j] = $hdr->size;
162 $type[$j] = $hdr->type0;
163 $flags[$j] = sqimap_get_flags ($imapConnection, $q);
164 $j++;
165 }
166 }
167 }
168
169 $j = 0;
170 if ($sort == 6) {
171 $end = $startMessage + $show_num - 1;
172 } else {
173 $end = $numMessages;
174 }
175 while ($j < $end) {
176 $date[$j] = ereg_replace(" ", " ", $date[$j]);
177 $tmpdate = explode(" ", trim($date[$j]));
178
179 $messages[$j]["TIME_STAMP"] = getTimeStamp($tmpdate);
180 $messages[$j]["DATE_STRING"] = getDateString($messages[$j]["TIME_STAMP"]);
181 $messages[$j]["ID"] = $j+1;
182 $messages[$j]["FROM"] = decodeHeader($from[$j]);
183 $messages[$j]["FROM-SORT"] = strtolower(sqimap_find_displayable_name(decodeHeader($from[$j])));
184 $messages[$j]["SUBJECT"] = decodeHeader($subject[$j]);
185 $messages[$j]["SUBJECT-SORT"] = strtolower(decodeHeader($subject[$j]));
186 $messages[$j]["TO"] = decodeHeader($to[$j]);
187 $messages[$j]["PRIORITY"] = $priority[$j];
188 $messages[$j]["CC"] = $cc[$j];
189 $messages[$j]["SIZE"] = $size[$j];
190 $messages[$j]["TYPE0"] = $type[$j];
191
192 # fix SUBJECT-SORT to remove Re:
193 $re_abbr = # Add more here!
194 "vedr|sv|" . # Danish
195 "re|aw"; # English
196 if (eregi("^($re_abbr):[ ]*(.*)$", $messages[$j]['SUBJECT-SORT'], $regs))
197 $messages[$j]['SUBJECT-SORT'] = $regs[2];
198
199 $num = 0;
200 while ($num < count($flags[$j])) {
201 if ($flags[$j][$num] == "Deleted") {
202 $messages[$j]["FLAG_DELETED"] = true;
203 }
204 elseif ($flags[$j][$num] == "Answered") {
205 $messages[$j]["FLAG_ANSWERED"] = true;
206 }
207 elseif ($flags[$j][$num] == "Seen") {
208 $messages[$j]["FLAG_SEEN"] = true;
209 }
210 elseif ($flags[$j][$num] == "Flagged") {
211 $messages[$j]["FLAG_FLAGGED"] = true;
212 }
213 $num++;
214 }
215 $j++;
216 }
217
218 /* Only ignore messages flagged as deleted if we are using a
219 * trash folder or auto_expunge */
220 if (($move_to_trash || $auto_expunge) && $sort != 6)
221 {
222 /** Find and remove the ones that are deleted */
223 $i = 0;
224 $j = 0;
225 while ($j < $numMessages) {
226 if ($messages[$j]["FLAG_DELETED"] == true) {
227 $j++;
228 continue;
229 }
230 $msgs[$i] = $messages[$j];
231
232 $i++;
233 $j++;
234 }
235 $numMessages = $i;
236 } else {
237 $msgs = $messages;
238 }
239 }
240
241 // There's gotta be messages in the array for it to sort them.
242 if ($numMessages > 0 && ! $use_cache) {
243 /** 0 = Date (up) 4 = Subject (up)
244 ** 1 = Date (dn) 5 = Subject (dn)
245 ** 2 = Name (up)
246 ** 3 = Name (dn)
247 **/
248 session_unregister("msgs");
249 if (($sort == 0) || ($sort == 1))
250 $msort = array_cleave ($msgs, "TIME_STAMP");
251 if (($sort == 2) || ($sort == 3))
252 $msort = array_cleave ($msgs, "FROM-SORT");
253 if (($sort == 4) || ($sort == 5))
254 $msort = array_cleave ($msgs, "SUBJECT-SORT");
255 if ($sort == 6)
256 $msort = $msgs;
257
258 if ($sort < 6) {
259 if($sort % 2) {
260 asort($msort);
261 } else {
262 arsort($msort);
263 }
264 }
265 session_register("msort");
266 }
267 displayMessageArray($imapConnection, $numMessages, $startMessage, $msgs, $msort, $mailbox, $sort, $color,$show_num);
268 session_register("msgs");
269 }
270
271 // generic function to convert the msgs array into an HTML table
272 function displayMessageArray($imapConnection, $numMessages, $startMessage, &$msgs, $msort, $mailbox, $sort, $color,$show_num) {
273 global $folder_prefix, $sent_folder;
274 global $imapServerAddress;
275 global $index_order;
276
277 // if cache isn't already set, do it now
278 if (!session_is_registered("msgs"))
279 session_register("msgs");
280 if (!session_is_registered("msort"))
281 session_register("msort");
282
283
284 if ($startMessage + ($show_num - 1) < $numMessages) {
285 $endMessage = $startMessage + ($show_num-1);
286 } else {
287 $endMessage = $numMessages;
288 }
289
290 if ($endMessage < $startMessage) {
291 $startMessage = $startMessage - $show_num;
292 if ($startMessage < 1)
293 $startMessage = 1;
294 }
295
296 $nextGroup = $startMessage + $show_num;
297 $prevGroup = $startMessage - $show_num;
298 $urlMailbox = urlencode($mailbox);
299
300 do_hook("mailbox_index_before");
301
302 $Message = '';
303 if ($startMessage < $endMessage) {
304 $Message = _("Viewing messages") ." <B>$startMessage</B> ". _("to") ." <B>$endMessage</B> ($numMessages " . _("total") . ")\n";
305 } elseif ($startMessage == $endMessage) {
306 $Message = _("Viewing message") ." <B>$startMessage</B> ($numMessages " . _("total") . ")\n";
307 }
308
309 $More = '';
310 if ($sort == 6) {
311 $use = 0;
312 } else {
313 $use = 1;
314 }
315 if (($nextGroup <= $numMessages) && ($prevGroup >= 0)) {
316 $More = "<A HREF=\"right_main.php?use_mailbox_cache=$use&startMessage=$prevGroup&mailbox=$urlMailbox\" TARGET=\"right\">". _("Previous") ."</A> | \n";
317 $More .= "<A HREF=\"right_main.php?use_mailbox_cache=$use&&startMessage=$nextGroup&mailbox=$urlMailbox\" TARGET=\"right\">". _("Next") ."</A>\n";
318 }
319 elseif (($nextGroup > $numMessages) && ($prevGroup >= 0)) {
320 $More = "<A HREF=\"right_main.php?use_mailbox_cache=$use&startMessage=$prevGroup&mailbox=$urlMailbox\" TARGET=\"right\">". _("Previous") ."</A> | \n";
321 $More .= "<FONT COLOR=\"$color[9]\">"._("Next")."</FONT>\n";
322 }
323 elseif (($nextGroup <= $numMessages) && ($prevGroup < 0)) {
324 $More = "<FONT COLOR=\"$color[9]\">"._("Previous")."</FONT> | \n";
325 $More .= "<A HREF=\"right_main.php?use_mailbox_cache=$use&startMessage=$nextGroup&mailbox=$urlMailbox\" TARGET=\"right\">". _("Next") ."</A>\n";
326 }
327
328 mail_message_listing_beginning($imapConnection,
329 "move_messages.php?msg=$msg&mailbox=$urlMailbox&startMessage=$startMessage",
330 $mailbox, $sort, $Message, $More);
331
332
333 // loop through and display the info for each message.
334 $t = 0; // $t is used for the checkbox number
335 if ($numMessages == 0) { // if there's no messages in this folder
336 echo "<TR><TD BGCOLOR=\"$color[4]\" COLSPAN=" . count($index_order);
337 echo "><CENTER><BR><B>". _("THIS FOLDER IS EMPTY") ."</B><BR>&nbsp;</CENTER></TD></TR>";
338 } elseif ($startMessage == $endMessage) { // if there's only one message in the box, handle it different.
339 $i = $startMessage;
340 reset($msort);
341 do {
342 $key = key($msort);
343 next($msort);
344 $k++;
345 } while (isset ($key) && ($k < $i));
346 printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $startMessage, 0, 0);
347 } else {
348 $i = $startMessage;
349 reset($msort);
350 do {
351 $key = key($msort);
352 next($msort);
353 $k++;
354 } while (isset ($key) && ($k < $i));
355
356 do {
357 printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $startMessage, 0, 0);
358 $key = key($msort);
359 $t++;
360 $i++;
361 next($msort);
362 } while ($i < ($endMessage+1));
363 }
364 echo "</TABLE>";
365
366 echo "</td></tr>\n";
367
368 if ($More)
369 {
370 echo "<TR BGCOLOR=\"$color[4]\"><TD>$More</td></tr>\n";
371 }
372 echo "</table>"; /** End of message-list table */
373
374 do_hook("mailbox_index_after");
375 }
376
377 /* Displays the standard message list header.
378 * To finish the table, you need to do a "</table></table>";
379 * $moveURL is the URL to submit the delete/move form to
380 * $mailbox is the current mailbox
381 * $sort is the current sorting method (-1 for no sorting available [searches])
382 * $Message is a message that is centered on top of the list
383 * $More is a second line that is left aligned
384 */
385 function mail_message_listing_beginning($imapConnection, $moveURL,
386 $mailbox = '', $sort = -1, $Message = '', $More = '')
387 {
388 global $color, $index_order, $auto_expunge, $move_to_trash;
389
390 /** This is the beginning of the message list table. It wraps around all messages */
391 echo "<TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0>";
392
393 if ($Message)
394 {
395 echo "<TR BGCOLOR=\"$color[4]\"><TD align=center>$Message</td></tr>\n";
396 }
397
398 if ($More)
399 {
400 echo "<TR BGCOLOR=\"$color[4]\"><TD>$More</td></tr>\n";
401 }
402
403 /** The delete and move options */
404 echo "<TR><TD BGCOLOR=\"$color[0]\">";
405
406 echo "\n\n\n<FORM name=messageList method=post action=\"$moveURL\">\n";
407 echo "<TABLE BGCOLOR=\"$color[0]\" COLS=2 BORDER=0 cellpadding=0 cellspacing=0 width=100%>\n";
408 echo " <TR>\n";
409 echo " <TD WIDTH=60% ALIGN=LEFT VALIGN=CENTER>\n";
410 echo " <NOBR><SMALL>". _("Move selected to:") ."</SMALL>";
411 echo " <TT><SMALL><SELECT NAME=\"targetMailbox\">";
412
413 $boxes = sqimap_mailbox_list($imapConnection);
414 for ($i = 0; $i < count($boxes); $i++) {
415 if ($boxes[$i]["flags"][0] != "noselect" &&
416 $boxes[$i]["flags"][1] != "noselect" &&
417 $boxes[$i]["flags"][2] != "noselect") {
418 $box = $boxes[$i]["unformatted"];
419 $box2 = replace_spaces($boxes[$i]["formatted"]);
420 echo " <OPTION VALUE=\"$box\">$box2</option>\n";
421 }
422 }
423 echo " </SELECT></SMALL></TT>";
424 echo " <SMALL><INPUT TYPE=SUBMIT NAME=\"moveButton\" VALUE=\"". _("Move") ."\"></SMALL></NOBR>\n";
425 echo " </TD>\n";
426 echo " <TD WIDTH=40% ALIGN=RIGHT>\n";
427 if (! $move_to_trash && ! $auto_expunge) {
428 echo " <NOBR><SMALL><INPUT TYPE=SUBMIT NAME=\"expungeButton\" VALUE=\"". _("Expunge") ."\">&nbsp;". _("mailbox") ."</SMALL></NOBR>&nbsp;&nbsp;\n";
429 }
430 echo " <NOBR><SMALL><INPUT TYPE=SUBMIT VALUE=\"". _("Delete") ."\">&nbsp;". _("checked messages") ."</SMALL></NOBR>\n";
431 echo " </TD>\n";
432 echo " </TR>\n";
433
434 echo "</TABLE>\n";
435 do_hook("mailbox_form_before");
436 echo "</TD></TR>";
437
438 echo "<TR><TD BGCOLOR=\"$color[0]\">";
439 echo "<TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=1 BGCOLOR=\"$color[0]\">";
440 echo "<TR BGCOLOR=\"$color[5]\" ALIGN=\"center\">";
441
442 $urlMailbox=urlencode($mailbox);
443
444 // Print the headers
445 for ($i=1; $i <= count($index_order); $i++) {
446 switch ($index_order[$i]) {
447 case 1: # checkbox
448 case 5: # flags
449 echo " <TD WIDTH=1%><B>&nbsp;</B></TD>";
450 break;
451
452 case 2: # from
453 if ($mailbox == $sent_folder)
454 echo " <TD WIDTH=30%><B>". _("To") ."</B>";
455 else
456 echo " <TD WIDTH=30%><B>". _("From") ."</B>";
457
458 if ($sort == 2)
459 echo " <A HREF=\"right_main.php?newsort=3&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/up_pointer.gif\" BORDER=0></A></TD>\n";
460 elseif ($sort == 3)
461 echo " <A HREF=\"right_main.php?newsort=2&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/down_pointer.gif\" BORDER=0></A></TD>\n";
462 elseif ($sort != -1)
463 echo " <A HREF=\"right_main.php?newsort=3&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/sort_none.gif\" BORDER=0></A></TD>\n";
464 break;
465
466 case 3: # date
467 echo " <TD nowrap WIDTH=1%><B>". _("Date") ."</B>";
468 if ($sort == 0)
469 echo " <A HREF=\"right_main.php?newsort=1&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/up_pointer.gif\" BORDER=0></A></TD>\n";
470 elseif ($sort == 1)
471 echo " <A HREF=\"right_main.php?newsort=6&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/down_pointer.gif\" BORDER=0></A></TD>\n";
472 elseif ($sort == 6)
473 echo " <A HREF=\"right_main.php?newsort=0&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/sort_none.gif\" BORDER=0></A></TD>\n";
474 elseif ($sort != -1)
475 echo " <A HREF=\"right_main.php?newsort=0&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/sort_none.gif\" BORDER=0></A></TD>\n";
476 break;
477
478 case 4: # subject
479 echo " <TD WIDTH=%><B>". _("Subject") ."</B>\n";
480 if ($sort == 4)
481 echo " <A HREF=\"right_main.php?newsort=5&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/up_pointer.gif\" BORDER=0></A></TD>\n";
482 elseif ($sort == 5)
483 echo " <A HREF=\"right_main.php?newsort=4&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/down_pointer.gif\" BORDER=0></A></TD>\n";
484 elseif ($sort != -1)
485 echo " <A HREF=\"right_main.php?newsort=5&startMessage=1&mailbox=$urlMailbox\" TARGET=\"right\"><IMG SRC=\"../images/sort_none.gif\" BORDER=0></A></TD>\n";
486 break;
487
488 case 6: # size
489 echo " <TD WIDTH=1%><b>" . _("Size")."</b></TD>\n";
490 break;
491 }
492 }
493 echo "</TR>\n";
494 }
495 ?>