fix for checking notifying type
[squirrelmail.git] / src / left_main.php
index 2009a52599ccb69419a96e7c2b647ca72f301e15..b020d8eb10034226cfeec4ee87b8a5f7326780aa 100644 (file)
  * $Id$
  */
 
-require_once('../src/validate.php');
-require_once('../functions/array.php');
-require_once('../functions/imap.php');
-require_once('../functions/plugin.php');
-require_once('../functions/page_header.php');
+/* Path for SquirrelMail required files. */
+define('SM_PATH','../');
+
+/* SquirrelMail required files. */
+require_once(SM_PATH . 'include/validate.php');
+require_once(SM_PATH . 'functions/array.php');
+require_once(SM_PATH . 'functions/imap.php');
+require_once(SM_PATH . 'functions/plugin.php');
+require_once(SM_PATH . 'functions/page_header.php');
+require_once(SM_PATH . 'functions/html.php');
 
 /* These constants are used for folder stuff. */
 define('SM_BOX_UNCOLLAPSED', 0);
@@ -40,23 +45,20 @@ function formatMailboxName($imapConnection, $box_array) {
     if (ereg("^( *)([^ ]*)$", $mailbox, $regs)) {
         $mailbox = $regs[2];
     }
-
     $unseen = 0;
-
+    $status = array();
     if (($unseen_notify == 2 && $real_box == 'INBOX') ||
         $unseen_notify == 3) {
-        $unseen = sqimap_unseen_messages($imapConnection, $real_box);
-        if ($unseen_type == 1 && $unseen > 0) {
-            $unseen_string = "($unseen)";
-            $unseen_found = TRUE;
-        } else if ($unseen_type == 2) {
-            $numMessages = sqimap_get_num_messages($imapConnection, $real_box);
-            $unseen_string = "<font color=\"$color[11]\">($unseen/$numMessages)</font>";
-            $unseen_found = TRUE;
-        }
+       $status = create_unseen_string($real_box, $box_array, $imapConnection, $unseen_type );
+       if ($status !== false) {
+           list($unseen_string, $unseen) = $status;
+       } else {
+           list($unseen_string, $unseen) = array(_("Not available"),'');
+       }
+    } else {
+       list($unseen_string, $unseen) = array('','');
     }
-
-    $special_color = ($use_special_folder_color && isSpecialMailbox( $real_box ) );
+    $special_color = ($use_special_folder_color && isSpecialMailbox($real_box));
 
     /* Start off with a blank line. */
     $line = '';
@@ -64,10 +66,13 @@ function formatMailboxName($imapConnection, $box_array) {
     /* If there are unseen message, bold the line. */
     if ($unseen > 0) { $line .= '<B>'; }
 
-    /* Crate the link for this folder. */
-    $line .= "<A HREF=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" TARGET=\"right\" STYLE=\"text-decoration:none\">";
+    /* Create the link for this folder. */
+    if ($status !== false) {
+       $line .= '<a href="right_main.php?PG_SHOWALL=0&amp;sort=0&amp;startMessage=1&amp;mailbox='.
+                $mailboxURL.'" TARGET="right" STYLE="text-decoration:none">';
+    } 
     if ($special_color) {
-        $line .= "<FONT COLOR=\"$color[11]\">";
+        $line .= "<font color=\"$color[11]\">";
     }
     if ( $mailbox == 'INBOX' ) {
         $line .= _("INBOX");
@@ -75,14 +80,16 @@ function formatMailboxName($imapConnection, $box_array) {
         $line .= str_replace(' ','&nbsp;',$mailbox);
     }
     if ($special_color == TRUE)
-        $line .= "</FONT>";
-    $line .= '</A>';
+        $line .= '</font>';
+    if ($status !== false) {
+       $line .= '</a>';
+    }
 
     /* If there are unseen message, close bolding. */
     if ($unseen > 0) { $line .= "</B>"; }
 
     /* Print unseen information. */
-    if (isset($unseen_found) && $unseen_found) {
+    if ($unseen_string != '') {
         $line .= "&nbsp;<SMALL>$unseen_string</SMALL>";
     }
 
@@ -94,7 +101,7 @@ function formatMailboxName($imapConnection, $box_array) {
         if ($numMessages > 0) {
             $urlMailbox = urlencode($real_box);
             $line .= "\n<small>\n" .
-                    "&nbsp;&nbsp;(<A HREF=\"empty_trash.php\" style=\"text-decoration:none\">"._("empty")."</A>)" .
+                    "&nbsp;&nbsp;(<A HREF=\"empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</A>)" .
                     "</small>";
         }
     }
@@ -159,9 +166,9 @@ function compute_folder_children(&$parbox, $boxcount) {
  * currently appropriate.
  */
 function create_collapse_link($boxnum) {
-    global $boxes;
+    global $boxes, $imapConnection, $unseen_notify, $color;
     $mailbox = urlencode($boxes[$boxnum]['unformatted']);
-
+        
     /* Create the link for this collapse link. */
     $link = '<a target="left" style="text-decoration:none" ' .
             'href="left_main.php?';
@@ -176,6 +183,88 @@ function create_collapse_link($boxnum) {
     return ($link);
 }
 
+/**
+ * create_unseen_string:
+ *
+ * Create unseen and total message count for both this folder and
+ * it's subfolders.
+ *
+ * @param string $boxName name of the current mailbox
+ * @param array $boxArray array for the current mailbox
+ * @param $imapConnection current imap connection in use
+ * @return array[0] unseen message string (for display)
+ * @return array[1] unseen message count
+ */
+function create_unseen_string($boxName, $boxArray, $imapConnection, $unseen_type) {
+    global $boxes, $unseen_type, $color, $unseen_cum;
+
+    /* Initialize the return value. */
+    $result = array(0,0);
+
+    /* Initialize the counts for this folder. */
+    $boxUnseenCount = 0;
+    $boxMessageCount = 0;
+    $totalUnseenCount = 0;
+    $totalMessageCount = 0;
+
+    /* Collect the counts for this box alone. */
+    $status = sqimap_status_messages($imapConnection, $boxName);
+    $boxUnseenCount = $status['UNSEEN'];
+    if ($boxUnseenCount === false) {
+       return false;
+    }
+    if ($unseen_type == 2) {
+        $boxMessageCount = $status['MESSAGES'];
+    }
+
+    /* Initialize the total counts. */
+
+    if ($boxArray['collapse'] == SM_BOX_COLLAPSED && $unseen_cum) {
+        /* Collect the counts for this boxes subfolders. */
+        $curBoxLength = strlen($boxName);
+        $boxCount = count($boxes);
+
+        for ($i = 0; $i < $boxCount; ++$i) {
+            /* Initialize the counts for this subfolder. */
+            $subUnseenCount = 0;
+            $subMessageCount = 0;
+
+            /* Collect the counts for this subfolder. */
+            if (($boxName != $boxes[$i]['unformatted'])
+                   && (substr($boxes[$i]['unformatted'], 0, $curBoxLength) == $boxName)
+                   && !in_array('noselect', $boxes[$i]['flags'])) {
+               $status = sqimap_status_messages($imapConnection, $boxes[$i]['unformatted']);
+               $subUnseenCount = $status['UNSEEN'];
+                if ($unseen_type == 2) {
+                    $subMessageCount = $status['MESSAGES'];;
+                }
+                /* Add the counts for this subfolder to the total. */
+                $totalUnseenCount += $subUnseenCount;
+                $totalMessageCount += $subMessageCount;
+            }
+        }
+
+        /* Add the counts for all subfolders to that of the box. */
+        $boxUnseenCount += $totalUnseenCount;
+        $boxMessageCount += $totalMessageCount;
+    }
+
+    /* And create the magic unseen count string.     */
+    /* Really a lot more then just the unseen count. */
+    if (($unseen_type == 1) && ($boxUnseenCount > 0)) {
+        $result[0] = "($boxUnseenCount)";
+    } else if ($unseen_type == 2) {
+        $result[0] = "($boxUnseenCount/$boxMessageCount)";
+        $result[0] = "<font color=\"$color[11]\">$result[0]</font>";
+    }
+
+    /* Set the unseen count to return to the outside world. */
+    $result[1] = $boxUnseenCount;
+
+    /* Return our happy result. */
+    return ($result);
+}
+
 /**
  * This simple function checks if a box is another box's parent.
  */
@@ -192,16 +281,253 @@ function is_parent_box($curbox_name, $parbox_name) {
     return ($parbox_name == $actual_parname);
 }
 
+function listBoxes ($boxes, $j=0 ) {
+    global $data_dir, $username, $startmessage, $color, $unseen_notify, $unseen_type,
+    $move_to_trash, $trash_folder, $collapse_folders;
+    $pre = '';
+    $end = '';
+    $collapse = false;
+    if ($boxes) {
+       $mailbox = $boxes->mailboxname_full;
+       $leader = '';
+       for ($k = 0; $k < $j; $k++) {
+           $leader.= '&nbsp&nbsp&nbsp';
+       }
+       $mailboxURL = urlencode($mailbox);
+
+       /* get unseen/total messages information */
+        if ($boxes->unseen) {
+           $unseen = $boxes->unseen;
+           $unseen_string = "($unseen)";
+           if ($unseen>0) $unseen_found = TRUE;
+           if ($boxes->total) {
+               $numMessages = $boxes->total;
+               $unseen_string = "<font color=\"$color[11]\">($unseen/$numMessages)</font>";
+           }       
+       } else $unseen = 0;
+
+
+
+       if (isset($boxes->mbxs[0]) && $collapse_folders) {
+           $collapse = getPref($data_dir, $username, 'collapse_folder_' . $mailbox);
+           $collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
+
+           $link = '<a target="left" style="text-decoration:none" ' .'href="left_main.php?';
+           if ($collapse) {
+               $link .= "unfold=$mailboxURL\">$leader +&nbsp";
+           } else {
+               $link .= "fold=$mailboxURL\">$leader -&nbsp";
+           }
+           $link .= '</a>';
+           $pre .= $link;
+       } else {
+           $pre.= $leader . '&nbsp&nbsp&nbsp';
+       }
+
+
+       /* If there are unseen message, bold the line. */
+       if ($unseen > 0) { $pre .= '<B>'; }
+
+       if (($move_to_trash) && ($mailbox == $trash_folder)) {
+           if (! isset($numMessages)) {
+               $status = sqimap_status_messages($imapConnection, $mailbox);
+               $numMessages = $status['MESSAGES'];
+           }
+
+           if ($numMessages > 0) {
+               $urlMailbox = urlencode($mailbox);
+               $pre .= "\n<small>\n" .
+                       "&nbsp;&nbsp;(<A HREF=\"empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</A>)" .
+                       "</small>";
+           }
+       } else {
+           if (!$boxes->is_noselect) {
+               $pre .= "<a HREF=\"right_main.php?PG_SHOWALL=0&amp;sort=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" TARGET=\"right\">";
+               $end .= '</a>';
+           }
+       }
+
+       /* If there are unseen message, close bolding. */
+       if ($unseen > 0) { $end .= "</B>"; }
+
+       /* Print unseen information. */
+       if (isset($unseen_found) && $unseen_found) {
+           $end .= "&nbsp;<SMALL>$unseen_string</SMALL>";
+       }
+
+       $font = '';
+       $fontend = '';
+       if ($boxes->is_special) {
+           $font = "<FONT COLOR=\"$color[11]\">";
+           $fontend = "</FONT>";    
+       }
+       
+       if (!$boxes->is_root) { 
+           echo "" . $pre .$font. $boxes->mailboxname_sub .$fontend . $end. '<br>';
+           $j++;
+       }
+       if (!$collapse || $boxes->is_root) {
+           for ($i = 0; $i <count($boxes->mbxs); $i++) {
+               listBoxes($boxes->mbxs[$i],$j);
+           }
+       }    
+       
+    }
+}
+
+function ListAdvancedBoxes ($boxes, $mbx, $j='ID.0000' ) {
+    global $data_dir, $username, $startmessage, $color, $unseen_notify, $unseen_type,
+    $move_to_trash, $trash_folder, $collapse_folders;
+
+    /* use_folder_images only works if the images exist in ../images */
+    $use_folder_images = true;
+
+    $pre = '';
+    $end = '';
+    $collapse = false;
+    
+    if ($boxes) {
+       $mailbox = $boxes->mailboxname_full;
+       $mailboxURL = urlencode($mailbox);
+
+       /* get unseen/total messages information */
+        if ($boxes->unseen) {
+           $unseen = $boxes->unseen;
+           $unseen_string = "($unseen)";
+           if ($unseen>0) $unseen_found = TRUE;
+           if ($boxes->total) {
+               $numMessages = $boxes->total;
+               $unseen_string = "<font color=\"$color[11]\">($unseen/$numMessages)</font>";
+           }       
+       } else $unseen = 0;
+
+       /* If there are unseen message, bold the line. */
+       if ($unseen > 0) { $pre .= '<B>'; }
+
+       /* color special boxes */
+       if ($boxes->is_special) {
+           $pre .= "<FONT COLOR=\"$color[11]\">";
+           $end .= "</FONT>";    
+       }
+
+       /* If there are unseen message, close bolding. */
+       if ($unseen > 0) { $end .= "</B>"; }
+
+       /* Print unseen information. */
+       if (isset($unseen_found) && $unseen_found) {
+           $end .= "&nbsp;$unseen_string";
+       }
+
+       if (($move_to_trash) && ($mailbox == $trash_folder)) {
+           if (! isset($numMessages)) {
+               $numMessages = $boxes->total;
+           }
+           if ($numMessages > 0) {
+               $urlMailbox = urlencode($mailbox);
+               $pre .= "\n<small>\n" .
+                       "&nbsp;&nbsp;(<a class=\"mbx_link\" HREF=\"empty_trash.php\">"._("purge")."</a>)" .
+                       "</small>";
+           }
+       } else {
+           if (!$boxes->is_noselect) { /* \Noselect boxes can't be selected */
+               $pre .= "<a class=\"mbx_link\" HREF=\"right_main.php?PG_SHOWALL=0&amp;sort=0&amp;startMessage=1&amp;mailbox=$mailboxURL\" TARGET=\"right\">";
+               $end .= '</a>';
+           }
+       }
+
+       if (!$boxes->is_root) {
+           if ($use_folder_images) {
+             if ($boxes->is_inbox) {
+               $folder_img = '../images/inbox.gif';
+             } else if ($boxes->is_sent) {
+               $folder_img = '../images/senti.gif';
+             } else if ($boxes->is_trash) {
+               $folder_img = '../images/delitem.gif';
+             } else if ($boxes->is_draft) {
+               $folder_img = '../images/draft.gif';
+             } else $folder_img = '../images/folder.gif';
+             $folder_img = '&nbsp;<img src="'.$folder_img.'" height="15" valign="center">&nbsp;';
+           } else $folder_img = '';
+           if (!isset($boxes->mbxs[0])) {
+               echo '   ' . html_tag( 'div',
+                               $pre . $folder_img . $boxes->mailboxname_sub . $end ,
+                       'left', '', 'class="mbx_sub" id="' .$j. '"' )
+                       . "\n";
+           } else {
+               /* get collapse information */
+               if ($collapse_folders) {
+                   $link = '<a target="left" style="text-decoration:none" ' .'href="left_main.php?';
+                   $form_entry = $j.'F';
+                   if (isset($mbx) && isset($mbx[$form_entry])) {
+                       $collapse = $mbx[$form_entry];
+                       if ($collapse) {
+                           setPref($data_dir, $username, 'collapse_folder_'.$boxes->mailboxname_full , SM_BOX_COLLAPSED);
+                       } else {
+                           setPref($data_dir, $username, 'collapse_folder_'.$boxes->mailboxname_full , SM_BOX_UNCOLLAPSED);
+                       }
+                   } else {
+                       $collapse = getPref($data_dir, $username, 'collapse_folder_' . $mailbox);
+                       $collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
+                   }
+                   if ($collapse) {
+                       $link = '<a href="javascript:void(0)">'." <img src=\"../images/plus.gif\" border=\"1\" id=$j onclick=\"hidechilds(this)\"></A>";
+                   } else {
+                       $link = '<a href="javascript:void(0)">'."<img src=\"../images/minus.gif\" border=\"1\" id=$j onclick=\"hidechilds(this)\"></a>";
+                   }
+                   $collapse_link = $link;
+               } else $collapse_link='';
+               echo '   ' . html_tag( 'div',
+                               $collapse_link . $pre . $folder_img . '&nbsp;'. $boxes->mailboxname_sub . $end ,
+                       'left', '', 'class="mbx_par" id="' .$j. 'P"' )
+                       . "\n";
+               echo '   <INPUT TYPE="hidden" name=mbx['.$j. 'F] value="'.$collapse.'" id="mbx['.$j.'F]">'."\n";
+           }
+       }
+       if ($collapse) {
+           $visible = ' STYLE="display:none;"';
+       } else {
+           $visible = ' STYLE="display:block;"';
+       }
+
+       if (isset($boxes->mbxs[0]) && !$boxes->is_root) /* mailbox contains childs */
+           echo html_tag( 'div', '', 'left', '', 'class="par_area" id='.$j.'.0000 '. $visible ) . "\n";
+
+           if ($j !='ID.0000') {
+              $j = $j .'.0000';
+       }
+       for ($i = 0; $i <count($boxes->mbxs); $i++) {
+           $j++;
+           listAdvancedBoxes($boxes->mbxs[$i],$mbx,$j);
+       }
+       if (isset($boxes->mbxs[0]) && !$boxes->is_root ) echo '</div>'."\n\n";
+    }
+}
+
+
+
 
 /* -------------------- MAIN ------------------------ */
 
-global $delimiter, $default_folder_prefix;
+$key = $_COOKIE['key'];
+$onetimepad = $_SESSION['onetimepad'];
+$username = $_SESSION['username'];
+$delimiter = $_SESSION['delimiter'];
+
+if (isset($_GET['fold'])) {
+    $fold = $_GET['fold'];
+}
+if (isset($_GET['unfold'])) {
+    $unfold = $_GET['unfold'];
+}
 
 // open a connection on the imap port (143)
 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output
 
-
-if (isset($left_refresh) && ($left_refresh != 'none') && ($left_refresh != '')) {
+/**
+ * Using stristr since older preferences may contain "None" and "none".
+ */
+if (isset($left_refresh) && ($left_refresh != '') &&
+    !stristr($left_refresh, "none")){
     $xtra =  "\n<META HTTP-EQUIV=\"Expires\" CONTENT=\"Thu, 01 Dec 1994 16:00:00 GMT\">\n" .
              "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n".
              "<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"$left_refresh;URL=left_main.php\">\n";
@@ -209,6 +535,267 @@ if (isset($left_refresh) && ($left_refresh != 'none') && ($left_refresh != ''))
     $xtra = '';
 }
 
+/**
+ * $advanced_tree and $oldway are boolean vars which are default set to default 
+ * SM behaviour. 
+ * Setting $oldway to false causes left_main.php to use the new  experimental 
+ * way of getting the mailbox-tree.
+ * Setting $advanced tree to true causes SM to display a experimental 
+ * mailbox-tree with dhtml behaviour.
+ * It only works on browsers which supports css and javascript. The used 
+ * javascript is experimental and doesn't support all browsers. It is tested on 
+ * IE6 an Konquerer 3.0.0-2.
+ * In the function ListAdvancedBoxes there is another var $use_folder_images.
+ * setting this to true is only usefull if the images exists in ../images.
+ * 
+ * Feel free to experiment with the code and report bugs and enhancements
+ * to marc@its-projects.nl
+ **/ 
+
+$advanced_tree = false; /* set this to true if you want to see a nicer mailboxtree */
+$oldway = true; /* default SM behaviour */
+
+if ($advanced_tree) {
+$xtra .= <<<ECHO
+<script language="Javascript" TYPE="text/javascript">
+
+<!--
+
+    function hidechilds(el) {
+       id = el.id+".0000";
+        form_id = "mbx[" + el.id +"F]";
+       if (document.all) {
+           ele = document.all[id];
+           if (ele) {
+              if(ele.style.display == "none") {
+                  ele.style.display = "block";
+                 ele.style.visibility = "visible"
+                  el.src="../images/minus.gif";
+                  document.all[form_id].value=0;
+               } else {
+                  ele.style.display = "none";
+                 ele.style.visibility = "hidden"
+                 el.src="../images/plus.gif";
+                 document.all[form_id].value=1;
+              }
+           }
+       } else if (document.getElementById) {
+            ele = document.getElementById(id);
+           if (ele) {
+              if(ele.style.display == "none") {
+                 ele.style.display = "block";
+                 ele.style.visibility = "visible"
+                 el.src="../images/minus.gif";
+                  document.getElementById(form_id).value=0;
+              } else {
+                 ele.style.display = "none";
+                 ele.style.visibility = "hidden"
+                 el.src="../images/plus.gif";
+                  document.getElementById(form_id).value=1;
+              }
+           }   
+       }
+   }
+   
+   function preload() {
+     if (!document.images) return;
+     var ar = new Array();
+     var arguments = preload.arguments;
+     for (var i = 0; i<arguments.length; i++) {
+        ar[i] = new Image();
+       ar[i].src = arguments[i];
+     }
+   }        
+                 
+   function buttonover(el,on) {
+      if (!on) {
+         el.style.borderColor="blue";}
+      else {
+         el.style.borderColor="orange";}
+   }
+
+   function buttonclick(el,on) {
+      if (!on) { 
+         el.style.border="groove"}
+      else {
+         el.style.border="ridge";}
+   }
+
+   function hideframe(hide) {
+   
+ECHO;
+$xtra .= "      left_size = \"$left_size\";\n";
+$xtra .= <<<ECHO
+      if (document.all) {
+       masterf = window.parent.document.all["fs1"];
+       leftf = window.parent.document.all["left"];
+       leftcontent = document.all["leftframe"];
+       leftbutton = document.all["showf"];
+      } else if (document.getElementById) {
+       masterf = window.parent.document.getElementById("fs1");
+       leftf = window.parent.document.getElementById("left");
+       leftcontent = document.getElementById("leftframe");
+       leftbutton = document.getElementById("showf");
+      } else {
+        return false;
+      }        
+      if(hide) {
+         new_col = calc_col("20");
+         masterf.cols = new_col;
+        document.body.scrollLeft=0;
+        document.body.style.overflow='hidden';
+        leftcontent.style.display = 'none';
+        leftbutton.style.display='block';
+      } else {
+         masterf.cols = calc_col(left_size);
+        document.body.style.overflow='';
+        leftbutton.style.display='none';
+        leftcontent.style.display='block';
+        
+      }
+   }
+   
+   function calc_col(c_w) {
+
+ECHO;
+   if ($location_of_bar == 'right') {
+       $xtra .= '     right=true;';
+   } else {    
+       $xtra .= '     right=false;';
+   }
+   $xtra .= "\n";
+$xtra .= <<<ECHO
+     if (right) {
+         new_col = '*,'+c_w;
+     } else {
+         new_col = c_w+',*';
+     }
+     return new_col;
+   }    
+         
+   function resizeframe(direction) {
+     if (document.all) {
+       masterf = window.parent.document.all["fs1"];
+     } else if (document.getElementById) {
+       window.parent.document.getElementById("fs1");
+     } else {
+        return false;
+     }
+     
+ECHO;
+   if ($location_of_bar == 'right') {
+       $xtra .= '  colPat=/^\*,(\d+)$/;';
+   } else {    
+       $xtra .= '  colPat=/^(\d+),.*$/;';
+   }
+   $xtra .= "\n";
+  
+$xtra .= <<<ECHO
+     old_col = masterf.cols;
+     colPat.exec(old_col);
+     
+     if (direction) {
+        new_col_width = parseInt(RegExp.$1) + 25;
+       
+     } else {
+        if (parseInt(RegExp.$1) > 35) {
+           new_col_width = parseInt(RegExp.$1) - 25;
+        }
+     }
+     masterf.cols = calc_col(new_col_width);   
+   }
+
+//-->
+   
+</script>
+
+ECHO;
+
+/* style definitions */
+
+$xtra .= <<<ECHO
+
+<STYLE TYPE="text/css">
+<!--
+  body {
+     margin: 0px 0px 0px 0px;
+     padding: 5px 5px 5px 5px;
+  }
+
+  .button {
+     border:outset;
+     border-color:blue;
+     background:white;
+     width:99%;
+     heigth:99%;
+  }
+
+  .mbx_par {
+     font-size:0.8em;
+     margin-left:4px;
+     margin-right:0px;
+  }
+
+  a.mbx_link {
+      text-decoration: none;
+      background-color: $color[0];
+      display: inline;
+  }
+
+  a:hover.mbx_link {
+      background-color: $color[9];
+  }
+
+  a.mbx_link img {
+      border-style: none;
+  }
+
+  .mbx_sub {
+     padding-left:5px;
+     padding-right:0px;
+     margin-left:4px;
+     margin-right:0px;
+     font-size:0.7em;
+  }
+
+  .par_area {
+     margin-top:0px;
+     margin-left:4px;
+     margin-right:0px;
+     padding-left:10px;
+     padding-bottom:5px;
+     border-left: solid;
+     border-left-width:0.1em;
+     border-left-color:blue;
+     border-bottom: solid;
+     border-bottom-width:0.1em;
+     border-bottom-color:blue;
+     display: block;
+  }
+
+  .mailboxes {
+     padding-bottom:3px;
+     margin-right:4px;
+     padding-right:4px;
+     margin-left:4px;
+     padding-left:4px;
+     border: groove;
+     border-width:0.1em;
+     border-color:green;
+     background: $color[0];
+  }
+
+-->
+
+</STYLE>
+
+ECHO;
+
+}
+
+
+
+
 displayHtmlHeader( 'SquirrelMail', $xtra );
 
 /* If requested and not yet complete, attempt to autocreate folders. */
@@ -226,16 +813,26 @@ if ($auto_create_special && !isset($auto_create_done)) {
 
     /* Let the world know that autocreation is complete! Hurrah! */
     $auto_create_done = TRUE;
-    session_register('auto_create_done');
+    sqsession_register($auto_create_done, 'auto_create_done');
 }
 
 echo "\n<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\">\n";
 
 do_hook('left_main_before');
+if ($advanced_tree) {
+   /* nice future feature, needs layout !! volunteers?   */  
+   $right_pos = $left_size - 20;
+   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>';
+   echo '<div ID="showf" style="width=20;font-size:12;display:none;"><A HREF="javascript:hideframe(false)"><b>>></b></a></div>';
+   echo '<div ID="incrf" style="width=20;font-size:12"><A HREF="javascript:resizeframe(true)"><b>></b></a></div>';
+   echo '<div ID="decrf" style="width=20;font-size:12"><A HREF="javascript:resizeframe(false)"><b><</b></a></div></div>';
+   echo '<div ID="leftframe"><br><br>';
+}
 
-$boxes = sqimap_mailbox_list($imapConnection);
-
-echo '<CENTER><FONT SIZE=4><B>'. _("Folders") . "</B><BR></FONT>\n\n";
+echo "\n\n" . html_tag( 'table', '', 'left', '', 'border="0" cellspacing="0" cellpadding="0" width="99%"' ) . 
+    html_tag( 'tr' ) . 
+    html_tag( 'td', '', 'left' ) . 
+    '<center><font size="4"><b>'. _("Folders") . "</b><br></font>\n\n";
 
 if ($date_format != 6) {
     /* First, display the clock. */
@@ -268,13 +865,13 @@ if ($date_format != 6) {
     }
     $clk = str_replace(' ','&nbsp;',$clk);
 
-    echo '<CENTER><SMALL>' . str_replace(' ','&nbsp;',_("Last Refresh")) .
-         ": $clk</SMALL></CENTER>";
+    echo '<center><small>' . str_replace(' ','&nbsp;',_("Last Refresh")) .
+         ": $clk</small></center>";
 }
 
 /* Next, display the refresh button. */
-echo '<SMALL>(<A HREF="../src/left_main.php" TARGET="left">'.
-     _("refresh folder list") . '</A>)</SMALL></CENTER><BR>';
+echo '<small>(<a href="../src/left_main.php" target="left">'.
+     _("refresh folder list") . '</a>)</small></center><br>';
 
 /* Lastly, display the folder list. */
 if ( $collapse_folders ) {
@@ -286,6 +883,9 @@ if ( $collapse_folders ) {
     }
 }
 
+if ($oldway) {  /* normal behaviour SM */
+$boxes = sqimap_mailbox_list($imapConnection);
 /* Prepare do do out collapsedness and visibility computation. */
 $curbox = 0;
 $boxcount = count($boxes);
@@ -340,10 +940,25 @@ for ($i = 0; $i < count($boxes); $i++) {
         echo $line;
     }
 }
-
-sqimap_logout($imapConnection);
+} else {  /* expiremental code */ 
+    $boxes = sqimap_mailbox_tree($imapConnection);
+    if (isset($advanced_tree) && $advanced_tree) {
+       echo '<FORM name=collapse action="left_main.php" METHOD=POST' .
+            'ENCTYPE="multipart/form-data"'."\n";
+       echo '<small><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>';
+       echo '<DIV ID=mailboxes CLASS=mailboxes>'."\n\n";
+       if (!isset($mbx)) $mbx=NULL; 
+           ListAdvancedBoxes($boxes, $mbx);
+       echo '</div></small>'."\n";
+       echo '</FORM>'."\n";
+    } else {
+       ListBoxes($boxes);
+    }
+} /* if ($oldway) else ... */
 do_hook('left_main_after');
+sqimap_logout($imapConnection);
 
-echo "</BODY></HTML>\n";
+echo '</td></tr></table>' . "\n".
+    "</div></body></html>\n";
 
 ?>