X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_rename_do.php;h=4edacc2d79217102f9f3e5a7a7ecb167ca22cbdd;hb=525b7ae6ddd3cb500999021bb216d010fade1857;hp=549f2c13fd79985670cedee3855b75daf6ba0fac;hpb=7aaa81fcf8383ee72ee0e4fd3cb2fd8d5f9708b5;p=squirrelmail.git diff --git a/src/folders_rename_do.php b/src/folders_rename_do.php index 549f2c13..4edacc2d 100644 --- a/src/folders_rename_do.php +++ b/src/folders_rename_do.php @@ -7,59 +7,61 @@ ** ** Does the actual renaming of files on the IMAP server. ** Called from the folders.php + ** + ** $Id$ **/ - session_start(); - - if (!isset($config_php)) - include("../config/config.php"); - if (!isset($strings_php)) - include("../functions/strings.php"); - if (!isset($page_header_php)) - include("../functions/page_header.php"); - if (!isset($imap_php)) - include("../functions/imap.php"); + require_once('../src/validate.php'); + require_once('../functions/imap.php'); - include("../src/load_prefs.php"); + if($old_name == $new_name) { + $location = get_location(); + header ("Location: $location/folders.php"); + exit; + } $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); - $dm = sqimap_get_delimiter($imapConnection); + global $delimiter; - if (strpos($orig, $dm)) - $old_dir = substr($orig, 0, strrpos($orig, $dm)); + if (strpos($orig, $delimiter)) + $old_dir = substr($orig, 0, strrpos($orig, $delimiter)); else $old_dir = ""; if ($old_dir != "") - $newone = "$old_dir$dm$new_name"; + $newone = "$old_dir$delimiter$new_name"; else $newone = "$new_name"; - $orig = sqStripSlashes($orig); - $newone = sqStripSlashes($newone); - - fputs ($imapConnection, ". RENAME \"$orig\" \"$newone\"\r\n"); - $data = sqimap_read_data($imapConnection, ".", true, $a, $b); + $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 ($isfolder) { - $newone = $newone.$dm; - $orig = $orig.$dm; + if (isset($isfolder)) { + $newone = $newone.$delimiter; + $orig = $orig.$delimiter; } sqimap_unsubscribe($imapConnection, $orig); sqimap_subscribe($imapConnection, $newone); - fputs ($imapConnection, "a001 LSUB \"\" \"$orig*\"\r\n"); - $data = sqimap_read_data($imapConnection, "a001", true, $a, $b); - for ($i=0; $i < count($data); $i++) { + 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]); - sqimap_unsubscribe($imapConnection, $name); - $name = substr($name, strlen($orig)); - $name = $newone . $name; - sqimap_subscribe($imapConnection, $name); - } + 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);