removing config.php from the cvs. instead use config_default.php
[squirrelmail.git] / src / empty_trash.php
1 <?
2 include("../config/config.php");
3 include("../functions/mailbox.php");
4 include("../functions/strings.php");
5 include("../functions/page_header.php");
6 include("../functions/display_messages.php");
7 include("../functions/imap.php");
8 include("../functions/array.php");
9
10 include("../src/load_prefs.php");
11
12 $imapConnection = loginToImapServer($username, $key, $imapServerAddress, 0);
13
14 getFolderList($imapConnection, $boxes);
15
16 $mailbox = $trash_folder;
17 fputs($imapConnection, "1 LIST \"$mailbox\" *\n");
18 $data = imapReadData($imapConnection , "1", false, $response, $message);
19 while (substr($data[0], strpos($data[0], " ")+1, 4) == "LIST") {
20 for ($i = 0; $i < count($boxes); $i++) {
21 if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
22 (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
23 removeFolder($imapConnection, $boxes[$i]["UNFORMATTED"]);
24 }
25 }
26 fputs($imapConnection, "1 LIST \"$mailbox\" *\n");
27 $data = imapReadData($imapConnection , "1", false, $response, $message);
28 }
29
30 createFolder($imapConnection, "$trash_folder", "");
31
32 selectMailbox($imapConnection, $trash_folder, $numMessages);
33 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
34 displayPageHeader($color, $mailbox);
35 messages_deleted_message($trash_folder, $sort, $startMessage, $color);
36 fputs($imapConnection, "1 logout");
37 ?>