added config file versions so conf.pl can detect if you are using a
[squirrelmail.git] / src / folders_create.php
1 <?php
2 /**
3 ** folders_create.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Creates folders on the IMAP server.
9 ** Called from folders.php
10 **/
11
12 session_start();
13
14 if (!isset($config_php))
15 include("../config/config.php");
16 if (!isset($strings_php))
17 include("../functions/strings.php");
18 if (!isset($page_header_php))
19 include("../functions/page_header.php");
20 if (!isset($imap_php))
21 include("../functions/imap.php");
22 if (!isset($display_messages_php))
23 include("../functions/display_messages.php");
24
25 include("../src/load_prefs.php");
26
27 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
28 $dm = sqimap_get_delimiter($imapConnection);
29
30 if (strpos($folder_name, "\"") || strpos($folder_name, "\\") ||
31 strpos($folder_name, "'") || strpos($folder_name, "$dm")) {
32 plain_error_message(_("Illegal folder name. Please select a different name.")."<BR><A HREF=\"../src/folders.php\">"._("Click here to go back")."</A>.", $color);
33 exit;
34 }
35
36 if ($contain_subs == true)
37 $folder_name = "$folder_name$dm";
38
39 if ($folder_prefix && (substr($folder_prefix, -1) != $dm)) {
40 $folder_prefix = $folder_prefix . $dm;
41 }
42 if ($folder_prefix && (substr($subfolder, 0, strlen($folder_prefix)) != $folder_prefix)){
43 $subfolder_orig = $subfolder;
44 $subfolder = $folder_prefix . $subfolder;
45 } else {
46 $subfolder_orig = $subfolder;
47 }
48
49 if ((trim($subfolder_orig) == "[ None ]") || (trim(stripslashes($subfolder_orig)) == "[ None ]")) {
50 sqimap_mailbox_create ($imapConnection, $folder_prefix.$folder_name, "");
51 } else {
52 sqimap_mailbox_create ($imapConnection, $subfolder.$dm.$folder_name, "");
53 }
54 fputs($imapConnection, "1 logout\n");
55
56 $location = get_location();
57 header ("Location: $location/folders.php?success=create");
58 sqimap_logout($imapConnection);
59 /*
60 displayPageHeader($color, "None");
61 echo "<BR><BR><BR><CENTER><B>";
62 echo _("Folder Created!");
63 echo "</B><BR><BR>";
64 echo _("The folder has been successfully created.");
65 echo "<BR><A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>";
66 echo _("Click here");
67 echo "</A> ";
68 echo _("to continue.");
69 echo "</CENTER>";
70 echo "</BODY></HTML>";
71 */
72 ?>
73