removed an unnecessary select from delete_message (fixes bug#418631)
[squirrelmail.git] / src / delete_message.php
CommitLineData
59177427 1<?php
ef870322 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
245a6892 9 **
10 ** $Id$
ef870322 11 **/
12
f740c049 13 include("../src/validate.php");
f740c049 14 include("../functions/display_messages.php");
15 include("../functions/imap.php");
d3cdb279 16
e1469126 17 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
d4467150 18
a3cb3d5f 19 sqimap_messages_delete($imapConnection, $message, $message, $mailbox);
acaa9842 20 if ($auto_expunge)
8cf653ad 21 sqimap_mailbox_expunge($imapConnection, $mailbox, true);
acaa9842 22
1195c340 23 $location = get_location();
9d7140c9 24 if (isset($where) && isset($what))
1809bad8 25 header ("Location: $location/search.php?where=".urlencode($where)."&what=".urlencode($what)."&mailbox=".urlencode($mailbox));
26 else
27 header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=".urlencode($mailbox));
a48fbf9b 28
29 sqimap_logout($imapConnection);
d4467150 30?>