Drop unused file imap_search.php.
[squirrelmail.git] / src / folders_create.php
index 30e605969521e581ebb4ec9838783c2111ad5604..8c68b9dea07338604fe216f4cbf2f8ee0d2b4818 100644 (file)
@@ -1,56 +1,79 @@
 <?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/strings.php");
-   include("../config/config.php");
-   include("../functions/page_header.php");
-   include("../functions/imap.php");
-   include("../functions/display_messages.php");
-   include("../src/load_prefs.php");
-
-   $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
-   $dm = sqimap_get_delimiter($imapConnection);
-
-   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);
-?>
 
+/**
+ * folders_create.php
+ *
+ * Copyright (c) 1999-2005 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * Creates folders on the IMAP server.
+ * Called from folders.php
+ *
+ * @version $Id$
+ * @package squirrelmail
+ */
+
+/**
+ * Path for SquirrelMail required files.
+ * @ignore
+ */
+define('SM_PATH','../');
+
+/* SquirrelMail required files. */
+require_once(SM_PATH . 'include/validate.php');
+require_once(SM_PATH . 'functions/global.php');
+require_once(SM_PATH . 'functions/imap.php');
+require_once(SM_PATH . 'functions/display_messages.php');
+
+/* get globals we may need */
+sqgetGlobalVar('key',          $key,           SQ_COOKIE);
+sqgetGlobalVar('username',     $username,      SQ_SESSION);
+sqgetGlobalVar('onetimepad',   $onetimepad,    SQ_SESSION);
+sqgetGlobalVar('delimiter',    $delimiter,     SQ_SESSION);
+sqgetGlobalVar('folder_name',  $folder_name,   SQ_POST);
+sqgetGlobalVar('subfolder',    $subfolder,     SQ_POST);
+sqgetGlobalVar('contain_subs', $contain_subs,  SQ_POST);
+/* end of get globals */
+
+$folder_name = trim($folder_name);
+
+if (substr_count($folder_name, '"') || substr_count($folder_name, "\\") ||
+    substr_count($folder_name, $delimiter) || ($folder_name == '')) {
+    displayPageHeader($color, 'None');
+
+    plain_error_message(_("Illegal folder name. Please select a different name.").
+        '<br /><a href="../src/folders.php">'._("Click here to go back").'</a>.', $color);
+
+    exit;
+}
+
+$folder_name = imap_utf7_encode_local($folder_name);
+
+if (isset($contain_subs) && $contain_subs ) {
+    $folder_name = $folder_name . $delimiter;
+}
+
+if ($folder_prefix && (substr($folder_prefix, -1) != $delimiter)) {
+    $folder_prefix = $folder_prefix . $delimiter;
+}
+if ($folder_prefix && (substr($subfolder, 0, strlen($folder_prefix)) != $folder_prefix)){
+    $subfolder_orig = $subfolder;
+    $subfolder = $folder_prefix . $subfolder;
+} else {
+    $subfolder_orig = $subfolder;
+}
+
+$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
+
+if (trim($subfolder_orig) == '') {
+    sqimap_mailbox_create ($imapConnection, $folder_prefix.$folder_name, '');
+} else {
+    sqimap_mailbox_create ($imapConnection, $subfolder.$delimiter.$folder_name, '');
+}
+
+sqimap_logout($imapConnection);
+
+$location = get_location();
+header ("Location: $location/folders.php?success=create");
+
+?>
\ No newline at end of file