Focus plugin integrated into the core
[squirrelmail.git] / src / folders_create.php
index 6ce2afe5e9435c8195e153d5bfd63825657357b7..1f25070b0f76b45ed195910971633183f32d5fa1 100644 (file)
@@ -1,17 +1,51 @@
-<HTML>
-<META HTTP-EQUIV="REFRESH" CONTENT="0;URL=webmail.php?right_frame=folders.php" TARGET=_top>
-<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#0000EE" ALINK="#0000EE">
-<?
-   include("../config/config.php");
-   include("../functions/strings.php");
-   include("../functions/page_header.php");
-   include("../functions/imap.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$
+    **/
 
-   $imapConnection = loginToImapServer($username, $key, $imapServerAddress);
-   fputs($imapConnection, "1 create \"$subfolder.$folder_name\"\n");
-   fputs($imapConnection, "1 logout\n");
+   require_once('../src/validate.php');
+   require_once('../functions/imap.php');
+   require_once('../functions/display_messages.php');
 
-   echo "<CENTER><BR><BR>You will be automatically forwarded.<BR>If not, <A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>click here</A></CENTER>";
-?>
-</BODY></HTML>
+   $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")) {
+      echo "<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);
+?>
\ No newline at end of file