ce3265dc93c558c3e3afefd6046b6c34d1130dcc
[squirrelmail.git] / src / folders_rename_do.php
1 <?
2 if (!isset($config_php))
3 include("../config/config.php");
4 if (!isset($strings_php))
5 include("../functions/strings.php");
6 if (!isset($page_header_php))
7 include("../functions/page_header.php");
8 if (!isset($imap_php))
9 include("../functions/imap.php");
10
11 include("../src/load_prefs.php");
12
13 $imapConnection = sqimap_login($username, $key, $imapServerAddress, 0);
14 $dm = sqimap_get_delimiter($imapConnection);
15
16 if (strpos($orig, $dm))
17 $old_dir = substr($orig, 0, strrpos($orig, $dm));
18 else
19 $old_dir = "";
20
21 if ($old_dir != "")
22 $newone = "$old_dir$dm$new_name";
23 else
24 $newone = "$new_name";
25
26 $orig = stripslashes($orig);
27 $newone = stripslashes($newone);
28
29 fputs ($imapConnection, ". RENAME \"$orig\" \"$newone\"\n");
30 $data = sqimap_read_data($imapConnection, ".", true, $a, $b);
31
32 // Renaming a folder doesn't renames the folder but leaves you unsubscribed
33 // at least on Cyrus IMAP servers.
34 if ($isfolder) {
35 $newone = $newone.$dm;
36 $orig = $orig.$dm;
37 }
38
39 sqimap_unsubscribe($imapConnection, $orig);
40 sqimap_subscribe($imapConnection, $newone);
41
42 /** Log out this session **/
43 sqimap_logout($imapConnection);
44
45 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
46 displayPageHeader($color, "None");
47 echo "<BR><BR><BR><CENTER><B>";
48 echo _("Folder Renamed!");
49 echo "</B><BR><BR>";
50 echo _("The folder has been successfully renamed.");
51 echo "<BR><A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>";
52 echo _("Click here");
53 echo "</A> ";
54 echo _("to continue.");
55 echo "</CENTER>";
56
57 echo "</BODY></HTML>";
58 ?>