removed local directory name used for testing.
[squirrelmail.git] / src / left_main.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * left_main.php
5 *
6c84ba1e 6 * Copyright (c) 1999-2005 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 *
30967a1e 12 * @version $Id$
8f6f9ba5 13 * @package squirrelmail
1c52ba77 14 */
35586184 15
30967a1e 16/**
17 * Path for SquirrelMail required files.
18 * @ignore
19 */
dcc1cc82 20define('SM_PATH','../');
86725763 21
22/* SquirrelMail required files. */
08185f2a 23require_once(SM_PATH . 'include/validate.php');
86725763 24require_once(SM_PATH . 'functions/imap.php');
25require_once(SM_PATH . 'functions/plugin.php');
26require_once(SM_PATH . 'functions/page_header.php');
27require_once(SM_PATH . 'functions/html.php');
b6d26135 28require_once(SM_PATH . 'functions/date.php');
142499d4 29
95e93571 30/* These constants are used for folder stuff. */
31define('SM_BOX_UNCOLLAPSED', 0);
32define('SM_BOX_COLLAPSED', 1);
a6d2e0de 33
2d367c68 34/* --------------------- FUNCTIONS ------------------------- */
525b7ae6 35
a6d2e0de 36
95e93571 37/**
3cbf882e 38 * Recursive function to output a tree of folders.
39 * It is called on a list of boxes and iterates over that tree.
ffb1a3d9 40 *
3cbf882e 41 * @since 1.3.0
ffb1a3d9 42 */
3170c448 43function ListBoxes ($boxes, $j=0 ) {
ce68b76b 44 global $data_dir, $username, $color, $unseen_notify, $unseen_type,
324ac3c5 45 $move_to_trash, $trash_folder, $collapse_folders, $imapConnection,
a259636c 46 $use_icons, $icon_theme, $use_special_folder_color;
c5a52f46 47
3cbf882e 48 // stop condition
49 if (empty($boxes)) {
ccc4580f 50 return;
3cbf882e 51 }
ccc4580f 52
8ad1c1e8 53 $pre = '<span style="white-space: nowrap;">';
f23f6a3a 54 $end = '';
55 $collapse = false;
ccc4580f 56 $unseen_found = false;
6c8fee24 57 $unseen = 0;
e4c5976a 58
ccc4580f 59 $mailbox = $boxes->mailboxname_full;
0bcd11eb 60 $leader = str_repeat('&nbsp;&nbsp;',$j);
ccc4580f 61 $mailboxURL = urlencode($mailbox);
6c8fee24 62
ccc4580f 63 /* get unseen/total messages information */
64 /* Only need to display info when option is set */
65 if (isset($unseen_notify) && ($unseen_notify > 1) &&
66 (($boxes->unseen !== false) || ($boxes->total !== false))) {
e4c5976a 67
ccc4580f 68 if ($boxes->unseen !== false)
69 $unseen = $boxes->unseen;
dcc1cc82 70
ccc4580f 71 /*
72 Should only display unseen info if the folder is inbox
73 or you set the option for all folders
74 */
75
76 if ((strtolower($mailbox) == 'inbox') || ($unseen_notify == 3)) {
77 $unseen_string = $unseen;
78
79 /* If users requests, display message count too */
80 if (isset($unseen_type) && ($unseen_type == 2) && ($boxes->total !== false)) {
81 $unseen_string .= '/' . $boxes->total;
e4c5976a 82 }
ccc4580f 83
84 $unseen_string = "<font color=\"$color[11]\">($unseen_string)</font>";
85
86 /*
87 Finally allow the script to display the values by setting a boolean.
88 This can only occur if the unseen count is great than 0 (if you have
89 unseen count only), or you have the message count too.
90 */
91 if (($unseen > 0) || (isset($unseen_type) && ($unseen_type ==2))) {
92 $unseen_found = true;
93 }
94 }
95 }
96
97 if (isset($boxes->mbxs[0]) && $collapse_folders) {
98 $collapse = getPref($data_dir, $username, 'collapse_folder_' . $mailbox);
99 $collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
100
101 $link = '<a target="left" style="text-decoration:none" ' .'href="left_main.php?';
102 if ($collapse) {
6395c46d 103 if ($use_icons && $icon_theme != 'none') {
0bcd11eb 104 $link .= "unfold=$mailboxURL\">$leader<img src=\"" . SM_PATH . 'images/plus.png" border="0" height="7" width="7" />&nbsp;';
6395c46d 105 } else {
0bcd11eb 106 $link .= "unfold=$mailboxURL\">$leader+&nbsp;";
6395c46d 107 }
a6172cd5 108 } else {
6395c46d 109 if ($use_icons && $icon_theme != 'none') {
0bcd11eb 110 $link .= "fold=$mailboxURL\">$leader<img src=\"" . SM_PATH . 'images/minus.png" border="0" height="7" width="7" />&nbsp;';
6395c46d 111 } else {
0bcd11eb 112 $link .= "fold=$mailboxURL\">$leader-&nbsp;";
6395c46d 113 }
a6172cd5 114 }
ccc4580f 115 $link .= '</a>';
116 $pre .= $link;
117 } else {
0bcd11eb 118 $pre.= $leader . '&nbsp;&nbsp;';
ccc4580f 119 }
a6172cd5 120
ccc4580f 121 /* If there are unseen message, bold the line. */
122 if (($move_to_trash) && ($mailbox == $trash_folder)) {
134a1cdc 123
124 if ( !is_numeric($boxes->total) ) {
125 $result = sqimap_status_messages($imapConnection, $mailbox);
126 $boxes->total = $result['MESSAGES'];
127 $boxes->unseen = $result['UNSEEN'];
ccc4580f 128 }
134a1cdc 129
324ac3c5 130 $pre .= "<a href=\"right_main.php?PG_SHOWALL=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
ccc4580f 131 if ($unseen > 0) {
d3018c7b 132 $pre .= '<b>';
ccc4580f 133 $end .= '</b>';
134 }
d3018c7b 135 $end .= '</a>';
ccc4580f 136 if ($boxes->total > 0) {
3170c448 137 /* Print unseen information. */
ccc4580f 138 if ($unseen_found) {
3170c448 139 $end .= "&nbsp;<small>$unseen_string</small>";
140 }
134a1cdc 141 $end .= "\n<small>" .
d3018c7b 142 '&nbsp;&nbsp;[<a href="empty_trash.php">'._("Purge").'</a>]'.
143 '</small>';
e4c5976a 144 }
ccc4580f 145 } else {
146 if (!$boxes->is_noselect) {
324ac3c5 147 $pre .= "<a href=\"right_main.php?PG_SHOWALL=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
ccc4580f 148 if ($unseen > 0) {
d3018c7b 149 $pre .= '<b>';
ccc4580f 150 $end .= '</b>';
151 }
d3018c7b 152 $end .= '</a>';
e4c5976a 153 }
ccc4580f 154 /* Print unseen information. */
155 if ($unseen_found) {
156 $end .= "&nbsp;<small>$unseen_string</small>";
39027844 157 }
158
ccc4580f 159 }
160
161 $font = '';
162 $fontend = '';
a259636c 163 if ($use_special_folder_color && $boxes->is_special) {
ccc4580f 164 $font = "<font color=\"$color[11]\">";
165 $fontend = "</font>";
3cbf882e 166 } elseif ( $boxes->is_noselect ) {
167 $font = "<font color=\"$color[15]\">";
168 $fontend = '</font>';
ccc4580f 169 }
f8a1ed5a 170
8fc208f8 171 // let plugins fiddle with end of line
172 $end .= concat_hook_function('left_main_after_each_folder',
324ac3c5 173 array(isset($numMessages) ? $numMessages : '',
8fc208f8 174 $boxes->mailboxname_full, $imapConnection));
175
8ad1c1e8 176 $end .= '</span>';
ccc4580f 177
178 if (!$boxes->is_root) {
3cbf882e 179 echo "" . $pre .$font.
f8a1ed5a 180 str_replace(
3cbf882e 181 array(' ','<','>'),
182 array('&nbsp;','&lt;','&gt;'),
183 $boxes->mailboxname_sub) .
184 $fontend . $end. '<br />' . "\n";
ccc4580f 185 $j++;
186 }
187
188 if (!$collapse || $boxes->is_root) {
189 for ($i = 0; $i <count($boxes->mbxs); $i++) {
3cbf882e 190 ListBoxes($boxes->mbxs[$i],$j);
e4c5976a 191 }
f23f6a3a 192 }
193}
194
c8fa94cf 195function ListAdvancedBoxes ($boxes, $mbx, $j='ID.0000' ) {
ce68b76b 196 global $data_dir, $username, $color, $unseen_notify, $unseen_type,
134e4174 197 $move_to_trash, $trash_folder, $collapse_folders, $use_special_folder_color;
f23f6a3a 198
3cbf882e 199 if (empty($boxes)) {
ccc4580f 200 return;
3cbf882e 201 }
4bdcd5e0 202
f23f6a3a 203 /* use_folder_images only works if the images exist in ../images */
c8fa94cf 204 $use_folder_images = true;
f23f6a3a 205
206 $pre = '';
207 $end = '';
208 $collapse = false;
6c8fee24 209 $unseen_found = false;
210 $unseen = 0;
a6172cd5 211
a6172cd5 212 $mailbox = $boxes->mailboxname_full;
213 $mailboxURL = urlencode($mailbox);
f23f6a3a 214
ccc4580f 215 /* get unseen/total messages information */
6c8fee24 216 /* Only need to display info when option is set */
ccc4580f 217 if (isset($unseen_notify) && ($unseen_notify > 1) &&
218 (($boxes->unseen !== false) || ($boxes->total !== false))) {
6c8fee24 219
51ea258b 220 if ($boxes->unseen !== false)
6c8fee24 221 $unseen = $boxes->unseen;
6c8fee24 222
ccc4580f 223 /*
6c8fee24 224 Should only display unseen info if the folder is inbox
225 or you set the option for all folders
226 */
227
228 if ((strtolower($mailbox) == 'inbox') || ($unseen_notify == 3)) {
229 $unseen_string = $unseen;
230
6c8fee24 231 /* If users requests, display message count too */
ccc4580f 232 if (isset($unseen_type) && ($unseen_type == 2) && ($boxes->total !== false)) {
51ea258b 233 $unseen_string .= '/' . $boxes->total;
ccc4580f 234 }
6c8fee24 235
236 $unseen_string = "<font color=\"$color[11]\">($unseen_string)</font>";
237
238 /*
239 Finally allow the script to display the values by setting a boolean.
240 This can only occur if the unseen count is great than 0 (if you have
241 unseen count only), or you have the message count too.
242 */
243 if (($unseen > 0) || (isset($unseen_type) && ($unseen_type ==2))) {
244 $unseen_found = true;
245 }
ccc4580f 246 }
6c8fee24 247 }
a6172cd5 248
249 /* If there are unseen message, bold the line. */
250 if ($unseen > 0) { $pre .= '<b>'; }
251
252 /* color special boxes */
a259636c 253 if ($use_special_folder_color && $boxes->is_special) {
4bdcd5e0 254 $pre .= "<font color=\"$color[11]\">";
a6172cd5 255 $end .= '</font>';
256 }
257
258 /* If there are unseen message, close bolding. */
259 if ($unseen > 0) { $end .= '</b>'; }
260
261 /* Print unseen information. */
ccc4580f 262 if ($unseen_found) {
263 $end .= "&nbsp;$unseen_string";
a6172cd5 264 }
265
266 if (($move_to_trash) && ($mailbox == $trash_folder)) {
324ac3c5 267 $pre = "<a class=\"mbx_link\" href=\"right_main.php?PG_SHOWALL=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\">" . $pre;
4bdcd5e0 268 $end .= '</a>';
dea5ef88 269 $end .= "\n<small>\n" .
270 '&nbsp;&nbsp;[<a class="mbx_link" href="empty_trash.php">'._("Purge").'</a>]'.
271 '</small>';
a6172cd5 272 } else {
273 if (!$boxes->is_noselect) { /* \Noselect boxes can't be selected */
324ac3c5 274 $pre = "<a class=\"mbx_link\" href=\"right_main.php?PG_SHOWALL=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" target=\"right\">" . $pre;
4bdcd5e0 275 $end .= '</a>';
a6172cd5 276 }
277 }
278
8fc208f8 279 // let plugins fiddle with end of line
280 global $imapConnection;
281 $end .= concat_hook_function('left_main_after_each_folder',
324ac3c5 282 array(isset($numMessages) ? $numMessages : '',
8fc208f8 283 $boxes->mailboxname_full, $imapConnection));
284
a6172cd5 285 if (!$boxes->is_root) {
286 if ($use_folder_images) {
ccc4580f 287 if ($boxes->is_inbox) {
288 $folder_img = '../images/inbox.png';
289 } else if ($boxes->is_sent) {
290 $folder_img = '../images/senti.png';
291 } else if ($boxes->is_trash) {
292 $folder_img = '../images/delitem.png';
293 } else if ($boxes->is_draft) {
294 $folder_img = '../images/draft.png';
295 } else if ($boxes->is_noinferiors) {
296 $folder_img = '../images/folder_noinf.png';
297 } else {
298 $folder_img = '../images/folder.png';
299 }
0bcd11eb 300 $folder_img = '&nbsp;<img src="'.$folder_img.'" height="15" />&nbsp;';
ccc4580f 301 } else {
302 $folder_img = '';
303 }
a6172cd5 304 if (!isset($boxes->mbxs[0])) {
305 echo ' ' . html_tag( 'div',
0bcd11eb 306 $pre . $folder_img .
3cbf882e 307 str_replace( array(' ','<','>'),
308 array('&nbsp;','&lt;','&gt;'),
309 $boxes->mailboxname_sub) .
310 $end,
3170c448 311 'left', '', 'class="mbx_sub" id="' .$j. '"' ) . "\n";
ccc4580f 312 } else {
a6172cd5 313 /* get collapse information */
3170c448 314 if ($collapse_folders) {
315 $form_entry = $j.'F';
316 if (isset($mbx) && isset($mbx[$form_entry])) {
317 $collapse = $mbx[$form_entry];
3cbf882e 318 setPref($data_dir, $username, 'collapse_folder_'.$boxes->mailboxname_full ,
319 $collapse ? SM_BOX_COLLAPSED : SM_BOX_UNCOLLAPSED);
ccc4580f 320 } else {
3170c448 321 $collapse = getPref($data_dir, $username, 'collapse_folder_' . $mailbox);
322 $collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
323 }
324 $img_src = ($collapse ? '../images/plus.png' : '../images/minus.png');
3cbf882e 325 $collapse_link = '<a href="javascript:void(0)">' .
326 " <img src=\"$img_src\" border=\"1\" id=$j onclick=\"hidechilds(this)\" style=\"cursor:hand\" /></a>";
ccc4580f 327 } else {
3170c448 328 $collapse_link='';
ccc4580f 329 }
330 echo ' ' . html_tag( 'div',
a6172cd5 331 $collapse_link . $pre . $folder_img . '&nbsp;'. $boxes->mailboxname_sub . $end ,
3170c448 332 'left', '', 'class="mbx_par" id="' .$j. 'P"' ) . "\n";
ccc4580f 333 echo ' <input type="hidden" name="mbx['.$j. 'F]" value="'.$collapse.'" id="mbx['.$j.'F]" />'."\n";
a6172cd5 334 }
335 }
a6172cd5 336
4bdcd5e0 337 $visible = ($collapse ? ' style="display:none"' : ' style="display:block"');
338 if (isset($boxes->mbxs[0]) && !$boxes->is_root) /* mailbox contains childs */
339 echo html_tag( 'div', '', 'left', '', 'class="par_area" id='.$j.'.0000 '. $visible ) . "\n";
a6172cd5 340
3cbf882e 341 if ($j !='ID.0000') {
4bdcd5e0 342 $j = $j .'.0000';
3cbf882e 343 }
4bdcd5e0 344 for ($i = 0; $i <count($boxes->mbxs); $i++) {
345 $j++;
346 ListAdvancedBoxes($boxes->mbxs[$i],$mbx,$j);
f23f6a3a 347 }
3cbf882e 348 if (isset($boxes->mbxs[0]) && !$boxes->is_root) {
4bdcd5e0 349 echo '</div>'."\n\n";
3cbf882e 350 }
f23f6a3a 351}
352
353
354
95e93571 355
356/* -------------------- MAIN ------------------------ */
357
f38b7cf0 358/* get globals */
359sqgetGlobalVar('username', $username, SQ_SESSION);
360sqgetGlobalVar('key', $key, SQ_COOKIE);
361sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
362sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
a32985a5 363
f38b7cf0 364sqgetGlobalVar('fold', $fold, SQ_GET);
365sqgetGlobalVar('unfold', $unfold, SQ_GET);
366
367/* end globals */
95e93571 368
369// open a connection on the imap port (143)
3cbf882e 370// why hide the output?
371$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, true);
95e93571 372
f43c35f8 373/**
3cbf882e 374 * Using stristr since very old preferences may contain "None" and "none".
f43c35f8 375 */
3cbf882e 376if (!empty($left_refresh) &&
d68323ff 377 !stristr($left_refresh, 'none')){
378 $xtra = "\n<meta http-equiv=\"Expires\" content=\"Thu, 01 Dec 1994 16:00:00 GMT\" />\n" .
379 "<meta http-equiv=\"Pragma\" content=\"no-cache\" />\n".
dcc1cc82 380 "<meta http-equiv=\"REFRESH\" content=\"$left_refresh;URL=left_main.php\" />\n";
95e93571 381} else {
382 $xtra = '';
383}
384
f23f6a3a 385/**
3cbf882e 386 * $advanced_tree and is a boolean var which is default set to default
a6172cd5 387 * SM behaviour.
a6172cd5 388 * Setting $advanced tree to true causes SM to display a experimental
f23f6a3a 389 * mailbox-tree with dhtml behaviour.
a6172cd5 390 * It only works on browsers which supports css and javascript. The used
c72be5a6 391 * javascript is experimental and doesn't support all browsers.
392 * It has been tested on IE6 an Konquerer 3.0.0-2.
393 * It is now tested and working on: (please test and update this list)
394 * Windows: IE 5.5 SP2, IE 6 SP1, Gecko based (Mozilla, Firebird) and Opera7
395 * XWindow: ?
396 * Mac: ?
f23f6a3a 397 * In the function ListAdvancedBoxes there is another var $use_folder_images.
398 * setting this to true is only usefull if the images exists in ../images.
a6172cd5 399 *
f23f6a3a 400 * Feel free to experiment with the code and report bugs and enhancements
a6172cd5 401 **/
f23f6a3a 402
78e5377d 403/* set this to true if you want to see a nicer mailboxtree */
3cbf882e 404if (empty($advanced_tree)) {
ccc4580f 405 $advanced_tree=false;
406}
f23f6a3a 407
408if ($advanced_tree) {
0bcd11eb 409$xtra .= <<<HEREDOC
410<script language="Javascript" type="text/javascript">
411<!--
412 function preload() {
413 if (document.images) {
414 var treeImages = new Array;
415 var arguments = preload.arguments;
416 for (var i = 0; i<arguments.length; i++) {
417 treeImages[i] = new Image();
418 treeImages[i].src = arguments[i];
419 }
420 }
421 }
422 var vTreeImg;
423 var vTreeDiv;
424 var vTreeSrc;
425 function fTreeTimeout() {
426 if (vTreeDiv.readyState == "complete")
427 vTreeImg.src = vTreeSrc;
428 else
429 setTimeout("fTreeTimeout()", 100);
430 }
431 function hidechilds(img) {
432 id = img.id + ".0000";
433 form_id = "mbx[" + img.id +"F]";
434 if (document.all) { //IE, Opera7
435 div = document.all[id];
436 if (div) {
437 if (div.style.display == "none") {
438 vTreeSrc = "../images/minus.png";
439 style = "block";
440 value = 0;
441 }
442 else {
443 vTreeSrc = "../images/plus.png";
444 style = "none";
445 value = 1;
446 }
447 vTreeImg = img;
448 vTreeDiv = div;
449 if (typeof vTreeDiv.readyState != "undefined") //IE
450 setTimeout("fTreeTimeout()",100);
451 else //Non IE
452 vTreeImg.src = vTreeSrc;
453 div.style.display = style;
454 document.all[form_id].value = value;
455 }
456 }
457 else if (document.getElementById) { //Gecko
458 div = document.getElementById(id);
459 if (div) {
460 if (div.style.display == "none") {
461 src = "../images/minus.png";
462 style = "block";
463 value = 0;
464 }
465 else {
466 src = "../images/plus.png";
467 style = "none";
468 value = 1;
469 }
470 div.style.display = style;
471 img.src = src;
472 document.getElementById(form_id).value = value;
473 }
474 }
475 }
476 function buttonover(el,on) {
477 if (!on) {
478 el.style.background="$color[0]";}
479 else {
480 el.style.background="$color[9]";}
481 }
482 function buttonclick(el,on) {
483 if (!on) {
484 el.style.border="groove";}
485 else {
486 el.style.border="ridge";}
487 }
488 function hideframe(hide) {
489 left_size = "$left_size";
490 if (document.all) {
491 masterf = window.parent.document.all["fs1"];
492 leftf = window.parent.document.all["left"];
493 leftcontent = document.all["leftframe"];
494 leftbutton = document.all["showf"];
495 } else if (document.getElementById) {
496 masterf = window.parent.document.getElementById("fs1");
497 leftf = window.parent.document.getElementById("left");
498 leftcontent = document.getElementById("leftframe");
499 leftbutton = document.getElementById("showf");
500 } else {
501 return false;
502 }
503 if(hide) {
504 new_col = calc_col("20");
505 masterf.cols = new_col;
506 document.body.scrollLeft=0;
507 document.body.style.overflow="hidden";
508 leftcontent.style.display = "none";
509 leftbutton.style.display="block";
510 } else {
511 masterf.cols = calc_col(left_size);
512 document.body.style.overflow="";
513 leftbutton.style.display="none";
514 leftcontent.style.display="block";
515 }
516 }
517 function calc_col(c_w) {
518HEREDOC;
599038d5 519 if ($location_of_bar == 'right') {
520 $xtra .= ' right=true;';
a6172cd5 521 } else {
599038d5 522 $xtra .= ' right=false;';
523 }
0bcd11eb 524$xtra .= <<<HEREDOC
525 if (right) {
526 new_col = '*,'+c_w;
527 } else {
528 new_col = c_w+',*';
529 }
530 return new_col;
531 }
532 function resizeframe(direction) {
533 if (document.all) {
534 masterf = window.parent.document.all["fs1"];
535 } else if (document.getElementById) {
536 window.parent.document.getElementById("fs1");
537 } else {
538 return false;
539 }
540HEREDOC;
599038d5 541 if ($location_of_bar == 'right') {
542 $xtra .= ' colPat=/^\*,(\d+)$/;';
a6172cd5 543 } else {
599038d5 544 $xtra .= ' colPat=/^(\d+),.*$/;';
545 }
0bcd11eb 546$xtra .= <<<HEREDOC
547 old_col = masterf.cols;
548 colPat.exec(old_col);
549 if (direction) {
550 new_col_width = parseInt(RegExp.$1) + 25;
551 } else {
552 if (parseInt(RegExp.$1) > 35) {
553 new_col_width = parseInt(RegExp.$1) - 25;
554 }
555 }
556 masterf.cols = calc_col(new_col_width);
557 }
558//-->
559</script>
560
561HEREDOC;
f23f6a3a 562
563/* style definitions */
386e556f 564
0bcd11eb 565$xtra .= <<<HEREDOC
566<style type="text/css">
567<!--
568 body {
569 margin: 0px 0px 0px 0px;
570 padding: 5px 5px 5px 5px;
571 }
572 img {
573 vertical-align: middle;
574 }
575 .button {
576 border:outset;
577 border-color: $color[9];
578 background:$color[0];
579 color:$color[6];
580 width:99%;
581 heigth:99%;
582 }
583 .mbx_par {
584 font-size:1.0em;
585 margin-left:4px;
586 margin-right:0px;
587 white-space: nowrap;
588 }
589 a.mbx_link {
590 text-decoration: none;
591 background-color: $color[0];
592 display: inline;
593 }
594 a:hover.mbx_link {
595 background-color: $color[9];
596 }
597 a.mbx_link img {
598 border-style: none;
599 }
600 .mbx_sub {
601 padding-left:5px;
602 padding-right:0px;
603 margin-left:4px;
604 margin-right:0px;
605 font-size:0.9em;
606 white-space: nowrap;
607 }
608 .par_area {
609 margin-top:0px;
610 margin-left:4px;
611 margin-right:0px;
612 padding-left:10px;
613 padding-bottom:5px;
614 border-left: solid;
615 border-left-width:0.1em;
616 border-left-color:$color[9];
617 border-bottom: solid;
618 border-bottom-width:0.1em;
619 border-bottom-color:$color[9];
620 display: block;
621 }
622 .mailboxes {
623 padding-bottom:3px;
624 margin-right:4px;
625 padding-right:4px;
626 margin-left:4px;
627 padding-left:4px;
628 border: groove;
629 border-width:0.1em;
630 border-color:$color[9];
631 background: $color[0];
632 font-size: smaller;
633 }
634-->
635</style>
636
637HEREDOC;
f23f6a3a 638}
639
dcc1cc82 640displayHtmlHeader( 'SquirrelMail', $xtra );
852abae7 641sqgetGlobalVar('auto_create_done',$auto_create_done,SQ_SESSION);
95e93571 642/* If requested and not yet complete, attempt to autocreate folders. */
643if ($auto_create_special && !isset($auto_create_done)) {
a3439b27 644 $autocreate = array($sent_folder, $trash_folder, $draft_folder);
95e93571 645 foreach( $autocreate as $folder ) {
a3439b27 646 if (($folder != '') && ($folder != 'none')) {
95e93571 647 if ( !sqimap_mailbox_exists($imapConnection, $folder)) {
648 sqimap_mailbox_create($imapConnection, $folder, '');
852abae7 649 } else {
7b1f03c9 650 // check for subscription is useless and expensive, just
651 // surpress the NO response. Unless we're on Mecury, which
652 // will just subscribe a folder again if it's already
653 // subscribed.
654 if ( strtolower($imap_server_type) != 'mercury32' ||
655 !sqimap_mailbox_is_subscribed($imapConnection, $folder) ) {
656 sqimap_subscribe($imapConnection, $folder, false);
657 }
2d367c68 658 }
ebf18afa 659 }
2d367c68 660 }
a6d2e0de 661
95e93571 662 /* Let the world know that autocreation is complete! Hurrah! */
90de1755 663 $auto_create_done = TRUE;
a32985a5 664 sqsession_register($auto_create_done, 'auto_create_done');
95e93571 665}
dcc1cc82 666
134e4174 667if ($advanced_tree) {
668 echo "\n<body" .
669 ' onload="preload(\'../images/minus.png\',\'../images/plus.png\')"' .
670 " bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n";
671} else {
672 echo "\n<body bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n";
673}
dcc1cc82 674
675do_hook('left_main_before');
676if ($advanced_tree) {
677 /* nice future feature, needs layout !! volunteers? */
678 $right_pos = $left_size - 20;
39bfea8f 679/* 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>&lt;&lt;</b></a></div>';
680 echo '<div id="showf" style="width=20;font-size:12;display:none;"><a href="javascript:hideframe(false)"><b>&gt;&gt;</b></a></div>';
681 echo '<div id="incrf" style="width=20;font-size:12"><a href="javascript:resizeframe(true)"><b>&gt;</b></a></div>';
682 echo '<div id="decrf" style="width=20;font-size:12"><a href="javascript:resizeframe(false)"><b>&lt;</b></a></div></div>';
683 echo '<div id="leftframe"><br /><br />';*/
599038d5 684}
dcc1cc82 685
ba4c6392 686echo "\n\n" . html_tag( 'table', '', 'left', '', 'border="0" cellspacing="0" cellpadding="0" width="99%"' ) .
687 html_tag( 'tr' ) .
688 html_tag( 'td', '', 'left' ) .
689 html_tag( 'table', '', '', '', 'border="0" cellspacing="0" cellpadding="0"' ) .
690 html_tag( 'tr' ) .
691 html_tag( 'td', '', 'center' ) .
692 '<font size="4"><b>'. _("Folders") . "</b><br /></font>\n\n";
a6d2e0de 693
95e93571 694if ($date_format != 6) {
695 /* First, display the clock. */
696 if ($hour_format == 1) {
3208c2a5 697 $hr = 'H:i';
95e93571 698 if ($date_format == 4) {
699 $hr .= ':s';
a6d2e0de 700 }
95e93571 701 } else {
702 if ($date_format == 4) {
703 $hr = 'g:i:s a';
704 } else {
705 $hr = 'g:i a';
2d367c68 706 }
707 }
708
95e93571 709 switch( $date_format ) {
e4f5158a 710 case 0:
134e4174 711 $clk = date('Y-m-d '.$hr. ' T', time());
712 break;
95e93571 713 case 1:
714 $clk = date('m/d/y '.$hr, time());
715 break;
716 case 2:
717 $clk = date('d/m/y '.$hr, time());
718 break;
719 case 4:
720 case 5:
721 $clk = date($hr, time());
722 break;
723 default:
67eb95d7 724 $clk = getDayAbrv( date( 'w', time() ) ) . date( ', ' . $hr, time() );
2d367c68 725 }
95e93571 726 $clk = str_replace(' ','&nbsp;',$clk);
727
f8a1ed5a 728 echo '<small><span style="white-space: nowrap;">'
729 . str_replace(' ', '&nbsp;', _("Last Refresh"))
3cbf882e 730 . ":</span><br /><span style=\"white-space: nowrap;\">$clk</span></small><br />\n";
95e93571 731}
732
733/* Next, display the refresh button. */
c435f076 734echo '<div style="white-space: nowrap;"><small>[<a href="../src/left_main.php" target="left">'.
ba4c6392 735 _("Check mail") . "</a>]</small></div></td></tr></table><br />\n\n";
95e93571 736
737/* Lastly, display the folder list. */
a1a39832 738
95e93571 739if ( $collapse_folders ) {
740 /* If directed, collapse or uncollapse a folder. */
741 if (isset($fold)) {
742 setPref($data_dir, $username, 'collapse_folder_' . $fold, SM_BOX_COLLAPSED);
743 } else if (isset($unfold)) {
744 setPref($data_dir, $username, 'collapse_folder_' . $unfold, SM_BOX_UNCOLLAPSED);
745 }
746}
747
c5a52f46 748/* Get unseen/total display prefs */
749$unseen_type = getPref( $data_dir , $username , 'unseen_type' );
750$unseen_notify = getPref( $data_dir , $username , 'unseen_notify' );
751
3cbf882e 752if (empty($unseen_type)) {
753 if (!empty($default_unseen_type)) {
c5a52f46 754 $unseen_type = $default_unseen_type;
755 } else {
756 $unseen_type = 1;
757 }
758}
759
3cbf882e 760if (empty($unseen_notify)) {
761 if (!empty($default_unseen_notify)) {
c5a52f46 762 $unseen_notify = $default_unseen_notify;
763 } else {
764 $unseen_notify = 0;
765 }
766}
767
3cbf882e 768$boxes = sqimap_mailbox_tree($imapConnection);
769if (isset($advanced_tree) && $advanced_tree) {
770 echo '<form name="collapse" action="left_main.php" method="post" ' .
0bcd11eb 771 'enctype="multipart/form-data">'."\n";
3cbf882e 772 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 />';
773 echo '<div id="mailboxes" class="mailboxes">'."\n\n";
774 sqgetGlobalVar('mbx', $mbx, SQ_POST);
775 if (!isset($mbx)) $mbx=NULL;
776 ListAdvancedBoxes($boxes, $mbx);
777 echo '</div>';
3cbf882e 778 echo '</form>'."\n";
779} else {
780 ListBoxes($boxes);
95e93571 781}
782
dcc1cc82 783do_hook('left_main_after');
784sqimap_logout($imapConnection);
785
39bfea8f 786?>
ba4c6392 787</td></tr></table>
a1a39832 788</body></html>