Lots of little UI tweaks and some handsome borders in the Options and Folder areas.
[squirrelmail.git] / src / delete_message.php
1 <?php
2 /**
3 ** delete_message.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 ** Deletes a meesage from the IMAP server
9 **
10 ** $Id$
11 **/
12
13 include("../src/validate.php");
14 include("../functions/page_header.php");
15 include("../functions/display_messages.php");
16 include("../functions/imap.php");
17 include("../src/load_prefs.php");
18
19 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
20 sqimap_mailbox_select($imapConnection, $mailbox);
21
22 sqimap_messages_delete($imapConnection, $message, $message, $mailbox);
23 if ($auto_expunge)
24 sqimap_mailbox_expunge($imapConnection, $mailbox, true);
25
26 $location = get_location();
27 if (isset($where) && isset($what))
28 header ("Location: $location/search.php?where=".urlencode($where)."&what=".urlencode($what)."&mailbox=".urlencode($mailbox));
29 else
30 header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=".urlencode($mailbox));
31
32 sqimap_logout($imapConnection);
33 ?>