X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fdelete_message.php;h=a46f96e45b841d41a4b64e929a94ed6a1433ad7b;hb=3dc5d88f42f1e5a83d74e00c2ed8f47e92943857;hp=a801ba40bb360218c56dff10dee571181581ade2;hpb=e02775fe9c3db5ce9aa7836a087c93c54425cde8;p=squirrelmail.git diff --git a/src/delete_message.php b/src/delete_message.php index a801ba40..a46f96e4 100644 --- a/src/delete_message.php +++ b/src/delete_message.php @@ -3,49 +3,18 @@ /** * delete_message.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * Deletes a meesage from the IMAP server * - * $Id$ + * @copyright © 1999-2006 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package squirrelmail */ -require_once('../src/validate.php'); -require_once('../functions/display_messages.php'); -require_once('../functions/imap.php'); - -$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); - -sqimap_mailbox_select($imapConnection, $mailbox); - -sqimap_messages_delete($imapConnection, $message, $message, $mailbox); -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=" . urlencode($where) . - '&what=' . urlencode($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 the SquirrelMail initialization file. + */ +include('../include/init.php'); +error_box('delete_message.php script is obsolete since 1.5.1.'); +$oTemplate->display('footer.tpl'); ?> \ No newline at end of file