fixed bug that didn't display folders with spaces in the name
[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');
15 include("../functions/strings.php");
16 include("../config/config.php");
17 include("../functions/page_header.php");
18 include("../functions/imap.php");
19 include("../functions/display_messages.php");
d3cdb279 20 include("../src/load_prefs.php");
21
e1469126 22 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
813eba2f 23 $dm = sqimap_get_delimiter($imapConnection);
7ce342dc 24
ecf51658 25 if (strpos($folder_name, "\"") || strpos($folder_name, "\\") ||
7ce342dc 26 strpos($folder_name, "'") || strpos($folder_name, "$dm")) {
66289791 27 print "<html><body bgcolor=$color[4]>";
9f2215a1 28 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 29 sqimap_logout($imapConnection);
7ce342dc 30 exit;
31 }
32
1863670d 33 if (isset($contain_subs) && $contain_subs == true)
7ce342dc 34 $folder_name = "$folder_name$dm";
35
5479d709 36 if ($folder_prefix && (substr($folder_prefix, -1) != $dm)) {
37 $folder_prefix = $folder_prefix . $dm;
38 }
39 if ($folder_prefix && (substr($subfolder, 0, strlen($folder_prefix)) != $folder_prefix)){
40 $subfolder_orig = $subfolder;
41 $subfolder = $folder_prefix . $subfolder;
9988d19e 42 } else {
43 $subfolder_orig = $subfolder;
5479d709 44 }
45
61457e01 46 if (trim($subfolder_orig) == '') {
5479d709 47 sqimap_mailbox_create ($imapConnection, $folder_prefix.$folder_name, "");
d92b6f31 48 } else {
813eba2f 49 sqimap_mailbox_create ($imapConnection, $subfolder.$dm.$folder_name, "");
d92b6f31 50 }
b40316f9 51
1195c340 52 $location = get_location();
53 header ("Location: $location/folders.php?success=create");
54 sqimap_logout($imapConnection);
b40316f9 55?>
b40316f9 56