X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fdelete_message.php;h=09c2fef64e30faaac62ee09b30ec143c63707436;hb=b268e66b4b96c4e2b8b44eae8161e7557b6eaf7c;hp=ba73607edbbe4aaec85bb7183bcbb13d60502698;hpb=15e6162eacc97158393bc75aed3afeb7b19c24a6;p=squirrelmail.git diff --git a/src/delete_message.php b/src/delete_message.php index ba73607e..09c2fef6 100644 --- a/src/delete_message.php +++ b/src/delete_message.php @@ -3,47 +3,83 @@ /** * delete_message.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Copyright (c) 1999-2003 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * - * Deletes a meesage from the IMAP server + * Deletes a meesage from the IMAP server * * $Id$ */ -/*****************************************************************/ -/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!! ***/ -/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION. ***/ -/*** + Base level indent should begin at left margin, as ***/ -/*** the require_once below looks. ***/ -/*** + All identation should consist of four space blocks ***/ -/*** + Tab characters are evil. ***/ -/*** + all comments should use "slash-star ... star-slash" ***/ -/*** style -- no pound characters, no slash-slash style ***/ -/*** + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD ***/ -/*** ALWAYS USE { AND } CHARACTERS!!! ***/ -/*** + Please use ' instead of ", when possible. Note " ***/ -/*** should always be used in _( ) function calls. ***/ -/*** Thank you for your help making the SM code more readable. ***/ -/*****************************************************************/ - -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); - - $location = get_location(); - if (isset($where) && isset($what)) - header ("Location: $location/search.php?where=".urlencode($where)."&what=".urlencode($what)."&mailbox=".urlencode($mailbox)); - else - header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=".urlencode($mailbox)); - - sqimap_logout($imapConnection); +/* Path for SquirrelMail required files. */ +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_GET); +sqgetGlobalVar('mailbox', $mailbox, SQ_GET); +/* end globals */ + +if (isset($_GET['saved_draft'])) { + $saved_draft = urlencode($_GET['saved_draft']); +} +if (isset($_GET['mail_sent'])) { + $mail_sent = urlencode($_GET['mail_sent']); +} +if (isset($_GET['sort'])) { + $sort = (int) $_GET['sort']; +} + +if (isset($_GET['startMessage'])) { + $startMessage = (int) $_GET['startMessage']; +} + +if(isset($_GET['where'])) { + $where = urlencode($_GET['where']); +} +if(isset($_GET['what'])) { + $what = urlencode($_GET['what']); +} + +$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=" . $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); + ?>