X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fdelete_message.php;h=f2791eea2e6e43e250fc4e1bce78dd9f41c22449;hb=852abae76905e164859475f84ac83f4eb23f83a8;hp=7b7d6cc69c7339fcac136e6f698210645716461c;hpb=5e9e90fd78a930cc74432034fad600d38ac50563;p=squirrelmail.git diff --git a/src/delete_message.php b/src/delete_message.php index 7b7d6cc6..f2791eea 100644 --- a/src/delete_message.php +++ b/src/delete_message.php @@ -3,23 +3,62 @@ /** * delete_message.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Copyright (c) 1999-2004 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * Deletes a meesage from the IMAP server * - * $Id$ + * @version $Id$ + * @package squirrelmail */ -require_once('../src/validate.php'); -require_once('../functions/display_messages.php'); -require_once('../functions/imap.php'); +/** + * Path for SquirrelMail required files. + * @ignore + */ +define('SM_PATH','../'); + +/* SquirrelMail required files. */ +require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/display_messages.php'); +require_once(SM_PATH . 'functions/imap.php'); + +/* get globals */ +sqgetGlobalVar('username', $username, SQ_SESSION); +sqgetGlobalVar('key', $key, SQ_COOKIE); +sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION); + +sqgetGlobalVar('message', $message, SQ_FORM); +sqgetGlobalVar('mailbox', $mailbox, SQ_GET); + +sqgetGlobalVar('bypass_trash', $bypass_trash, SQ_FORM); + +/* end globals */ + +if (sqGetGlobalVar('saved_draft', $tmp, SQ_GET)) { + $saved_draft = urlencode($tmp); +} +if (sqGetGlobalVar('mail_sent', $tmp, SQ_GET)) { + $mail_sent = urlencode($tmp); +} +if (sqGetGlobalVar('where', $tmp, SQ_FORM)) { + $where = urlencode($tmp); +} +if (sqGetGlobalVar('what', $tmp, SQ_FORM)) { + $what = urlencode($tmp); +} +if (sqGetGlobalVar('sort', $tmp, SQ_FORM)) { + $sort = (int) $tmp; +} +if (sqGetGlobalVar('startMessage', $tmp, SQ_FORM)) { + $startMessage = (int) $tmp; +} $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); sqimap_mailbox_select($imapConnection, $mailbox); -sqimap_messages_delete($imapConnection, $message, $message, $mailbox); +sqimap_messages_delete($imapConnection, $message, $message, $mailbox,$bypass_trash); if ($auto_expunge) { sqimap_mailbox_expunge($imapConnection, $mailbox, true); } @@ -34,14 +73,14 @@ if (!isset($mail_sent)) { $location = get_location(); if (isset($where) && isset($what)) { - header("Location: $location/search.php?where=" . urlencode($where) . - '&what=' . urlencode($what) . '&mailbox=' . urlencode($mailbox)); + header("Location: $location/search.php?where=" . $where . + '&what=' . $what . '&mailbox=' . urlencode($mailbox)); } else { if (!empty($saved_draft) || !empty($mail_sent)) { - header("Location: $location/compose.php?mail_sent=$mail_sent&saved_draft=$saved_draft"); + header("Location: $location/compose.php?mail_sent=$mail_sent&saved_draft=$saved_draft"); } else { - header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" . + header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" . urlencode($mailbox)); } }