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