* Moved load_prefs.php and display_page.php (or whatever it is called) into
[squirrelmail.git] / src / folders_create.php
index bf64b8a8a16c97b0d63ce7121c1cb3bb6bc5ff0a..607bbac71d2e006b93cef0e72f42f84e83a8813b 100644 (file)
@@ -1,14 +1,52 @@
-<?
-   include("../config/config.php");
-   include("../functions/strings.php");
-   include("../functions/page_header.php");
+<?php
+   /**
+    **  folders_create.php
+    **
+    **  Copyright (c) 1999-2000 The SquirrelMail development team
+    **  Licensed under the GNU GPL. For full terms see the file COPYING.
+    **
+    **  Creates folders on the IMAP server. 
+    **  Called from folders.php
+    **
+    **  $Id$
+    **/
+
+   include('../src/validate.php');
    include("../functions/imap.php");
+   include("../functions/display_messages.php");
 
-   $imapConnection = loginToImapServer($username, $key, $imapServerAddress);
-   fputs($imapConnection, "1 create \"$subfolder.$folder_name\"\n");
-   fputs($imapConnection, "1 logout\n");
+   $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
+   $dm = sqimap_get_delimiter($imapConnection);
 
-   echo "<BR><BR><A HREF=\"folders.php\">Return</A>";
-?>
+   if (strpos($folder_name, "\"") || strpos($folder_name, "\\") ||
+       strpos($folder_name, "'") || strpos($folder_name, "$dm")) {
+               print "<html><body bgcolor=$color[4]>";
+      plain_error_message(_("Illegal folder name.  Please select a different name.")."<BR><A HREF=\"../src/folders.php\">"._("Click here to go back")."</A>.", $color);
+      sqimap_logout($imapConnection);
+      exit;
+   }
+
+   if (isset($contain_subs) && $contain_subs == true)
+      $folder_name = "$folder_name$dm";
 
+   if ($folder_prefix && (substr($folder_prefix, -1) != $dm)) {
+      $folder_prefix = $folder_prefix . $dm;
+   }
+   if ($folder_prefix && (substr($subfolder, 0, strlen($folder_prefix)) != $folder_prefix)){
+      $subfolder_orig = $subfolder;
+      $subfolder = $folder_prefix . $subfolder;
+   } else {
+      $subfolder_orig = $subfolder;
+   }
+
+   if (trim($subfolder_orig) == '') {
+      sqimap_mailbox_create ($imapConnection, $folder_prefix.$folder_name, "");
+   } else {
+      sqimap_mailbox_create ($imapConnection, $subfolder.$dm.$folder_name, "");
+   }
+
+   $location = get_location();
+   header ("Location: $location/folders.php?success=create");
+   sqimap_logout($imapConnection);
+?>