fixed several parse errors with gettext stuff
[squirrelmail.git] / src / folders_delete.php
index 3af351a89ae6178fb72dc38689293af5dce9d1d3..496ebd345097d27e3e52ded2d4bc52c704a4141c 100644 (file)
@@ -3,54 +3,80 @@
    include("../functions/strings.php");
    include("../functions/page_header.php");
    include("../functions/imap.php");
+   include("../functions/mailbox.php");
+   include("../functions/array.php");
 
-   $imapConnection = fsockopen($imapServerAddress, 143, &$errorNumber, &$errorString);
-   if (!$imapConnection) {
-      echo "Error connecting to IMAP Server.<br>";
-      echo "$errorNumber : $errorString<br>";
-      exit;
-   }
-   $serverInfo = fgets($imapConnection, 256);
+   include("../src/load_prefs.php");
+
+   echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
+   $imapConnection = loginToImapServer($username, $key, $imapServerAddress);
+   getFolderList($imapConnection, $boxes);
 
-   fputs($imapConnection, "1 login $username $key\n");
-   $read = fgets($imapConnection, 1024);
-   echo $read;
+   $dm = findMailboxDelimeter($imapConnection);
+   /** lets see if we CAN move folders to the trash.. otherwise, just delete them **/
+   for ($i = 0; $i < count($boxes[$i]["UNFORMATTED"]); $i++) {
+      if ($boxes[$i]["UNFORMATTED"] == $trash_folder)
+         $tmp_trash_folder = $boxes[$i]["RAW"];
+   }
 
-   if (strpos($read, "NO")) {
-      error_username_password_incorrect();
-      exit;
+   $tmpflags = getMailboxFlags($tmp_trash_folder);
+   $can_move_to_trash = true;
+   for ($i = 0; $i < count($tmpflags); $i++) {
+      if (strtolower($tmpflags[$i]) == "noinferiors")
+         $can_move_to_trash = false;
    }
 
-   // switch to the mailbox, and get the number of messages in it.
-   selectMailbox($imapConnection, $mailbox, $numMessages);
+   /** Lets start removing the folders and messages **/
+   if (($move_to_trash == true) && ($can_move_to_trash == true)) { /** if they wish to move messages to the trash **/
+      /** Creates the subfolders under $trash_folder **/
+      for ($i = 0; $i < count($boxes); $i++) {
+         if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
+             (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
+            $folderWithoutINBOX = getFolderNameMinusINBOX($boxes[$i]["UNFORMATTED"], $dm);
+            $flags = getMailboxFlags($boxes[$i]["RAW"]);
+            for ($b = 0; $b < count($flags); $b++) {
+               $type = $flags[$b];
+            }
+            createFolder($imapConnection, "$trash_folder" . $dm . "$folderWithoutINBOX", $type);
+         }
+      }
+      for ($i = 0; $i < count($boxes); $i++) {
+         if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
+             (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
+            selectMailbox($imapConnection, $boxes[$i]["UNFORMATTED"], $numMessages);
+            $folder = getFolderNameMinusINBOX($boxes[$i]["UNFORMATTED"]);
 
-   // Marks the selected messages ad 'Deleted'
-   $j = 0;
-   $i = 0;
+            if ($numMessages > 0)
+               $success = copyMessages($imapConnection, 1, $numMessages, "$trash_folder" . $dm . "$folder");
+            else
+               $success = true;
 
-   while ($j < count($msg)) {
-      if ($msg[$i]) {
-         /** check if they would like to move it to the trash folder or not */
-         if ($move_to_trash == true) {
-            createFolder($imapConnection, "user.$username.$folder");
-            $success = copyMessages($imapConnection, $msg[$i], $msg[$i], $trash_folder);
             if ($success == true)
-               setMessageFlag($imapConnection, $msg[$i], $msg[$i], "Deleted");
-         } else {
-            setMessageFlag($imapConnection, $msg[$i], "Deleted");
+               removeFolder($imapConnection, $boxes[$i]["UNFORMATTED"]);
+         }
+      }
+   } else { /** if they do NOT wish to move messages to the trash (or cannot)**/
+      fputs($imapConnection, "1 LIST \"$mailbox\" *\n");
+      $data = imapReadData($imapConnection , "1", false, $response, $message);
+      while (substr($data[0], strpos($data[0], " ")+1, 4) == "LIST") {
+         for ($i = 0; $i < count($boxes); $i++) {
+            if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
+                (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
+               removeFolder($imapConnection, $boxes[$i]["UNFORMATTED"]);
+            }
          }
-         $j++;
+         fputs($imapConnection, "1 LIST \"$mailbox\" *\n");
+         $data = imapReadData($imapConnection , "1", false, $response, $message);
       }
-      $i++;
    }
 
-   if ($auto_expunge == true)
-      expungeBox($imapConnection, $mailbox, $numMessages);
-
-   // Log out this session
+   /** Log out this session **/
    fputs($imapConnection, "1 logout");
 
-   echo "<BR><BR><A HREF=\"folders.php\">Return</A>";
+   echo "<BR><BR><A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>";
+   echo _("Return");
+   echo "</A>";
+   echo "</BODY></HTML>";
 ?>