Removed errors to allow resume draft with subject and attachments.
[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 require_once('../src/validate.php');
14 require_once('../functions/display_messages.php');
15 require_once('../functions/imap.php');
16
17 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
18
19 sqimap_mailbox_select($imapConnection, $mailbox);
20
21 sqimap_messages_delete($imapConnection, $message, $message, $mailbox);
22 if ($auto_expunge)
23 sqimap_mailbox_expunge($imapConnection, $mailbox, true);
24
25 $location = get_location();
26 if (isset($where) && isset($what))
27 header ("Location: $location/search.php?where=".urlencode($where)."&what=".urlencode($what)."&mailbox=".urlencode($mailbox));
28 else
29 header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=".urlencode($mailbox));
30
31 sqimap_logout($imapConnection);
32 ?>