The "Delete" link when reading a message that was on the second or
[squirrelmail.git] / src / folders_rename_do.php
CommitLineData
59177427 1<?php
ef870322 2 /**
3 ** folders_rename_do.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 ** Does the actual renaming of files on the IMAP server.
9 ** Called from the folders.php
10 **/
11
12 session_start();
13
14 if (!isset($config_php))
15 include("../config/config.php");
16 if (!isset($strings_php))
17 include("../functions/strings.php");
18 if (!isset($page_header_php))
19 include("../functions/page_header.php");
20 if (!isset($imap_php))
21 include("../functions/imap.php");
ef870322 22
23 include("../src/load_prefs.php");
24
25 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
26 $dm = sqimap_get_delimiter($imapConnection);
27
d92b6f31 28 if (strpos($orig, $dm))
29 $old_dir = substr($orig, 0, strrpos($orig, $dm));
30 else
31 $old_dir = "";
32
33 if ($old_dir != "")
34 $newone = "$old_dir$dm$new_name";
35 else
36 $newone = "$new_name";
37
7aaa81fc 38 $orig = sqStripSlashes($orig);
39 $newone = sqStripSlashes($newone);
d7092926 40
390372b4 41 fputs ($imapConnection, ". RENAME \"$orig\" \"$newone\"\r\n");
813eba2f 42 $data = sqimap_read_data($imapConnection, ".", true, $a, $b);
d92b6f31 43
f16d469a 44 // Renaming a folder doesn't renames the folder but leaves you unsubscribed
45 // at least on Cyrus IMAP servers.
693ccbc9 46 if ($isfolder) {
47 $newone = $newone.$dm;
48 $orig = $orig.$dm;
49 }
693ccbc9 50 sqimap_unsubscribe($imapConnection, $orig);
51 sqimap_subscribe($imapConnection, $newone);
d92b6f31 52
390372b4 53 fputs ($imapConnection, "a001 LSUB \"\" \"$orig*\"\r\n");
54 $data = sqimap_read_data($imapConnection, "a001", true, $a, $b);
55 for ($i=0; $i < count($data); $i++) {
56 $name = find_mailbox_name($data[$i]);
57 sqimap_unsubscribe($imapConnection, $name);
58 $name = substr($name, strlen($orig));
59 $name = $newone . $name;
60 sqimap_subscribe($imapConnection, $name);
61 }
62
63
be69e508 64 /** Log out this session **/
693ccbc9 65 sqimap_logout($imapConnection);
1195c340 66 $location = get_location();
67 header ("Location: $location/folders.php?success=rename");
be69e508 68?>