X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_subscribe.php;h=ae7eb17900aa60a972b5aa825b92d0b8cf185f7c;hb=538f1ab750a7a9797d5a6475e3bfb5cd6f7e0287;hp=6f3879860359dc618b49c69a0e8c01eaa495c315;hpb=525b7ae6ddd3cb500999021bb216d010fade1857;p=squirrelmail.git diff --git a/src/folders_subscribe.php b/src/folders_subscribe.php index 6f387986..ae7eb179 100644 --- a/src/folders_subscribe.php +++ b/src/folders_subscribe.php @@ -1,58 +1,74 @@

"; - if ($method == "sub") { - echo _("Subscribed Successfully!"); - echo "

"; - echo _("You have been successfully subscribed."); - } else { - echo _("Unsubscribed Successfully!"); - echo "

"; - echo _("You have been successfully unsubscribed."); - } - echo "
"; - echo _("Click here"); - echo " "; - echo _("to continue."); - echo "
"; - echo ""; - */ + +/** + * folders_subscribe.php + * + * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Licensed under the GNU GPL. For full terms see the file COPYING. + * + * Subscribe and unsubcribe form folders. + * Called from folders.php + * + * $Id$ + */ + +require_once('../src/validate.php'); +require_once('../functions/imap.php'); +require_once('../functions/display_messages.php'); + +$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); + +$location = get_location(); + +if (!isset($mailbox) || !isset($mailbox[0]) || $mailbox[0] == "") { + header("Location: $location/folders.php"); + sqimap_logout($imapConnection); + exit(0); +} + +if ($method == 'sub') { + if($no_list_for_subscribe && $imap_server_type == 'cyrus') { + /* Cyrus, atleast, does not typically allow subscription to + * nonexistent folders (this is an optional part of IMAP), + * lets catch it here and report back cleanly. */ + if(!sqimap_mailbox_exists($imapConnection, $mailbox[0])) { + header("Location: $location/folders.php?success=subscribe-doesnotexist"); + sqimap_logout($imapConnection); + exit(0); + } + } + + for ($i=0; $i < count($mailbox); $i++) { + $mailbox[$i] = trim($mailbox[$i]); + sqimap_subscribe ($imapConnection, $mailbox[$i]); + header("Location: $location/folders.php?success=subscribe"); + } +} else { + for ($i=0; $i < count($mailbox); $i++) { + $mailbox[$i] = trim($mailbox[$i]); + sqimap_unsubscribe ($imapConnection, $mailbox[$i]); + header("Location: $location/folders.php?success=unsubscribe"); + } +} +sqimap_logout($imapConnection); + +/* +displayPageHeader($color, 'None'); +echo "


"; +if ($method == "sub") { + echo _("Subscribed Successfully!"); + echo "

"; + echo _("You have been successfully subscribed."); +} else { + echo _("Unsubscribed Successfully!"); + echo "

"; + echo _("You have been successfully unsubscribed."); +} +echo "
"; +echo _("Click here"); +echo " "; +echo _("to continue."); +echo "
"; +echo ""; +*/ ?>