Code cleanup brigage...
[squirrelmail.git] / src / folders_create.php
1 <?php
2
3 /**
4 * folders_create.php
5 *
6 * Copyright (c) 1999-2001 The Squirrelmail Development Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Creates folders on the IMAP server.
10 * Called from folders.php
11 *
12 * $Id$
13 */
14
15 /*****************************************************************/
16 /*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!! ***/
17 /*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION. ***/
18 /*** + Base level indent should begin at left margin, as ***/
19 /*** the require_once below looks. ***/
20 /*** + All identation should consist of four space blocks ***/
21 /*** + Tab characters are evil. ***/
22 /*** + all comments should use "slash-star ... star-slash" ***/
23 /*** style -- no pound characters, no slash-slash style ***/
24 /*** + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD ***/
25 /*** ALWAYS USE { AND } CHARACTERS!!! ***/
26 /*** + Please use ' instead of ", when possible. Note " ***/
27 /*** should always be used in _( ) function calls. ***/
28 /*** Thank you for your help making the SM code more readable. ***/
29 /*****************************************************************/
30
31 require_once('../src/validate.php');
32 require_once('../functions/imap.php');
33 require_once('../functions/display_messages.php');
34
35 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
36 global $delimiter;
37
38 if (strpos($folder_name, "\"") || strpos($folder_name, "\\") ||
39 strpos($folder_name, "'") || strpos($folder_name, "$delimiter")) {
40 echo "<html><body bgcolor=$color[4]>";
41 plain_error_message(_("Illegal folder name. Please select a different name.")."<BR><A HREF=\"../src/folders.php\">"._("Click here to go back")."</A>.", $color);
42 sqimap_logout($imapConnection);
43 exit;
44 }
45
46 if (isset($contain_subs) && $contain_subs == true)
47 $folder_name = "$folder_name$delimiter";
48
49 if ($folder_prefix && (substr($folder_prefix, -1) != $delimiter)) {
50 $folder_prefix = $folder_prefix . $delimiter;
51 }
52 if ($folder_prefix && (substr($subfolder, 0, strlen($folder_prefix)) != $folder_prefix)){
53 $subfolder_orig = $subfolder;
54 $subfolder = $folder_prefix . $subfolder;
55 } else {
56 $subfolder_orig = $subfolder;
57 }
58
59 if (trim($subfolder_orig) == '') {
60 sqimap_mailbox_create ($imapConnection, $folder_prefix.$folder_name, "");
61 } else {
62 sqimap_mailbox_create ($imapConnection, $subfolder.$delimiter.$folder_name, "");
63 }
64
65 $location = get_location();
66 header ("Location: $location/folders.php?success=create");
67 sqimap_logout($imapConnection);
68 ?>