Obsolete array.php
[squirrelmail.git] / src / folders.php
1 <?php
2
3 /**
4 * folders.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Handles all interaction between the user and the other folder
10 * scripts which do most of the work. Also handles the Special
11 * Folders.
12 *
13 * $Id$
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/imap_utf7_decode_local.php');
22 require_once(SM_PATH . 'functions/imap.php');
23 require_once(SM_PATH . 'functions/plugin.php');
24 require_once(SM_PATH . 'functions/html.php');
25
26 displayPageHeader($color, 'None');
27
28 /* get globals we may need */
29
30 $username = $_SESSION['username'];
31 $key = $_COOKIE['key'];
32 $delimiter = $_SESSION['delimiter'];
33 $onetimepad = $_SESSION['onetimepad'];
34 if (isset($_GET['success'])) {
35 $success = $_GET['success'];
36 }
37
38 /* end of get globals */
39
40 echo '<br>' .
41 html_tag( 'table', '', 'center', $color[0], 'width="95%" cellpadding="1" cellspacing="0" border="0"' ) .
42 html_tag( 'tr' ) .
43 html_tag( 'td', '', 'center' ) . '<b>' . _("Folders") . '</b>' .
44 html_tag( 'table', '', 'center', '', 'width="100%" cellpadding="5" cellspacing="0" border="0"' ) .
45 html_tag( 'tr' ) .
46 html_tag( 'td', '', 'center', $color[4] );
47
48 if ( isset($success) && $success ) {
49
50 $td_str = '<b>';
51
52 switch ($success)
53 {
54 case 'subscribe':
55 $td_str .= _("Subscribed successfully!");
56 break;
57 case 'unsubscribe':
58 $td_str .= _("Unsubscribed successfully!");
59 break;
60 case 'delete':
61 $td_str .= _("Deleted folder successfully!");
62 break;
63 case 'create':
64 $td_str .= _("Created folder successfully!");
65 break;
66 case 'rename':
67 $td_str .= _("Renamed successfully!");
68 break;
69 case 'subscribe-doesnotexist':
70 $td_str .= _("Subscription Unsuccessful - Folder does not exist.");
71 break;
72 }
73
74 $td_str .= '</b><br>';
75
76
77 echo html_tag( 'table',
78 html_tag( 'tr',
79 html_tag( 'td', $td_str .
80 '<a href="../src/left_main.php" target=left>' .
81 _("refresh folder list") . '</a>' ,
82 'center' )
83 ) ,
84 'center', '', 'width="100%" cellpadding="4" cellspacing="0" border="0"' );
85 }
86
87 echo "\n<br>";
88
89 $imapConnection = sqimap_login ($username, $key, $imapServerAddress, $imapPort, 0);
90 $boxes = sqimap_mailbox_list($imapConnection);
91
92 /** CREATING FOLDERS **/
93 echo html_tag( 'table', '', 'center', '', 'width="70%" cellpadding="4" cellspacing="0" border="0"' ) .
94 html_tag( 'tr',
95 html_tag( 'td', '<b>' . _("Create Folder") . '</b>', 'center', $color[9] )
96 ) .
97 html_tag( 'tr' ) .
98 html_tag( 'td', '', 'center', $color[0] ) .
99
100 "<FORM NAME=cf ACTION=\"folders_create.php\" METHOD=\"POST\">\n".
101 "<input type=TEXT SIZE=25 NAME=folder_name><BR>\n".
102 _("as a subfolder of").
103 '<BR>'.
104 "<TT><SELECT NAME=subfolder>\n";
105 if ($default_sub_of_inbox == false) {
106 echo '<OPTION SELECTED VALUE="">[ '._("None")." ]\n";
107 } else {
108 echo '<OPTION VALUE="">[ '._("None")." ]\n";
109 }
110
111 $show_selected = 0;
112 if ( $default_sub_of_inbox ) {
113 $show_selected = array('inbox');
114 }
115 $skip_folders = 0;
116 if ( strtolower($imap_server_type) == 'courier' ) {
117 $skip_folders = array('inbox.trash');
118 }
119
120 echo sqimap_mailbox_option_list($imapConnection, $show_selected, $skip_folders, $boxes, 'noinferiors');
121
122 echo "</SELECT></TT>\n";
123 if ($show_contain_subfolders_option) {
124 echo '<br><input type=CHECKBOX NAME="contain_subs"> &nbsp;'
125 . _("Let this folder contain subfolders")
126 . '<BR>';
127 }
128 echo "<input type=SUBMIT VALUE=\""._("Create")."\">\n";
129 echo "</FORM></td></tr>\n";
130
131 echo html_tag( 'tr',
132 html_tag( 'td', '&nbsp;', 'left', $color[4] )
133 ) ."\n";
134
135 /** count special folders **/
136 $count_special_folders = 0;
137 $num_max = 1;
138 if (strtolower($imap_server_type) == "courier" || $move_to_trash) {
139 $num_max++;
140 }
141 if ($move_to_sent) {
142 $num_max++;
143 }
144 if ($save_as_draft) {
145 $num_max++;
146 }
147 for ($p = 0, $cnt = count($boxes); $p < $cnt && $count_special_folders < $num_max; $p++) {
148 if (strtolower($boxes[$p]['unformatted']) == 'inbox')
149 $count_special_folders++;
150 else if (strtolower($imap_server_type) == 'courier' &&
151 strtolower($boxes[$p]['unformatted']) == 'inbox.trash')
152 $count_special_folders++;
153 else if ($boxes[$p]['unformatted'] == $trash_folder && $trash_folder)
154 $count_special_folders++;
155 else if ($boxes[$p]['unformatted'] == $sent_folder && $sent_folder)
156 $count_special_folders++;
157 else if ($boxes[$p]['unformatted'] == $draft_folder && $draft_folder)
158 $count_special_folders++;
159 }
160
161
162 /** RENAMING FOLDERS **/
163 echo html_tag( 'tr',
164 html_tag( 'td', '<b>' . _("Rename a Folder") . '</b>', 'center', $color[9] )
165 ) .
166 html_tag( 'tr' ) .
167 html_tag( 'td', '', 'center', $color[0] );
168
169 if ($count_special_folders < count($boxes)) {
170 echo "<FORM ACTION=\"folders_rename_getname.php\" METHOD=\"POST\">\n"
171 . "<TT><SELECT NAME=old>\n"
172 . ' <OPTION VALUE="">[ ' . _("Select a folder") . " ]</OPTION>\n";
173
174 echo sqimap_mailbox_option_list($imapConnection, 0, $skip_folders, $boxes);
175
176 echo "</SELECT></TT>\n".
177 "<input type=SUBMIT VALUE=\"".
178 _("Rename").
179 "\">\n".
180 "</FORM></td></tr>\n";
181 } else {
182 echo _("No folders found") . '<br><br></td></tr>';
183 }
184 $boxes_sub = $boxes;
185
186 echo html_tag( 'tr',
187 html_tag( 'td', '&nbsp;', 'left', $color[4] )
188 ) ."\n";
189
190 /** DELETING FOLDERS **/
191 echo html_tag( 'tr',
192 html_tag( 'td', '<b>' . _("Delete Folder") . '</b>', 'center', $color[9] )
193 ) .
194 html_tag( 'tr' ) .
195 html_tag( 'td', '', 'center', $color[0] );
196
197 if ($count_special_folders < count($boxes)) {
198 echo "<FORM ACTION=\"folders_delete.php\" METHOD=\"POST\">\n"
199 . "<TT><SELECT NAME=mailbox>\n"
200 . ' <OPTION VALUE="">[ ' . _("Select a folder") . " ]</OPTION>\n";
201
202 echo sqimap_mailbox_option_list($imapConnection, 0, $skip_folders, $boxes);
203
204 echo "</SELECT></TT>\n"
205 . '<input type=SUBMIT VALUE="'
206 . _("Delete")
207 . "\">\n"
208 . "</form></td></tr>\n";
209 } else {
210 echo _("No folders found") . "<br><br></td></tr>";
211 }
212
213 echo html_tag( 'tr',
214 html_tag( 'td', '&nbsp;', 'left', $color[4] )
215 ) ."</table>\n";
216
217
218 /** UNSUBSCRIBE FOLDERS **/
219 echo html_tag( 'table', '', 'center', '', 'width="70%" cellpadding="4" cellspacing="0" border="0"' ) .
220 html_tag( 'tr',
221 html_tag( 'td', '<b>' . _("Unsubscribe") . '/' . _("Subscribe") . '</b>', 'center', $color[9], 'colspan="2"' )
222 ) .
223 html_tag( 'tr' ) .
224 html_tag( 'td', '', 'center', $color[0], 'width="50%"' );
225
226 if ($count_special_folders < count($boxes)) {
227 echo "<FORM ACTION=\"folders_subscribe.php?method=unsub\" METHOD=\"POST\">\n"
228 . "<TT><SELECT NAME=\"mailbox[]\" multiple size=8>\n";
229 for ($i = 0; $i < count($boxes); $i++) {
230 $use_folder = true;
231 if ((strtolower($boxes[$i]["unformatted"]) != "inbox") &&
232 ($boxes[$i]["unformatted"] != $trash_folder) &&
233 ($boxes[$i]["unformatted"] != $sent_folder) &&
234 ($boxes[$i]["unformatted"] != $draft_folder)) {
235 $box = $boxes[$i]["unformatted-dm"];
236 $box2 = str_replace(' ', '&nbsp;',
237 imap_utf7_decode_local($boxes[$i]["unformatted-disp"]));
238 echo " <OPTION VALUE=\"$box\">$box2\n";
239 }
240 }
241 echo "</SELECT></TT><br><br>\n"
242 . '<input type=SUBMIT VALUE="'
243 . _("Unsubscribe")
244 . "\">\n"
245 . "</FORM></td>\n";
246 } else {
247 echo _("No folders were found to unsubscribe from!") . '</td>';
248 }
249 $boxes_sub = $boxes;
250
251 /** SUBSCRIBE TO FOLDERS **/
252 echo html_tag( 'td', '', 'center', $color[0], 'width="50%"' );
253 if(!$no_list_for_subscribe) {
254 $boxes_all = sqimap_mailbox_list_all ($imapConnection);
255
256 $box = '';
257 $box2 = '';
258 for ($i = 0, $q = 0; $i < count($boxes_all); $i++) {
259 $use_folder = true;
260 for ($p = 0; $p < count ($boxes); $p++) {
261 if ($boxes_all[$i]['unformatted'] == $boxes[$p]['unformatted']) {
262 $use_folder = false;
263 continue;
264 } else if ($boxes_all[$i]['unformatted-dm'] == $folder_prefix) {
265 $use_folder = false;
266 }
267 }
268 if ($use_folder == true) {
269 $box[$q] = $boxes_all[$i]['unformatted-dm'];
270 $box2[$q] = imap_utf7_decode_local($boxes_all[$i]['unformatted-disp']);
271 $q++;
272 }
273 }
274 if ($box && $box2) {
275 echo "<FORM ACTION=\"folders_subscribe.php?method=sub\" METHOD=\"POST\">\n"
276 . '<tt><select name="mailbox[]" multiple size=8>';
277
278 for ($q = 0; $q < count($box); $q++) {
279 echo " <OPTION VALUE=\"$box[$q]\">".$box2[$q]."\n";
280 }
281 echo '</select></tt><br><br>'
282 . '<input type=SUBMIT VALUE="'. _("Subscribe") . "\">\n"
283 . "</FORM></td></tr></table><BR>\n";
284 } else {
285 echo _("No folders were found to subscribe to!") . '</td></tr></table>';
286 }
287 } else {
288 /* don't perform the list action -- this is much faster */
289 echo "<FORM ACTION=\"folders_subscribe.php?method=sub\" METHOD=\"POST\">\n"
290 . _("Subscribe to:") . '<br>'
291 . '<tt><input type="text" name="mailbox[]" size=35>'
292 . '<INPUT TYPE=SUBMIT VALUE="'. _("Subscribe") . "\">\n"
293 . "</FORM></TD></TR></TABLE><BR>\n";
294 }
295
296 do_hook('folders_bottom');
297 ?>
298
299 </td></tr>
300 </table>
301
302 </td></tr>
303 </table>
304
305 <?php
306 sqimap_logout($imapConnection);
307 ?>
308
309 </body></html>