X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fdelete_message.php;h=56f6da3f76e1c3ae072288f6585ed7e7bf4e3f28;hb=a15f9d9379cebc62fa39b6cb10d2195f95ed5081;hp=b876be57b764fa33df18fc348dc9ad646e07104a;hpb=134e4174c8919790bcc463587e90ac37cabc2f90;p=squirrelmail.git diff --git a/src/delete_message.php b/src/delete_message.php index b876be57..56f6da3f 100644 --- a/src/delete_message.php +++ b/src/delete_message.php @@ -3,11 +3,10 @@ /** * delete_message.php * - * 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 * + * @copyright © 1999-2006 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ @@ -19,72 +18,10 @@ 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,$bypass_trash); -if ($auto_expunge) { - sqimap_mailbox_expunge($imapConnection, $mailbox, true); -} -if (!isset($saved_draft)) { - $saved_draft = ''; -} - -if (!isset($mail_sent)) { - $mail_sent = ''; -} - -$location = get_location(); - -if (isset($where) && isset($what)) { - 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"); - } - else { - header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" . - urlencode($mailbox)); - } -} - -sqimap_logout($imapConnection); +include_once(SM_PATH . 'include/validate.php'); +include_once(SM_PATH . 'functions/display_messages.php'); +global $color; +error_box('delete_message.php script is obsolete since 1.5.1.',$color); +$oTemplate->display('footer.tpl'); ?> \ No newline at end of file