Added a "compose in new window" option located in display prefs. Each file that calls...
[squirrelmail.git] / src / delete_message.php
1 <?php
2
3 /**
4 * delete_message.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Deletes a meesage from the IMAP server
10 *
11 * $Id$
12 */
13
14 require_once('../src/validate.php');
15 require_once('../functions/display_messages.php');
16 require_once('../functions/imap.php');
17
18 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
19
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 if (!isset($saved_draft)) {
27 $saved_draft = '';
28 }
29
30 $location = get_location();
31 if (isset($where) && isset($what)) {
32 header("Location: $location/search.php?where=" . urlencode($where) .
33 '&what=' . urlencode($what) . '&mailbox=' . urlencode($mailbox));
34 } else {
35 if ($compose_new_win == '1') {
36 header("Location: $location/compose.php?mail_sent=$mail_sent&saved_draft=$saved_draft");
37 }
38 else {
39 header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" .
40 urlencode($mailbox));
41 }
42 }
43
44 sqimap_logout($imapConnection);
45 ?>