check if safe_mode is enabled (putenv is not allowed then) and
[squirrelmail.git] / src / folders_create.php
... / ...
CommitLineData
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 print "<html><body bgcolor=$color[4]>";
33 plain_error_message(_("Illegal folder name. Please select a different name.")."<BR><A HREF=\"../src/folders.php\">"._("Click here to go back")."</A>.", $color);
34 sqimap_logout($imapConnection);
35 exit;
36 }
37
38 if ($contain_subs == true)
39 $folder_name = "$folder_name$dm";
40
41 if ($folder_prefix && (substr($folder_prefix, -1) != $dm)) {
42 $folder_prefix = $folder_prefix . $dm;
43 }
44 if ($folder_prefix && (substr($subfolder, 0, strlen($folder_prefix)) != $folder_prefix)){
45 $subfolder_orig = $subfolder;
46 $subfolder = $folder_prefix . $subfolder;
47 } else {
48 $subfolder_orig = $subfolder;
49 }
50
51 if ((trim($subfolder_orig) == "[ None ]") || (trim(sqStripSlashes($subfolder_orig)) == "[ None ]")) {
52 sqimap_mailbox_create ($imapConnection, $folder_prefix.$folder_name, "");
53 } else {
54 sqimap_mailbox_create ($imapConnection, $subfolder.$dm.$folder_name, "");
55 }
56 fputs($imapConnection, "1 logout\n");
57
58 $location = get_location();
59 header ("Location: $location/folders.php?success=create");
60 sqimap_logout($imapConnection);
61?>
62