fixed several warnings about Undefined vars
[squirrelmail.git] / src / delete_message.php
... / ...
CommitLineData
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
14require_once('../src/validate.php');
15require_once('../functions/display_messages.php');
16require_once('../functions/imap.php');
17
18$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
19
20sqimap_mailbox_select($imapConnection, $mailbox);
21
22sqimap_messages_delete($imapConnection, $message, $message, $mailbox);
23if ($auto_expunge) {
24 sqimap_mailbox_expunge($imapConnection, $mailbox, true);
25}
26if (!isset($saved_draft)) {
27 $saved_draft = '';
28}
29
30$location = get_location();
31if (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
44sqimap_logout($imapConnection);
45?>