google translate options. rtl fixes.
[squirrelmail.git] / src / left_main.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * left_main.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This is the code for the left bar. The left bar shows the folders
10 * available, and has cookie information.
11 *
12 * $Id$
8f6f9ba5 13 * @package squirrelmail
1c52ba77 14 */
35586184 15
8f6f9ba5 16/** Path for SquirrelMail required files. */
dcc1cc82 17define('SM_PATH','../');
86725763 18
19/* SquirrelMail required files. */
08185f2a 20require_once(SM_PATH . 'include/validate.php');
86725763 21require_once(SM_PATH . 'functions/imap.php');
22require_once(SM_PATH . 'functions/plugin.php');
23require_once(SM_PATH . 'functions/page_header.php');
24require_once(SM_PATH . 'functions/html.php');
b6d26135 25require_once(SM_PATH . 'functions/date.php');
142499d4 26
95e93571 27/* These constants are used for folder stuff. */
28define('SM_BOX_UNCOLLAPSED', 0);
29define('SM_BOX_COLLAPSED', 1);
a6d2e0de 30
2d367c68 31/* --------------------- FUNCTIONS ------------------------- */
525b7ae6 32
95e93571 33function formatMailboxName($imapConnection, $box_array) {
1c52ba77 34
90de1755 35 global $folder_prefix, $trash_folder, $sent_folder,
36 $color, $move_to_sent, $move_to_trash,
37 $unseen_notify, $unseen_type, $collapse_folders,
38 $draft_folder, $save_as_draft,
dcc1cc82 39 $use_special_folder_color;
95e93571 40 $real_box = $box_array['unformatted'];
41 $mailbox = str_replace('&nbsp;','',$box_array['formatted']);
42 $mailboxURL = urlencode($real_box);
dcc1cc82 43
95e93571 44 /* Strip down the mailbox name. */
45 if (ereg("^( *)([^ ]*)$", $mailbox, $regs)) {
46 $mailbox = $regs[2];
47 }
ae012102 48 $unseen = 0;
ae37633c 49 $status = array('','');
ae012102 50 if (($unseen_notify == 2 && $real_box == 'INBOX') ||
51 $unseen_notify == 3) {
a6172cd5 52 $tmp_status = create_unseen_string($real_box, $box_array, $imapConnection, $unseen_type );
53 if ($status !== false) {
54 $status = $tmp_status;
55 }
474fc5fa 56 }
ae37633c 57 list($unseen_string, $unseen) = $status;
ffb1a3d9 58 $special_color = ($use_special_folder_color && isSpecialMailbox($real_box));
f7b1b3b1 59
95e93571 60 /* Start off with a blank line. */
61 $line = '';
235a65d5 62
95e93571 63 /* If there are unseen message, bold the line. */
64 if ($unseen > 0) { $line .= '<B>'; }
a6d2e0de 65
fb0ca797 66 /* Create the link for this folder. */
474fc5fa 67 if ($status !== false) {
dcc1cc82 68 $line .= '<a href="right_main.php?PG_SHOWALL=0&amp;sort=0&amp;startMessage=1&amp;mailbox='.
69 $mailboxURL.'" TARGET="right" STYLE="text-decoration:none">';
a6172cd5 70 }
1c52ba77 71 if ($special_color) {
3fde693b 72 $line .= "<font color=\"$color[11]\">";
1c52ba77 73 }
a551489c 74 if ( $mailbox == 'INBOX' ) {
75 $line .= _("INBOX");
76 } else {
77 $line .= str_replace(' ','&nbsp;',$mailbox);
78 }
90de1755 79 if ($special_color == TRUE)
3fde693b 80 $line .= '</font>';
474fc5fa 81 if ($status !== false) {
a6172cd5 82 $line .= '</a>';
474fc5fa 83 }
a6d2e0de 84
95e93571 85 /* If there are unseen message, close bolding. */
86 if ($unseen > 0) { $line .= "</B>"; }
2d367c68 87
95e93571 88 /* Print unseen information. */
ffb1a3d9 89 if ($unseen_string != '') {
95e93571 90 $line .= "&nbsp;<SMALL>$unseen_string</SMALL>";
2016e645 91 }
92
a6172cd5 93 /* If it's the trash folder, show a purge link when needed */
1c52ba77 94 if (($move_to_trash) && ($real_box == $trash_folder)) {
95e93571 95 if (! isset($numMessages)) {
96 $numMessages = sqimap_get_num_messages($imapConnection, $real_box);
a6d2e0de 97 }
a6d2e0de 98
4d5537d1 99 if (($numMessages > 0) or ($box_array['parent'] == 1)) {
95e93571 100 $urlMailbox = urlencode($real_box);
101 $line .= "\n<small>\n" .
dcc1cc82 102 "&nbsp;&nbsp;(<A HREF=\"empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</A>)" .
7fb54066 103 "</small>";
c3ccfa19 104 } else {
105 $line .= concat_hook_function('left_main_after_each_folder',
106 array(isset($numMessages) ? $numMessages : '',$real_box,$imapConnection));
a6d2e0de 107 }
108 }
a6d2e0de 109
95e93571 110 /* Return the final product. */
111 return ($line);
112}
a6d2e0de 113
95e93571 114/**
115 * Recursive function that computes the collapsed status and parent
116 * (or not parent) status of this box, and the visiblity and collapsed
117 * status and parent (or not parent) status for all children boxes.
118 */
119function compute_folder_children(&$parbox, $boxcount) {
120 global $boxes, $data_dir, $username, $collapse_folders;
121 $nextbox = $parbox + 1;
122
123 /* Retreive the name for the parent box. */
124 $parbox_name = $boxes[$parbox]['unformatted'];
125
126 /* 'Initialize' this parent box to childless. */
1c52ba77 127 $boxes[$parbox]['parent'] = FALSE;
95e93571 128
129 /* Compute the collapse status for this box. */
130 if( isset($collapse_folders) && $collapse_folders ) {
131 $collapse = getPref($data_dir, $username, 'collapse_folder_' . $parbox_name);
132 $collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
133 } else {
134 $collapse = SM_BOX_UNCOLLAPSED;
a6d2e0de 135 }
95e93571 136 $boxes[$parbox]['collapse'] = $collapse;
2d367c68 137
95e93571 138 /* Otherwise, get the name of the next box. */
1c52ba77 139 if (isset($boxes[$nextbox]['unformatted'])) {
95e93571 140 $nextbox_name = $boxes[$nextbox]['unformatted'];
1c52ba77 141 } else {
95e93571 142 $nextbox_name = '';
1c52ba77 143 }
a6d2e0de 144
95e93571 145 /* Compute any children boxes for this box. */
146 while (($nextbox < $boxcount) &&
147 (is_parent_box($boxes[$nextbox]['unformatted'], $parbox_name))) {
a6d2e0de 148
95e93571 149 /* Note that this 'parent' box has at least one child. */
1c52ba77 150 $boxes[$parbox]['parent'] = TRUE;
a6d2e0de 151
95e93571 152 /* Compute the visiblity of this box. */
1c52ba77 153 $boxes[$nextbox]['visible'] = ($boxes[$parbox]['visible'] &&
154 ($boxes[$parbox]['collapse'] != SM_BOX_COLLAPSED));
a6d2e0de 155
95e93571 156 /* Compute the visibility of any child boxes. */
157 compute_folder_children($nextbox, $boxcount);
158 }
2d367c68 159
95e93571 160 /* Set the parent box to the current next box. */
161 $parbox = $nextbox;
162}
2d367c68 163
95e93571 164/**
165 * Create the link for a parent folder that will allow that
166 * parent folder to either be collapsed or expaned, as is
167 * currently appropriate.
168 */
169function create_collapse_link($boxnum) {
70bf5a7f 170 global $boxes, $imapConnection, $unseen_notify, $color;
95e93571 171 $mailbox = urlencode($boxes[$boxnum]['unformatted']);
a6172cd5 172
95e93571 173 /* Create the link for this collapse link. */
90de1755 174 $link = '<a target="left" style="text-decoration:none" ' .
dcc1cc82 175 'href="left_main.php?';
95e93571 176 if ($boxes[$boxnum]['collapse'] == SM_BOX_COLLAPSED) {
ffb1a3d9 177 $link .= "unfold=$mailbox\">+";
178 } else {
179 $link .= "fold=$mailbox\">-";
180 }
181 $link .= '</a>';
182
d3714d3a 183 $hooklink = do_hook_function('create_collapse_link',$link);
184 if ($hooklink != '')
185 $link = $hooklink;
186
ffb1a3d9 187 /* Return the finished product. */
188 return ($link);
189}
190
191/**
192 * create_unseen_string:
193 *
194 * Create unseen and total message count for both this folder and
195 * it's subfolders.
196 *
197 * @param string $boxName name of the current mailbox
198 * @param array $boxArray array for the current mailbox
199 * @param $imapConnection current imap connection in use
8f6f9ba5 200 * @return array unseen message string (for display), unseen message count
ffb1a3d9 201 */
ae012102 202function create_unseen_string($boxName, $boxArray, $imapConnection, $unseen_type) {
474fc5fa 203 global $boxes, $unseen_type, $color, $unseen_cum;
ffb1a3d9 204
205 /* Initialize the return value. */
0210ab4d 206 $result = array(0,0);
ffb1a3d9 207
208 /* Initialize the counts for this folder. */
209 $boxUnseenCount = 0;
210 $boxMessageCount = 0;
211 $totalUnseenCount = 0;
212 $totalMessageCount = 0;
213
214 /* Collect the counts for this box alone. */
474fc5fa 215 $status = sqimap_status_messages($imapConnection, $boxName);
216 $boxUnseenCount = $status['UNSEEN'];
217 if ($boxUnseenCount === false) {
a6172cd5 218 return false;
474fc5fa 219 }
ffb1a3d9 220 if ($unseen_type == 2) {
474fc5fa 221 $boxMessageCount = $status['MESSAGES'];
ffb1a3d9 222 }
70bf5a7f 223
22986991 224 /* Initialize the total counts. */
225
474fc5fa 226 if ($boxArray['collapse'] == SM_BOX_COLLAPSED && $unseen_cum) {
ffb1a3d9 227 /* Collect the counts for this boxes subfolders. */
228 $curBoxLength = strlen($boxName);
229 $boxCount = count($boxes);
22986991 230
ffb1a3d9 231 for ($i = 0; $i < $boxCount; ++$i) {
232 /* Initialize the counts for this subfolder. */
233 $subUnseenCount = 0;
234 $subMessageCount = 0;
235
236 /* Collect the counts for this subfolder. */
237 if (($boxName != $boxes[$i]['unformatted'])
238 && (substr($boxes[$i]['unformatted'], 0, $curBoxLength) == $boxName)
239 && !in_array('noselect', $boxes[$i]['flags'])) {
a6172cd5 240 $status = sqimap_status_messages($imapConnection, $boxes[$i]['unformatted']);
241 $subUnseenCount = $status['UNSEEN'];
ffb1a3d9 242 if ($unseen_type == 2) {
474fc5fa 243 $subMessageCount = $status['MESSAGES'];;
70bf5a7f 244 }
22986991 245 /* Add the counts for this subfolder to the total. */
246 $totalUnseenCount += $subUnseenCount;
247 $totalMessageCount += $subMessageCount;
248 }
70bf5a7f 249 }
22986991 250
251 /* Add the counts for all subfolders to that of the box. */
252 $boxUnseenCount += $totalUnseenCount;
253 $boxMessageCount += $totalMessageCount;
ffb1a3d9 254 }
255
256 /* And create the magic unseen count string. */
257 /* Really a lot more then just the unseen count. */
258 if (($unseen_type == 1) && ($boxUnseenCount > 0)) {
22986991 259 $result[0] = "($boxUnseenCount)";
ffb1a3d9 260 } else if ($unseen_type == 2) {
22986991 261 $result[0] = "($boxUnseenCount/$boxMessageCount)";
ffb1a3d9 262 $result[0] = "<font color=\"$color[11]\">$result[0]</font>";
70bf5a7f 263 }
ffb1a3d9 264
22986991 265 /* Set the unseen count to return to the outside world. */
ffb1a3d9 266 $result[1] = $boxUnseenCount;
2d367c68 267
ffb1a3d9 268 /* Return our happy result. */
269 return ($result);
95e93571 270}
271
272/**
273 * This simple function checks if a box is another box's parent.
274 */
275function is_parent_box($curbox_name, $parbox_name) {
276 global $delimiter;
277
278 /* Extract the name of the parent of the current box. */
279 $curparts = explode($delimiter, $curbox_name);
280 $curname = array_pop($curparts);
281 $actual_parname = implode($delimiter, $curparts);
282 $actual_parname = substr($actual_parname,0,strlen($parbox_name));
283
284 /* Compare the actual with the given parent name. */
285 return ($parbox_name == $actual_parname);
286}
287
3170c448 288function ListBoxes ($boxes, $j=0 ) {
f23f6a3a 289 global $data_dir, $username, $startmessage, $color, $unseen_notify, $unseen_type,
dcc1cc82 290 $move_to_trash, $trash_folder, $collapse_folders, $imapConnection;
c5a52f46 291
ccc4580f 292 if (!isset($boxes) || empty($boxes))
293 return;
294
e4c5976a 295 $pre = '<nobr>';
f23f6a3a 296 $end = '';
297 $collapse = false;
ccc4580f 298 $unseen_found = false;
6c8fee24 299 $unseen = 0;
e4c5976a 300
ccc4580f 301 $mailbox = $boxes->mailboxname_full;
302 $leader = '<tt>';
303 $leader .= str_repeat('&nbsp;&nbsp;',$j);
304 $mailboxURL = urlencode($mailbox);
6c8fee24 305
ccc4580f 306 /* get unseen/total messages information */
307 /* Only need to display info when option is set */
308 if (isset($unseen_notify) && ($unseen_notify > 1) &&
309 (($boxes->unseen !== false) || ($boxes->total !== false))) {
e4c5976a 310
ccc4580f 311 if ($boxes->unseen !== false)
312 $unseen = $boxes->unseen;
dcc1cc82 313
ccc4580f 314 /*
315 Should only display unseen info if the folder is inbox
316 or you set the option for all folders
317 */
318
319 if ((strtolower($mailbox) == 'inbox') || ($unseen_notify == 3)) {
320 $unseen_string = $unseen;
321
322 /* If users requests, display message count too */
323 if (isset($unseen_type) && ($unseen_type == 2) && ($boxes->total !== false)) {
324 $unseen_string .= '/' . $boxes->total;
e4c5976a 325 }
ccc4580f 326
327 $unseen_string = "<font color=\"$color[11]\">($unseen_string)</font>";
328
329 /*
330 Finally allow the script to display the values by setting a boolean.
331 This can only occur if the unseen count is great than 0 (if you have
332 unseen count only), or you have the message count too.
333 */
334 if (($unseen > 0) || (isset($unseen_type) && ($unseen_type ==2))) {
335 $unseen_found = true;
336 }
337 }
338 }
339
340 if (isset($boxes->mbxs[0]) && $collapse_folders) {
341 $collapse = getPref($data_dir, $username, 'collapse_folder_' . $mailbox);
342 $collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
343
344 $link = '<a target="left" style="text-decoration:none" ' .'href="left_main.php?';
345 if ($collapse) {
346 $link .= "unfold=$mailboxURL\">$leader+&nbsp;</tt>";
a6172cd5 347 } else {
ccc4580f 348 $link .= "fold=$mailboxURL\">$leader-&nbsp;</tt>";
a6172cd5 349 }
ccc4580f 350 $link .= '</a>';
351 $pre .= $link;
352 } else {
353 $pre.= $leader . '&nbsp;&nbsp;</tt>';
354 }
a6172cd5 355
ccc4580f 356 /* If there are unseen message, bold the line. */
357 if (($move_to_trash) && ($mailbox == $trash_folder)) {
358 if (! isset($boxes->total)) {
359 $boxes->total = sqimap_status_messages($imapConnection, $mailbox);
360 }
361 if ($unseen > 0) {
362 $pre .= '<b>';
363 }
364 $pre .= "<a href=\"right_main.php?PG_SHOWALL=0&amp;sort=0;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
365 if ($unseen > 0) {
366 $end .= '</b>';
367 }
368 $end .= '</a>';
369 if ($boxes->total > 0) {
e4c5976a 370 if ($unseen > 0) {
371 $pre .= '<b>';
372 }
dcc1cc82 373 $pre .= "<a href=\"right_main.php?PG_SHOWALL=0&amp;sort=0;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
e4c5976a 374 if ($unseen > 0) {
375 $end .= '</b>';
376 }
3170c448 377 /* Print unseen information. */
ccc4580f 378 if ($unseen_found) {
3170c448 379 $end .= "&nbsp;<small>$unseen_string</small>";
380 }
ccc4580f 381 $end .= "\n<small>\n" .
382 "&nbsp;&nbsp;(<a href=\"empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</a>)" .
383 "</small>";
e4c5976a 384 }
ccc4580f 385 } else {
386 if (!$boxes->is_noselect) {
387 if ($unseen > 0) {
388 $pre .= '<b>';
389 }
390 $pre .= "<a href=\"right_main.php?PG_SHOWALL=0&amp;sort=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
391 if ($unseen > 0) {
392 $end .= '</b>';
393 }
394 $end .= '</a>';
e4c5976a 395 }
ccc4580f 396 /* Print unseen information. */
397 if ($unseen_found) {
398 $end .= "&nbsp;<small>$unseen_string</small>";
39027844 399 }
400
ccc4580f 401 }
402
403 $font = '';
404 $fontend = '';
405 if ($boxes->is_special) {
406 $font = "<font color=\"$color[11]\">";
407 $fontend = "</font>";
408 }
409 $end .= '</nobr>';
410
411 if (!$boxes->is_root) {
412 echo "" . $pre .$font. $boxes->mailboxname_sub .$fontend . $end. '<br />' . "\n";
413 $j++;
414 }
415
416 if (!$collapse || $boxes->is_root) {
417 for ($i = 0; $i <count($boxes->mbxs); $i++) {
418 listBoxes($boxes->mbxs[$i],$j);
e4c5976a 419 }
f23f6a3a 420 }
421}
422
c8fa94cf 423function ListAdvancedBoxes ($boxes, $mbx, $j='ID.0000' ) {
f23f6a3a 424 global $data_dir, $username, $startmessage, $color, $unseen_notify, $unseen_type,
dcc1cc82 425 $move_to_trash, $trash_folder, $collapse_folders;
f23f6a3a 426
ccc4580f 427 if (!isset($boxes) || empty($boxes))
428 return;
4bdcd5e0 429
f23f6a3a 430 /* use_folder_images only works if the images exist in ../images */
c8fa94cf 431 $use_folder_images = true;
f23f6a3a 432
433 $pre = '';
434 $end = '';
435 $collapse = false;
6c8fee24 436 $unseen_found = false;
437 $unseen = 0;
a6172cd5 438
a6172cd5 439 $mailbox = $boxes->mailboxname_full;
440 $mailboxURL = urlencode($mailbox);
f23f6a3a 441
ccc4580f 442 /* get unseen/total messages information */
6c8fee24 443 /* Only need to display info when option is set */
ccc4580f 444 if (isset($unseen_notify) && ($unseen_notify > 1) &&
445 (($boxes->unseen !== false) || ($boxes->total !== false))) {
6c8fee24 446
51ea258b 447 if ($boxes->unseen !== false)
6c8fee24 448 $unseen = $boxes->unseen;
6c8fee24 449
ccc4580f 450 /*
6c8fee24 451 Should only display unseen info if the folder is inbox
452 or you set the option for all folders
453 */
454
455 if ((strtolower($mailbox) == 'inbox') || ($unseen_notify == 3)) {
456 $unseen_string = $unseen;
457
6c8fee24 458 /* If users requests, display message count too */
ccc4580f 459 if (isset($unseen_type) && ($unseen_type == 2) && ($boxes->total !== false)) {
51ea258b 460 $unseen_string .= '/' . $boxes->total;
ccc4580f 461 }
6c8fee24 462
463 $unseen_string = "<font color=\"$color[11]\">($unseen_string)</font>";
464
465 /*
466 Finally allow the script to display the values by setting a boolean.
467 This can only occur if the unseen count is great than 0 (if you have
468 unseen count only), or you have the message count too.
469 */
470 if (($unseen > 0) || (isset($unseen_type) && ($unseen_type ==2))) {
471 $unseen_found = true;
472 }
ccc4580f 473 }
6c8fee24 474 }
a6172cd5 475
476 /* If there are unseen message, bold the line. */
477 if ($unseen > 0) { $pre .= '<b>'; }
478
479 /* color special boxes */
480 if ($boxes->is_special) {
4bdcd5e0 481 $pre .= "<font color=\"$color[11]\">";
a6172cd5 482 $end .= '</font>';
483 }
484
485 /* If there are unseen message, close bolding. */
486 if ($unseen > 0) { $end .= '</b>'; }
487
488 /* Print unseen information. */
ccc4580f 489 if ($unseen_found) {
490 $end .= "&nbsp;$unseen_string";
a6172cd5 491 }
492
493 if (($move_to_trash) && ($mailbox == $trash_folder)) {
4bdcd5e0 494 if (! isset($numMessages)) {
a6172cd5 495 $numMessages = $boxes->total;
4bdcd5e0 496 }
dcc1cc82 497 $pre = "<a class=\"mbx_link\" href=\"right_main.php?PG_SHOWALL=0&amp;sort=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\">" . $pre;
4bdcd5e0 498 $end .= '</a>';
499 if ($numMessages > 0) {
a6172cd5 500 $urlMailbox = urlencode($mailbox);
d1dbd575 501 $end .= "\n<small>\n" .
dcc1cc82 502 "&nbsp;&nbsp;(<a class=\"mbx_link\" href=\"empty_trash.php\">"._("purge")."</a>)" .
a6172cd5 503 "</small>";
4bdcd5e0 504 }
a6172cd5 505 } else {
506 if (!$boxes->is_noselect) { /* \Noselect boxes can't be selected */
dcc1cc82 507 $pre = "<a class=\"mbx_link\" href=\"right_main.php?PG_SHOWALL=0&amp;sort=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\">" . $pre;
4bdcd5e0 508 $end .= '</a>';
a6172cd5 509 }
510 }
511
512 if (!$boxes->is_root) {
513 if ($use_folder_images) {
ccc4580f 514 if ($boxes->is_inbox) {
515 $folder_img = '../images/inbox.png';
516 } else if ($boxes->is_sent) {
517 $folder_img = '../images/senti.png';
518 } else if ($boxes->is_trash) {
519 $folder_img = '../images/delitem.png';
520 } else if ($boxes->is_draft) {
521 $folder_img = '../images/draft.png';
522 } else if ($boxes->is_noinferiors) {
523 $folder_img = '../images/folder_noinf.png';
524 } else {
525 $folder_img = '../images/folder.png';
526 }
527 $folder_img = '&nbsp;<img src="'.$folder_img.'" height="15" valign="center" />&nbsp;';
528 } else {
529 $folder_img = '';
530 }
a6172cd5 531 if (!isset($boxes->mbxs[0])) {
532 echo ' ' . html_tag( 'div',
3be3cf5c 533 '<tt>'. $pre . $folder_img . '</tt>'. $boxes->mailboxname_sub . $end,
3170c448 534 'left', '', 'class="mbx_sub" id="' .$j. '"' ) . "\n";
ccc4580f 535 } else {
a6172cd5 536 /* get collapse information */
3170c448 537 if ($collapse_folders) {
538 $form_entry = $j.'F';
539 if (isset($mbx) && isset($mbx[$form_entry])) {
540 $collapse = $mbx[$form_entry];
541 setPref($data_dir, $username, 'collapse_folder_'.$boxes->mailboxname_full , $collapse ? SM_BOX_COLLAPSED : SM_BOX_UNCOLLAPSED);
ccc4580f 542 } else {
3170c448 543 $collapse = getPref($data_dir, $username, 'collapse_folder_' . $mailbox);
544 $collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
545 }
546 $img_src = ($collapse ? '../images/plus.png' : '../images/minus.png');
547 $collapse_link = '<a href="javascript:void(0)">'." <img src=\"$img_src\" border=\"1\" id=$j onclick=\"hidechilds(this)\" style=\"cursor:hand\" /></a>";
ccc4580f 548 } else {
3170c448 549 $collapse_link='';
ccc4580f 550 }
551 echo ' ' . html_tag( 'div',
a6172cd5 552 $collapse_link . $pre . $folder_img . '&nbsp;'. $boxes->mailboxname_sub . $end ,
3170c448 553 'left', '', 'class="mbx_par" id="' .$j. 'P"' ) . "\n";
ccc4580f 554 echo ' <input type="hidden" name="mbx['.$j. 'F]" value="'.$collapse.'" id="mbx['.$j.'F]" />'."\n";
a6172cd5 555 }
556 }
a6172cd5 557
4bdcd5e0 558 $visible = ($collapse ? ' style="display:none"' : ' style="display:block"');
559 if (isset($boxes->mbxs[0]) && !$boxes->is_root) /* mailbox contains childs */
560 echo html_tag( 'div', '', 'left', '', 'class="par_area" id='.$j.'.0000 '. $visible ) . "\n";
a6172cd5 561
4bdcd5e0 562 if ($j !='ID.0000')
563 $j = $j .'.0000';
564 for ($i = 0; $i <count($boxes->mbxs); $i++) {
565 $j++;
566 ListAdvancedBoxes($boxes->mbxs[$i],$mbx,$j);
f23f6a3a 567 }
4bdcd5e0 568 if (isset($boxes->mbxs[0]) && !$boxes->is_root)
569 echo '</div>'."\n\n";
f23f6a3a 570}
571
572
573
95e93571 574
575/* -------------------- MAIN ------------------------ */
576
f38b7cf0 577/* get globals */
578sqgetGlobalVar('username', $username, SQ_SESSION);
579sqgetGlobalVar('key', $key, SQ_COOKIE);
580sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
581sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
a32985a5 582
f38b7cf0 583sqgetGlobalVar('fold', $fold, SQ_GET);
584sqgetGlobalVar('unfold', $unfold, SQ_GET);
585
586/* end globals */
95e93571 587
588// open a connection on the imap port (143)
589$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output
590
f43c35f8 591/**
592 * Using stristr since older preferences may contain "None" and "none".
593 */
594if (isset($left_refresh) && ($left_refresh != '') &&
d68323ff 595 !stristr($left_refresh, 'none')){
596 $xtra = "\n<meta http-equiv=\"Expires\" content=\"Thu, 01 Dec 1994 16:00:00 GMT\" />\n" .
597 "<meta http-equiv=\"Pragma\" content=\"no-cache\" />\n".
dcc1cc82 598 "<meta http-equiv=\"REFRESH\" content=\"$left_refresh;URL=left_main.php\" />\n";
95e93571 599} else {
600 $xtra = '';
601}
602
f23f6a3a 603/**
a6172cd5 604 * $advanced_tree and $oldway are boolean vars which are default set to default
605 * SM behaviour.
c72be5a6 606 * Setting $oldway to false causes left_main.php to use the new experimental
f23f6a3a 607 * way of getting the mailbox-tree.
a6172cd5 608 * Setting $advanced tree to true causes SM to display a experimental
f23f6a3a 609 * mailbox-tree with dhtml behaviour.
a6172cd5 610 * It only works on browsers which supports css and javascript. The used
c72be5a6 611 * javascript is experimental and doesn't support all browsers.
612 * It has been tested on IE6 an Konquerer 3.0.0-2.
613 * It is now tested and working on: (please test and update this list)
614 * Windows: IE 5.5 SP2, IE 6 SP1, Gecko based (Mozilla, Firebird) and Opera7
615 * XWindow: ?
616 * Mac: ?
f23f6a3a 617 * In the function ListAdvancedBoxes there is another var $use_folder_images.
618 * setting this to true is only usefull if the images exists in ../images.
a6172cd5 619 *
f23f6a3a 620 * Feel free to experiment with the code and report bugs and enhancements
621 * to marc@its-projects.nl
a6172cd5 622 **/
f23f6a3a 623
78e5377d 624/* set this to true if you want to see a nicer mailboxtree */
625if (! isset($advanced_tree) || $advanced_tree=="" ) {
ccc4580f 626 $advanced_tree=false;
627}
78e5377d 628/* default SM behaviour */
629if (! isset($oldway) || $oldway=="" ) {
ccc4580f 630 $oldway=false;
631}
f23f6a3a 632
633if ($advanced_tree) {
634$xtra .= <<<ECHO
599038d5 635<script language="Javascript" TYPE="text/javascript">
f23f6a3a 636
599038d5 637<!--
f23f6a3a 638
51ea258b 639 function preload() {
640 if (document.images) {
641 var treeImages = new Array;
642 var arguments = preload.arguments;
643 for (var i = 0; i<arguments.length; i++) {
644 treeImages[i] = new Image();
645 treeImages[i].src = arguments[i];
646 }
647 }
648 }
649
99034855 650var vTreeImg;
651var vTreeDiv;
652var vTreeSrc;
653
654 function fTreeTimeout() {
655 if (vTreeDiv.readyState == "complete")
656 vTreeImg.src = vTreeSrc;
657 else
658 setTimeout("fTreeTimeout()", 100);
659 }
660
661 function hidechilds(img) {
662 id = img.id + ".0000";
663 form_id = "mbx[" + img.id +"F]";
c72be5a6 664 if (document.all) { //IE, Opera7
99034855 665 div = document.all[id];
666 if (div) {
667 if (div.style.display == "none") {
668 vTreeSrc = "../images/minus.png";
669 style = "block";
670 value = 0;
671 }
672 else {
673 vTreeSrc = "../images/plus.png";
674 style = "none";
675 value = 1;
a6172cd5 676 }
99034855 677 vTreeImg = img;
678 vTreeDiv = div;
c72be5a6 679 if (typeof vTreeDiv.readyState != "undefined") //IE
680 setTimeout("fTreeTimeout()",100);
681 else //Non IE
682 vTreeImg.src = vTreeSrc;
99034855 683 div.style.display = style;
684 document.all[form_id].value = value;
a6172cd5 685 }
99034855 686 }
c72be5a6 687 else if (document.getElementById) { //Gecko
99034855 688 div = document.getElementById(id);
689 if (div) {
690 if (div.style.display == "none") {
691 src = "../images/minus.png";
692 style = "block";
693 value = 0;
694 }
695 else {
696 src = "../images/plus.png";
697 style = "none";
698 value = 1;
a6172cd5 699 }
99034855 700 div.style.display = style;
701 img.src = src;
702 document.getElementById(form_id).value = value;
a6172cd5 703 }
51ea258b 704 }
a6172cd5 705 }
a6172cd5 706
f23f6a3a 707 function buttonover(el,on) {
708 if (!on) {
c72be5a6 709// el.style.borderColor="$color[9]";}
710 el.style.background="$color[0]";}
f23f6a3a 711 else {
c72be5a6 712 el.style.background="$color[9]";}
f23f6a3a 713 }
714
715 function buttonclick(el,on) {
a6172cd5 716 if (!on) {
c72be5a6 717 el.style.border="groove";}
f23f6a3a 718 else {
719 el.style.border="ridge";}
720 }
599038d5 721
722 function hideframe(hide) {
a6172cd5 723
599038d5 724ECHO;
725$xtra .= " left_size = \"$left_size\";\n";
726$xtra .= <<<ECHO
727 if (document.all) {
a6172cd5 728 masterf = window.parent.document.all["fs1"];
729 leftf = window.parent.document.all["left"];
730 leftcontent = document.all["leftframe"];
731 leftbutton = document.all["showf"];
599038d5 732 } else if (document.getElementById) {
a6172cd5 733 masterf = window.parent.document.getElementById("fs1");
734 leftf = window.parent.document.getElementById("left");
735 leftcontent = document.getElementById("leftframe");
736 leftbutton = document.getElementById("showf");
599038d5 737 } else {
738 return false;
a6172cd5 739 }
599038d5 740 if(hide) {
741 new_col = calc_col("20");
742 masterf.cols = new_col;
a6172cd5 743 document.body.scrollLeft=0;
744 document.body.style.overflow='hidden';
745 leftcontent.style.display = 'none';
746 leftbutton.style.display='block';
599038d5 747 } else {
748 masterf.cols = calc_col(left_size);
a6172cd5 749 document.body.style.overflow='';
750 leftbutton.style.display='none';
751 leftcontent.style.display='block';
752
599038d5 753 }
754 }
a6172cd5 755
599038d5 756 function calc_col(c_w) {
757
758ECHO;
759 if ($location_of_bar == 'right') {
760 $xtra .= ' right=true;';
a6172cd5 761 } else {
599038d5 762 $xtra .= ' right=false;';
763 }
764 $xtra .= "\n";
765$xtra .= <<<ECHO
766 if (right) {
767 new_col = '*,'+c_w;
768 } else {
769 new_col = c_w+',*';
770 }
771 return new_col;
a6172cd5 772 }
773
599038d5 774 function resizeframe(direction) {
775 if (document.all) {
a6172cd5 776 masterf = window.parent.document.all["fs1"];
599038d5 777 } else if (document.getElementById) {
a6172cd5 778 window.parent.document.getElementById("fs1");
599038d5 779 } else {
780 return false;
781 }
a6172cd5 782
599038d5 783ECHO;
784 if ($location_of_bar == 'right') {
785 $xtra .= ' colPat=/^\*,(\d+)$/;';
a6172cd5 786 } else {
599038d5 787 $xtra .= ' colPat=/^(\d+),.*$/;';
788 }
789 $xtra .= "\n";
a6172cd5 790
599038d5 791$xtra .= <<<ECHO
792 old_col = masterf.cols;
793 colPat.exec(old_col);
a6172cd5 794
599038d5 795 if (direction) {
796 new_col_width = parseInt(RegExp.$1) + 25;
a6172cd5 797
599038d5 798 } else {
799 if (parseInt(RegExp.$1) > 35) {
800 new_col_width = parseInt(RegExp.$1) - 25;
801 }
802 }
a6172cd5 803 masterf.cols = calc_col(new_col_width);
599038d5 804 }
805
806//-->
a6172cd5 807
f23f6a3a 808</script>
809
810ECHO;
811
812/* style definitions */
386e556f 813
f23f6a3a 814$xtra .= <<<ECHO
815
d68323ff 816<style type="text/css">
f23f6a3a 817<!--
599038d5 818 body {
819 margin: 0px 0px 0px 0px;
820 padding: 5px 5px 5px 5px;
821 }
c8fa94cf 822
f23f6a3a 823 .button {
824 border:outset;
c72be5a6 825 border-color: $color[9];
826 background:$color[0];
827 color:$color[6];
f23f6a3a 828 width:99%;
829 heigth:99%;
830 }
831
832 .mbx_par {
d1dbd575 833 font-size:1.0em;
599038d5 834 margin-left:4px;
835 margin-right:0px;
c8fa94cf 836 }
599038d5 837
c8fa94cf 838 a.mbx_link {
839 text-decoration: none;
840 background-color: $color[0];
841 display: inline;
842 }
843
844 a:hover.mbx_link {
845 background-color: $color[9];
846 }
847
848 a.mbx_link img {
849 border-style: none;
f23f6a3a 850 }
851
852 .mbx_sub {
f23f6a3a 853 padding-left:5px;
599038d5 854 padding-right:0px;
f23f6a3a 855 margin-left:4px;
599038d5 856 margin-right:0px;
d1dbd575 857 font-size:0.9em;
f23f6a3a 858 }
859
860 .par_area {
599038d5 861 margin-top:0px;
862 margin-left:4px;
863 margin-right:0px;
f23f6a3a 864 padding-left:10px;
599038d5 865 padding-bottom:5px;
f23f6a3a 866 border-left: solid;
867 border-left-width:0.1em;
51ea258b 868 border-left-color:$color[9];
f23f6a3a 869 border-bottom: solid;
870 border-bottom-width:0.1em;
51ea258b 871 border-bottom-color:$color[9];
c8fa94cf 872 display: block;
f23f6a3a 873 }
874
875 .mailboxes {
f23f6a3a 876 padding-bottom:3px;
599038d5 877 margin-right:4px;
878 padding-right:4px;
879 margin-left:4px;
880 padding-left:4px;
f23f6a3a 881 border: groove;
882 border-width:0.1em;
c72be5a6 883 border-color:$color[9];
c8fa94cf 884 background: $color[0];
f23f6a3a 885 }
886
887-->
888
d68323ff 889</style>
f23f6a3a 890
891ECHO;
892
893}
894
dcc1cc82 895displayHtmlHeader( 'SquirrelMail', $xtra );
896
95e93571 897/* If requested and not yet complete, attempt to autocreate folders. */
898if ($auto_create_special && !isset($auto_create_done)) {
a3439b27 899 $autocreate = array($sent_folder, $trash_folder, $draft_folder);
95e93571 900 foreach( $autocreate as $folder ) {
a3439b27 901 if (($folder != '') && ($folder != 'none')) {
95e93571 902 if ( !sqimap_mailbox_exists($imapConnection, $folder)) {
903 sqimap_mailbox_create($imapConnection, $folder, '');
a3439b27 904 } else if (!sqimap_mailbox_is_subscribed($imapConnection, $folder)) {
95e93571 905 sqimap_subscribe($imapConnection, $folder);
2d367c68 906 }
ebf18afa 907 }
2d367c68 908 }
a6d2e0de 909
95e93571 910 /* Let the world know that autocreation is complete! Hurrah! */
90de1755 911 $auto_create_done = TRUE;
a32985a5 912 sqsession_register($auto_create_done, 'auto_create_done');
95e93571 913}
dcc1cc82 914
915if ($advanced_tree)
916 echo "\n<body" .
51ea258b 917 ' onload="preload(\'../images/minus.png\',\'../images/plus.png\')"' .
dcc1cc82 918 " bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n";
919else
920 echo "\n<body bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n";
921
922do_hook('left_main_before');
923if ($advanced_tree) {
924 /* nice future feature, needs layout !! volunteers? */
925 $right_pos = $left_size - 20;
926/* echo '<div style="position:absolute;top:0;border=solid;border-width:0.1em;border-color:blue;"><div ID="hidef" style="width=20;font-size:12"><A HREF="javascript:hideframe(true)"><b><<</b></a></div>';
927 echo '<div ID="showf" style="width=20;font-size:12;display:none;"><a href="javascript:hideframe(false)"><b>>></b></a></div>';
928 echo '<div ID="incrf" style="width=20;font-size:12"><a href="javascript:resizeframe(true)"><b>></b></a></div>';
929 echo '<div ID="decrf" style="width=20;font-size:12"><a href="javascript:resizeframe(false)"><b><</b></a></div></div>';
930 echo '<div ID="leftframe"><br /><br />';*/
599038d5 931}
dcc1cc82 932
a6172cd5 933echo "\n\n" . html_tag( 'table', '', 'left', '', 'border="0" cellspacing="0" cellpadding="0" width="99%"' ) .
934 html_tag( 'tr' ) .
dcc1cc82 935 html_tag( 'td', '', 'left' ) .
936 '<center><font size="4"><b>'. _("Folders") . "</b><br /></font>\n\n";
a6d2e0de 937
95e93571 938if ($date_format != 6) {
939 /* First, display the clock. */
940 if ($hour_format == 1) {
941 $hr = 'G:i';
942 if ($date_format == 4) {
943 $hr .= ':s';
a6d2e0de 944 }
95e93571 945 } else {
946 if ($date_format == 4) {
947 $hr = 'g:i:s a';
948 } else {
949 $hr = 'g:i a';
2d367c68 950 }
951 }
952
95e93571 953 switch( $date_format ) {
954 case 1:
955 $clk = date('m/d/y '.$hr, time());
956 break;
957 case 2:
958 $clk = date('d/m/y '.$hr, time());
959 break;
960 case 4:
961 case 5:
962 $clk = date($hr, time());
963 break;
964 default:
67eb95d7 965 $clk = getDayAbrv( date( 'w', time() ) ) . date( ', ' . $hr, time() );
2d367c68 966 }
95e93571 967 $clk = str_replace(' ','&nbsp;',$clk);
968
3fde693b 969 echo '<center><small>' . str_replace(' ','&nbsp;',_("Last Refresh")) .
970 ": $clk</small></center>";
95e93571 971}
972
973/* Next, display the refresh button. */
dcc1cc82 974echo '<small>(<a href="../src/left_main.php" target="left">'.
975 _("refresh folder list") . '</a>)</small></center><br />';
95e93571 976
977/* Lastly, display the folder list. */
978if ( $collapse_folders ) {
979 /* If directed, collapse or uncollapse a folder. */
980 if (isset($fold)) {
981 setPref($data_dir, $username, 'collapse_folder_' . $fold, SM_BOX_COLLAPSED);
982 } else if (isset($unfold)) {
983 setPref($data_dir, $username, 'collapse_folder_' . $unfold, SM_BOX_UNCOLLAPSED);
984 }
985}
986
c5a52f46 987/* Get unseen/total display prefs */
988$unseen_type = getPref( $data_dir , $username , 'unseen_type' );
989$unseen_notify = getPref( $data_dir , $username , 'unseen_notify' );
990
991if (!isset($unseen_type) || empty($unseen_type)) {
992 if (isset($default_unseen_type) && !empty($default_unseen_type)) {
993 $unseen_type = $default_unseen_type;
994 } else {
995 $unseen_type = 1;
996 }
997}
998
999if (!isset($unseen_notify) || empty($unseen_notify)) {
1000 if (isset($default_unseen_notify) && !empty($default_unseen_notify)) {
1001 $unseen_notify = $default_unseen_notify;
1002 } else {
1003 $unseen_notify = 0;
1004 }
1005}
1006
f23f6a3a 1007if ($oldway) { /* normal behaviour SM */
a6172cd5 1008
f23f6a3a 1009$boxes = sqimap_mailbox_list($imapConnection);
95e93571 1010/* Prepare do do out collapsedness and visibility computation. */
1011$curbox = 0;
1012$boxcount = count($boxes);
1013
1014/* Compute the collapsedness and visibility of each box. */
90de1755 1015
95e93571 1016while ($curbox < $boxcount) {
1017 $boxes[$curbox]['visible'] = TRUE;
1018 compute_folder_children($curbox, $boxcount);
1019}
1020
1c52ba77 1021for ($i = 0; $i < count($boxes); $i++) {
95e93571 1022 if ( $boxes[$i]['visible'] ) {
1023 $mailbox = $boxes[$i]['formatted'];
1024 $mblevel = substr_count($boxes[$i]['unformatted'], $delimiter) + 1;
1025
1026 /* Create the prefix for the folder name and link. */
1027 $prefix = str_repeat(' ',$mblevel);
1028 if (isset($collapse_folders) && $collapse_folders && $boxes[$i]['parent']) {
1029 $prefix = str_replace(' ','&nbsp;',substr($prefix,0,strlen($prefix)-2)).
1030 create_collapse_link($i) . '&nbsp;';
1031 } else {
1032 $prefix = str_replace(' ','&nbsp;',$prefix);
1033 }
d68323ff 1034 $line = "<nobr><tt>$prefix</tt>";
95e93571 1035
1036 /* Add the folder name and link. */
1c52ba77 1037 if (! isset($color[15])) {
05611cba 1038 $color[15] = $color[6];
1c52ba77 1039 }
90de1755 1040
95e93571 1041 if (in_array('noselect', $boxes[$i]['flags'])) {
1c52ba77 1042 if( isSpecialMailbox( $boxes[$i]['unformatted']) ) {
d68323ff 1043 $line .= "<font color=\"$color[11]\">";
1c52ba77 1044 } else {
d68323ff 1045 $line .= "<font color=\"$color[15]\">";
1c52ba77 1046 }
95e93571 1047 if (ereg("^( *)([^ ]*)", $mailbox, $regs)) {
1048 $mailbox = str_replace('&nbsp;','',$mailbox);
1049 $line .= str_replace(' ', '&nbsp;', $mailbox);
2d367c68 1050 }
d68323ff 1051 $line .= '</font>';
95e93571 1052 } else {
1053 $line .= formatMailboxName($imapConnection, $boxes[$i]);
1054 }
2d367c68 1055
95e93571 1056 /* Put the final touches on our folder line. */
d68323ff 1057 $line .= "</nobr><br>\n";
2d367c68 1058
95e93571 1059 /* Output the line for this folder. */
1060 echo $line;
2d367c68 1061 }
95e93571 1062}
a6172cd5 1063} else { /* expiremental code */
f23f6a3a 1064 $boxes = sqimap_mailbox_tree($imapConnection);
1065 if (isset($advanced_tree) && $advanced_tree) {
dcc1cc82 1066 echo '<form name="collapse" action="left_main.php" method="post" ' .
e4c5976a 1067 'enctype="multipart/form-data"'."\n";
b6d26135 1068 echo '<small>';
4bdcd5e0 1069 echo '<button type="submit" class="button" onmouseover="buttonover(this,true)" onmouseout="buttonover(this,false)" onmousedown="buttonclick(this,true)" onmouseup="buttonclick(this,false)">'. _("Save folder tree") .'</button><br /><br />';
e4c5976a 1070 echo '<div id="mailboxes" class="mailboxes">'."\n\n";
3170c448 1071 sqgetGlobalVar('mbx', $mbx, SQ_POST);
e4c5976a 1072 if (!isset($mbx)) $mbx=NULL;
a6172cd5 1073 ListAdvancedBoxes($boxes, $mbx);
3170c448 1074 echo '</div>';
1075 echo '</small>';
e4c5976a 1076 echo '</form>'."\n";
f23f6a3a 1077 } else {
0654bd86 1078 //sqimap_get_status_mbx_tree($imap_stream,$boxes)
e4c5976a 1079 ListBoxes($boxes);
f23f6a3a 1080 }
1081} /* if ($oldway) else ... */
dcc1cc82 1082do_hook('left_main_after');
1083sqimap_logout($imapConnection);
1084
1085echo '</td></tr></table>' . "\n".
1086 "</div></body></html>\n";
2d367c68 1087
dcc1cc82 1088?>