X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_subscribe.php;h=7448164a29aa7d0d6b78fbd4217d1ec1e0c2423c;hb=cf1efdce52fce19388a74b85903cbeb7fd5e31ad;hp=af5e2737a9f5664c50015bb664c4edb3dda82311;hpb=15e6162eacc97158393bc75aed3afeb7b19c24a6;p=squirrelmail.git diff --git a/src/folders_subscribe.php b/src/folders_subscribe.php index af5e2737..7448164a 100644 --- a/src/folders_subscribe.php +++ b/src/folders_subscribe.php @@ -12,64 +12,67 @@ * $Id$ */ -/*****************************************************************/ -/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!! ***/ -/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION. ***/ -/*** + Base level indent should begin at left margin, as ***/ -/*** the require_once below looks. ***/ -/*** + All identation should consist of four space blocks ***/ -/*** + Tab characters are evil. ***/ -/*** + all comments should use "slash-star ... star-slash" ***/ -/*** style -- no pound characters, no slash-slash style ***/ -/*** + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD ***/ -/*** ALWAYS USE { AND } CHARACTERS!!! ***/ -/*** + Please use ' instead of ", when possible. Note " ***/ -/*** should always be used in _( ) function calls. ***/ -/*** Thank you for your help making the SM code more readable. ***/ -/*****************************************************************/ +/* Path for SquirrelMail required files. */ +define('SM_PATH','../'); -require_once('../src/validate.php'); -require_once('../functions/imap.php'); -require_once('../functions/display_messages.php'); +/* SquirrelMail required files. */ +require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/imap.php'); +require_once(SM_PATH . 'functions/display_messages.php'); - $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); +$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); - $location = get_location(); - if ($method == 'sub') { - 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"); - } - } - if (!isset($mailbox)) { - header("Location: $location/folders.php"); - } - sqimap_logout($imapConnection); +$location = get_location(); - /* - 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 ""; - */ +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 ""; +*/ ?>