* To reduce on errors, I moved the includes for config.php and strings.php
[squirrelmail.git] / src / folders_create.php
CommitLineData
59177427 1<?php
ef870322 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
245a6892 10 **
11 ** $Id$
ef870322 12 **/
13
f740c049 14 include('../src/validate.php');
f740c049 15 include("../functions/page_header.php");
16 include("../functions/imap.php");
17 include("../functions/display_messages.php");
d3cdb279 18 include("../src/load_prefs.php");
19
e1469126 20 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
813eba2f 21 $dm = sqimap_get_delimiter($imapConnection);
7ce342dc 22
ecf51658 23 if (strpos($folder_name, "\"") || strpos($folder_name, "\\") ||
7ce342dc 24 strpos($folder_name, "'") || strpos($folder_name, "$dm")) {
66289791 25 print "<html><body bgcolor=$color[4]>";
9f2215a1 26 plain_error_message(_("Illegal folder name. Please select a different name.")."<BR><A HREF=\"../src/folders.php\">"._("Click here to go back")."</A>.", $color);
eabc2883 27 sqimap_logout($imapConnection);
7ce342dc 28 exit;
29 }
30
1863670d 31 if (isset($contain_subs) && $contain_subs == true)
7ce342dc 32 $folder_name = "$folder_name$dm";
33
5479d709 34 if ($folder_prefix && (substr($folder_prefix, -1) != $dm)) {
35 $folder_prefix = $folder_prefix . $dm;
36 }
37 if ($folder_prefix && (substr($subfolder, 0, strlen($folder_prefix)) != $folder_prefix)){
38 $subfolder_orig = $subfolder;
39 $subfolder = $folder_prefix . $subfolder;
9988d19e 40 } else {
41 $subfolder_orig = $subfolder;
5479d709 42 }
43
61457e01 44 if (trim($subfolder_orig) == '') {
5479d709 45 sqimap_mailbox_create ($imapConnection, $folder_prefix.$folder_name, "");
d92b6f31 46 } else {
813eba2f 47 sqimap_mailbox_create ($imapConnection, $subfolder.$dm.$folder_name, "");
d92b6f31 48 }
b40316f9 49
1195c340 50 $location = get_location();
51 header ("Location: $location/folders.php?success=create");
52 sqimap_logout($imapConnection);
b40316f9 53?>
b40316f9 54