fixed delimiter presence when not connected to imap server
[squirrelmail.git] / src / folders_subscribe.php
1 <?php
2 /**
3 ** folders_subscribe.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 ** Subscribe and unsubcribe form folders.
9 ** Called from folders.php
10 **
11 ** $Id$
12 **/
13
14 require_once('../src/validate.php');
15 require_once('../functions/imap.php');
16 require_once('../functions/display_messages.php');
17
18 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
19 $dm = sqimap_get_delimiter($imapConnection);
20
21 $location = get_location();
22 if ($method == "sub") {
23 for ($i=0; $i < count($mailbox); $i++) {
24 $mailbox[$i] = trim($mailbox[$i]);
25 sqimap_subscribe ($imapConnection, $mailbox[$i]);
26 header("Location: $location/folders.php?success=subscribe");
27 }
28 } else {
29 for ($i=0; $i < count($mailbox); $i++) {
30 $mailbox[$i] = trim($mailbox[$i]);
31 sqimap_unsubscribe ($imapConnection, $mailbox[$i]);
32 header("Location: $location/folders.php?success=unsubscribe");
33 }
34 }
35 sqimap_logout($imapConnection);
36
37 /*
38 displayPageHeader($color, "None");
39 echo "<BR><BR><BR><CENTER><B>";
40 if ($method == "sub") {
41 echo _("Subscribed Successfully!");
42 echo "</B><BR><BR>";
43 echo _("You have been successfully subscribed.");
44 } else {
45 echo _("Unsubscribed Successfully!");
46 echo "</B><BR><BR>";
47 echo _("You have been successfully unsubscribed.");
48 }
49 echo "<BR><A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>";
50 echo _("Click here");
51 echo "</A> ";
52 echo _("to continue.");
53 echo "</CENTER>";
54 echo "</BODY></HTML>";
55 */
56 ?>