Added Flag/Unflag buttons. I have been up for 2 days straight. Please check for...
[squirrelmail.git] / src / folders_create.php
1 <?php
2
3 /**
4 * folders_create.php
5 *
6 * Copyright (c) 1999-2004 The SquirrelMail Project 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 * @package squirrelmail
14 */
15
16 /** Path for SquirrelMail required files. */
17 define('SM_PATH','../');
18
19 /* SquirrelMail required files. */
20 require_once(SM_PATH . 'include/validate.php');
21 require_once(SM_PATH . 'functions/global.php');
22 require_once(SM_PATH . 'functions/imap.php');
23 require_once(SM_PATH . 'functions/display_messages.php');
24
25 /* get globals we may need */
26 sqgetGlobalVar('key', $key, SQ_COOKIE);
27 sqgetGlobalVar('username', $username, SQ_SESSION);
28 sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
29 sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
30 sqgetGlobalVar('folder_name', $folder_name, SQ_POST);
31 sqgetGlobalVar('subfolder', $subfolder, SQ_POST);
32 sqgetGlobalVar('contain_subs', $contain_subs, SQ_POST);
33 /* end of get globals */
34
35 $folder_name = trim($folder_name);
36
37 if (substr_count($folder_name, '"') || substr_count($folder_name, "\\") ||
38 substr_count($folder_name, $delimiter) || ($folder_name == '')) {
39 displayPageHeader($color, 'None');
40
41 plain_error_message(_("Illegal folder name. Please select a different name.").
42 '<BR><A HREF="../src/folders.php">'._("Click here to go back").'</A>.', $color);
43
44 exit;
45 }
46
47 $folder_name = imap_utf7_encode_local($folder_name);
48
49 if (isset($contain_subs) && $contain_subs ) {
50 $folder_name = $folder_name . $delimiter;
51 }
52
53 if ($folder_prefix && (substr($folder_prefix, -1) != $delimiter)) {
54 $folder_prefix = $folder_prefix . $delimiter;
55 }
56 if ($folder_prefix && (substr($subfolder, 0, strlen($folder_prefix)) != $folder_prefix)){
57 $subfolder_orig = $subfolder;
58 $subfolder = $folder_prefix . $subfolder;
59 } else {
60 $subfolder_orig = $subfolder;
61 }
62
63 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
64
65 if (trim($subfolder_orig) == '') {
66 sqimap_mailbox_create ($imapConnection, $folder_prefix.$folder_name, '');
67 } else {
68 sqimap_mailbox_create ($imapConnection, $subfolder.$delimiter.$folder_name, '');
69 }
70
71 sqimap_logout($imapConnection);
72
73 $location = get_location();
74 header ("Location: $location/folders.php?success=create");
75
76 ?>