changed <? to <?php in everything
[squirrelmail.git] / src / folders.php
index 167993c3d25b9e96f0f1756ecc44e5afa27be70e..1f86f92c7ec89d7a9904f830a4357c7a19caa64e 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
    session_start();
 
    if (!isset($config_php))
 
   /** Cyrus Folder Options**/
 //Creates the Sent and Trash folder
-if (($sent_create == "true") || ($trash_create == "true")) {
-   if ($sent_create == "true") {
-     sqimap_mailbox_create ($imapConnection, $sent_folder, "");  
-     }
+   if (($sent_create == "true") || ($trash_create == "true")) {
+      if ($sent_create == "true") {
+         sqimap_mailbox_create ($imapConnection, $sent_folder, "");  
+      }
    if ($trash_create == "true") {
-     sqimap_mailbox_create ($imapConnection, $trash_folder, "");
-     }
+      sqimap_mailbox_create ($imapConnection, $trash_folder, "");
+   }
+
 //Major hack, need to right a funtion to check and if mailbox is subscribed to
    sqimap_subscribe($imapConnection, "INBOX");
-      echo "<BR><BR>";
-      echo _("Mailboxes Created Successfully!");
+   echo "<BR><BR><CENTER><b>";
+   echo _("Mailboxes Created Successfully!");
    echo "<BR><A HREF=\"webmail.php?PHPSESSID=$PHPSESSID&right_frame=folders.php\" TARGET=_top>";
    echo _("Click here");
    echo "</A> ";
    echo _("to continue.");
    echo "</CENTER>";
    echo "</BODY></HTML>";
-exit;
-}
+       
+   exit;
+   }
+
 //display form option for creating Sent and Trash folder
     if ($imap_server_type == "cyrus") {
-    if ((!sqimap_mailbox_exists ($imapConnection, $sent_folder)) || (!sqimap_mailbox_exists ($imapConnection, $trash_folder))) {
-    echo "<TABLE WIDTH=70% COLS=1 ALIGN=CENTER>\n";
-    echo "<TR><TD BGCOLOR=\"$color[0]\" ALIGN=CENTER><B>";
-    echo _("Special Folder Options");
-    echo "</B></TD></TR>";
-    echo "<TR><TD BGCOLOR=\"$color[4]\" ALIGN=CENTER>";
-        echo _("In order for SquirrelMail to provide the full set of options you need to create the special folders listed below.  Just click the check box and hit the create button.");
-        echo "<FORM ACTION=\"folders_test.php?PHPSESSID=$PHPSESSID\" METHOD=\"POST\">\n";
-        if (!sqimap_mailbox_exists ($imapConnection, $sent_folder)) {
-        echo _("Create Sent") . "<INPUT TYPE=checkbox NAME=sent_create value=true><br>\n";
-        }
-        if (!sqimap_mailbox_exists ($imapConnection, $trash_folder)){
-        echo _("Create Trash") . "<INPUT TYPE=checkbox NAME=trash_create value=true><br>\n";
-        echo "<INPUT TYPE=submit VALUE=Create>";
-        echo "</FORM></TD></TR>\n";
-        }
-    }
-}
+       if ((!sqimap_mailbox_exists ($imapConnection, $sent_folder)) || (!sqimap_mailbox_exists ($imapConnection, $trash_folder))) {
+       echo "<TABLE WIDTH=70% COLS=1 ALIGN=CENTER>\n";
+       echo "<TR><TD BGCOLOR=\"$color[0]\" ALIGN=CENTER><B>";
+       echo _("Special Folder Options");
+       echo "</B></TD></TR>";
+       echo "<TR><TD BGCOLOR=\"$color[4]\" ALIGN=CENTER>";
+       echo _("In order for SquirrelMail to provide the full set of options you need to create the special folders listed below.  Just click the check box and hit the create button.");
+       echo "<FORM ACTION=\"folders.php?PHPSESSID=$PHPSESSID\" METHOD=\"POST\">\n";
+           if (!sqimap_mailbox_exists ($imapConnection, $sent_folder)) {
+              echo _("Create Sent") . "<INPUT TYPE=checkbox NAME=sent_create value=true><br>\n";
+           }
+           if (!sqimap_mailbox_exists ($imapConnection, $trash_folder)){
+           echo _("Create Trash") . "<INPUT TYPE=checkbox NAME=trash_create value=true><br>\n";
+           echo "<INPUT TYPE=submit VALUE=Create>";
+           echo "</FORM></TD></TR>\n";
+           }
+       }
+   }
+
    /** DELETING FOLDERS **/
    echo "<TABLE WIDTH=70% COLS=1 ALIGN=CENTER>\n";
    echo "<TR><TD BGCOLOR=\"$color[0]\" ALIGN=CENTER><B>";
@@ -233,10 +237,25 @@ exit;
    echo "<TR><TD BGCOLOR=\"$color[4]\" ALIGN=CENTER>";
    if ($count_special_folders <= count($boxes)) {
       $imap_stream = sqimap_login ($username, $key, $imapServerAddress, $imapPort, 1);
-      $boxes = sqimap_mailbox_list_all ($imap_stream);
+      $boxes_all = sqimap_mailbox_list_all ($imap_stream);
       
       echo "<FORM ACTION=\"folders_subscribe.php?PHPSESSID=$PHPSESSID&method=sub\" METHOD=\"POST\">\n";
-      echo "<tt><input type=text size=32 name=mailbox></tt>";
+      echo "<tt><select name=mailbox>";
+      for ($i = 0; $i < count($boxes_all); $i++) {
+         $use_folder = true;
+         for ($p = 0; $p < count ($boxes); $p++) {
+            if ($boxes_all[$i]["unformatted"] == $boxes[$p]["unformatted"]) {
+               $use_folder = false;
+               continue;
+            }
+         }
+         if ($use_folder == true) {
+            $box = $boxes_all[$i]["unformatted-dm"];
+            $box2 = replace_spaces($boxes_all[$i]["formatted"]);
+            echo "         <OPTION VALUE=\"$box\">$box2\n";
+         }
+      }
+      echo "</select></tt>";
       echo "<INPUT TYPE=SUBMIT VALUE=\"";
       echo _("Subscribe");
       echo "\">\n";