X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_rename_do.php;h=c6eb206150270ed68f8536df47595d2e52633cbb;hb=0f4f003efb4cdeeb7574cd4218c552b38a4e1e71;hp=d86ba9d488881472a502f80f01902e7ff62b7595;hpb=355861846a51d35efe50848869d680fd3b4a5316;p=squirrelmail.git diff --git a/src/folders_rename_do.php b/src/folders_rename_do.php index d86ba9d4..c6eb2061 100644 --- a/src/folders_rename_do.php +++ b/src/folders_rename_do.php @@ -3,85 +3,79 @@ /** * folders_rename_do.php * - * Copyright (c) 1999-2001 The Squirrelmail Development Team + * Copyright (c) 1999-2003 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * - * Does the actual renaming of files on the IMAP server. + * Does the actual renaming of files on the IMAP server. * Called from the folders.php * * $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. ***/ -/*****************************************************************/ - -require_once('../src/validate.php'); -require_once('../functions/imap.php'); - - if($old_name == $new_name) { - $location = get_location(); - header ("Location: $location/folders.php"); - exit; - } - - $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); - global $delimiter; - - if (strpos($orig, $delimiter)) - $old_dir = substr($orig, 0, strrpos($orig, $delimiter)); - else - $old_dir = ""; - - if ($old_dir != "") - $newone = "$old_dir$delimiter$new_name"; - else - $newone = "$new_name"; - - $cmd = sqimap_session_id() . " RENAME \"" . quoteIMAP($orig) . "\" \"" . - quoteIMAP($newone) . "\"\r\n"; - fputs ($imapConnection, $cmd); - $data = sqimap_read_data($imapConnection, sqimap_session_id(), true, $a, $b); - - // Renaming a folder doesn't renames the folder but leaves you unsubscribed - // at least on Cyrus IMAP servers. - if (isset($isfolder)) { - $newone = $newone.$delimiter; - $orig = $orig.$delimiter; - } - sqimap_unsubscribe($imapConnection, $orig); - sqimap_subscribe($imapConnection, $newone); - - fputs ($imapConnection, sqimap_session_id() . " LIST \"\" \"" . quoteIMAP($newone) . - "*\"\r\n"); - $data = sqimap_read_data($imapConnection, sqimap_session_id(), true, $a, $b); - for ($i=0; $i < count($data); $i++) - { - $name = find_mailbox_name($data[$i]); - - if ($name != $newone) // don't try to resubscribe when renaming ab to abc - { - sqimap_unsubscribe($imapConnection, $name); - $name = substr($name, strlen($orig)); - $name = $newone . $name; - sqimap_subscribe($imapConnection, $name); - } - } - - /** Log out this session **/ - sqimap_logout($imapConnection); - $location = get_location(); - header ("Location: $location/folders.php?success=rename"); +/* Path for SquirrelMail required files. */ +define('SM_PATH','../'); + +/* SquirrelMail required files. */ +require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/global.php'); +require_once(SM_PATH . 'functions/imap.php'); +require_once(SM_PATH . 'functions/display_messages.php'); + +/* globals */ +sqgetGlobalVar('key', $key, SQ_COOKIE); +sqgetGlobalVar('username', $username, SQ_SESSION); +sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); +sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION); +sqgetGlobalVar('orig', $orig, SQ_POST); +sqgetGlobalVar('old_name', $old_name, SQ_POST); +sqgetGlobalVar('new_name', $new_name, SQ_POST); +/* end globals */ + +$new_name = trim($new_name); + +if (substr_count($new_name, '"') || substr_count($new_name, "\\") || + substr_count($new_name, $delimiter) || ($new_name == '')) { + displayPageHeader($color, 'None'); + + plain_error_message(_("Illegal folder name. Please select a different name."). + '
'._("Click here to go back").'.', $color); + + exit; +} + +$orig = imap_utf7_encode_local($orig); +$old_name = imap_utf7_encode_local($old_name); +$new_name = imap_utf7_encode_local($new_name); + +if ($old_name <> $new_name) { + + $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); + + if (strpos($orig, $delimiter)) { + $old_dir = substr($orig, 0, strrpos($orig, $delimiter)); + } else { + $old_dir = ''; + } + + if ($old_dir != '') { + $newone = $old_dir . $delimiter . $new_name; + } else { + $newone = $new_name; + } + + // Renaming a folder doesn't rename the folder but leaves you unsubscribed + // at least on Cyrus IMAP servers. + if (isset($isfolder)) { + $newone = $newone.$delimiter; + $orig = $orig.$delimiter; + } + sqimap_mailbox_rename( $imapConnection, $orig, $newone ); + + // Log out this session + sqimap_logout($imapConnection); + +} + +header ('Location: ' . get_location() . '/folders.php?success=rename'); + ?>