added a theme
[squirrelmail.git] / src / left_main.php
index 292f4b558223126d35998319abec216d921f782d..1a38163039d00b0112efef8c3f79695f7e9970bb 100644 (file)
    }
 ?>
 <HTML>
-<HEAD>
-   <SCRIPT LANGUAGE="JavaScript">
-      function DeleteCookie (name) {
-         var exp = new Date();  
-         exp.setTime (exp.getTime() - 1);  
-         // This cookie is history  
-         var cval = GetCookie (name);  
-         document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
+<?
+   if (!isset($config_php))
+      include("../config/config.php");
+   if (!isset($array_php))
+      include("../functions/array.php");
+   if (!isset($strings_php))
+      include("../functions/strings.php");
+   if (!isset($imap_php))
+      include("../functions/imap.php");
+
+   function formatMailboxName($imapConnection, $mailbox, $real_box, $delimeter, $color, $move_to_trash) {
+      require ("../config/config.php");
+
+      $mailboxURL = urlencode($real_box);
+      sqimap_mailbox_select ($imapConnection, $real_box);
+      $unseen = sqimap_unseen_messages($imapConnection, $numUnseen);
+
+      echo "<NOBR>";
+      if ($unseen)
+         $line .= "<B>";
+
+      $special_color = false;
+      for ($i = 0; $i < count($special_folders); $i++) {
+         if (($special_folders[$i] == $real_box) && ($use_special_folder_color == true))
+            $special_color = true;
       }
 
-      function unSetCookies() {
-         DeleteCookie('username');
-         DeleteCookie('key');
-         DeleteCookie('logged_in');
-         alert(document.cookie);
+      if ($special_color == true) {
+         $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\"><FONT FACE=\"Arial,Helvetica\"  COLOR=\"$color[11]\">";
+         $line .= replace_spaces($mailbox);
+         $line .= "</font></a>";
+      } else {
+         $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\"><FONT FACE=\"Arial,Helvetica\">";
+         $line .= replace_spaces($mailbox);
+         $line .= "</font></a>";
+      }
+
+      if ($unseen)
+         $line .= "</B>";
+
+      if ($numUnseen > 0) {
+         $line .= "&nbsp;<FONT FACE=\"Arial,Helvetica\" SIZE=2>($numUnseen)</FONT>";
+      }
+
+      if (($move_to_trash == true) && (trim($real_box) == $trash_folder)) {
+         $urlMailbox = urlencode($real_box);
+         $line .= "<FONT FACE=\"Arial,Helvetica\" SIZE=2>";
+         $line .= "&nbsp;&nbsp;&nbsp;&nbsp;(<B><A HREF=\"empty_trash.php?numMessages=$numMessages&mailbox=$urlMailbox\" TARGET=right style=\"text-decoration:none\">"._("purge")."</A></B>)";
+         $line .= "</FONT></a>\n";
       }
-   </SCRIPT>
-</HEAD>
-<BODY BGCOLOR=A0B8C8 TEXT="#0000EE" LINK="#0000EE" VLINK="#0000EE" ALINK="#0000EE" onUnLoad="unSetCookies()">
-<FONT FACE="Arial,Helvetica">
-<?
-   include("../config/config.php");
-   include("../functions/strings.php");
-   include("../functions/imap.php");
-   include("../functions/mailbox.php");
+
+      echo "</NOBR>";
+      return $line;
+   }
 
    // open a connection on the imap port (143)
-   $imapConnection = loginToImapServer($username, $key, $imapServerAddress);
-
-   fputs($imapConnection, "1 list \"\" *\n");
-   $str = imapReadData($imapConnection);
-
-   echo "<FONT FACE=\"Arial,Helvetica\" COLOR=000000><B>";
-   echo "<CENTER>$org_name</B><BR>";
-   echo "Folders</CENTER>";
-   echo "</B><BR></FONT>";
-   echo "<code><FONT FACE=\"Arial,Helvetica\">\n";
-   for ($i = 0;$i < count($str); $i++) {
-      $mailbox = Chop($str[$i]);
-      $mailbox = findMailboxName($mailbox);
-
-      // find the quote at the begining of the mailbox name.
-      //    i subtract 1 from the strlen so it doesn't find the quote at the end of the mailbox name.
-      $periodCount = countCharInString($mailbox, ".");
-      
-      // indent the correct number of spaces.
-      for ($j = 0;$j < $periodCount;$j++)
-         echo "&nbsp;&nbsp;";
-      
-      $mailboxURL = urlencode($mailbox);
-      echo "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\"><FONT FACE=\"Arial,Helvetica\">";
-      echo readShortMailboxName($mailbox, ".");
-      if (($move_to_trash == true) && ($mailbox == $trash_folder)) {
-         $urlMailbox = urlencode($mailbox);
-         selectMailbox($imapConnection, $mailbox, $numNessages);
-         echo "</A>&nbsp;&nbsp;<B>(<A HREF=\"empty_trash.php?numMessages=$numMessages&mailbox=$urlMailbox\" TARGET=right>empty</A>)</B>";
+   $imapConnection = sqimap_login($username, $key, $imapServerAddress, 10); // the 10 is to hide the output
+
+   /** If it was a successful login, lets load their preferences **/
+   include("../src/load_prefs.php");
+   if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) {
+      echo "<META HTTP-EQUIV=\"Expires\" CONTENT=\"Thu, 01 Dec 1994 16:00:00 GMT\">";
+      echo "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">"; 
+      echo "<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"$left_refresh;URL=left_main.php\">";
+   }
+   
+   echo "<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\">";
+   echo "<FONT FACE=\"Arial,Helvetica\">";
+
+   $boxes = sqimap_mailbox_list($imapConnection);
+
+   echo "<FONT FACE=\"Arial,Helvetica\" SIZE=4><B><CENTER>";
+   echo _("Folders") . "</B><BR></FONT>";
+
+   echo "<FONT FACE=\"Arial,Helvetica\" SIZE=2>(<A HREF=\"../src/left_main.php\" TARGET=\"left\">";
+   echo _("refresh folder list");
+   echo "</A>)</FONT></CENTER><BR>";
+   echo "<FONT FACE=\"Arial,Helvetica\">\n";
+   $delimeter = sqimap_get_delimiter($imapConnection);
+
+   for ($i = 0;$i < count($boxes); $i++) {
+      $line = "";
+      $mailbox = $boxes[$i]["formatted"];
+
+      if ($boxes[$i]["flags"]) {
+         $noselect = false;
+         for ($h = 0; $h < count($boxes[$i]["flags"]); $h++) {
+            if (strtolower($boxes[$i]["flags"][$h]) == "noselect")
+               $noselect = true;
+         }
+         if ($noselect == true) {
+            $line .= "<FONT COLOR=\"$color[10]\" FACE=\"Arial,Helvetica\">";
+            $line .= replace_spaces(readShortMailboxName($mailbox, $delimeter));
+            $line .= "</FONT><FONT FACE=\"Arial,Helvetica\">";
+         } else {
+            $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $color, $move_to_trash);
+         }
+      } else {
+         $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $color, $move_to_trash);
       }
-      echo "</FONT></a><br>\n";
+      echo "$line<BR>";
    }
-   echo "</code></FONT>";
+
+   echo "</FONT>";
 
    fclose($imapConnection);