Filter:   InfoImg
download delete_message.php
Language: PHP
Copyright: (c) 1999-2000 The SquirrelMail development team
LOC: 42
Project Info
phpGroupWare
Server: SourceForge
Type: cvs
...groupware\squirrelmail\src\
   addrbook_popup.php
   addrbook_search.php
   addrbook_search_html.php
   addressbook.php
   delete_message.php
   empty_trash.php
   gettolang.pl
   help.php
   left_main.php
   load_prefs.php
   move_messages.php
   options.php
   options_display.php
   options_folder.php
   options_highlight.php
   options_order.php
   options_personal.php
   redirect.php
   webmail.php

<?php
   /**
    **  delete_message.php
    **
    **  Copyright (c) 1999-2000 The SquirrelMail development team
    **  Licensed under the GNU GPL. For full terms see the file COPYING.
    **
    **  Deletes a meesage from the IMAP server 
    **
    **  $Id: delete_message.php,v 1.7 2001/05/28 08:48:15 seek3r Exp $
    **/

   $enablePHPGW = 1;

   	// store the value of $mailbox, because it will overwriten
   	$MAILBOX = $mailbox;
   	$phpgw_info["flags"] = array("currentapp" => "squirrelmail","noheader" => True, "nonavbar" => True);
   	include("../../header.inc.php");
   	$mailbox = $MAILBOX;


   if (!isset($strings_php))
      include(PHPGW_APP_ROOT . "/inc/strings.php");
   if (!isset($config_php))
      include(PHPGW_APP_ROOT . "/config/config.php");

	$key      = $phpgw_info['user']['preferences']['email']['passwd'];
	$username = $phpgw_info['user']['preferences']['email']['userid'];

   if (!isset($page_header_php))
      include(PHPGW_APP_ROOT . "/inc/page_header.php");
   if (!isset($display_message_php))
      include(PHPGW_APP_ROOT . "/inc/display_messages.php");
   if (!isset($imap_php))
      include(PHPGW_APP_ROOT . "/inc/imap.php");

   include(PHPGW_APP_ROOT . "/src/load_prefs.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 = $phpgw_info["server"]["webserver_url"] . "/squirrelmail/src";
	if ($where && $what)
	{
		header ("Location: " . $phpgw->link($location . "/search.php",
			"where=".urlencode($where)."&what=".urlencode($what)."&mailbox=".urlencode($mailbox)));
	}
	else   
	{
		header ("Location: " . $phpgw->link("/squirrelmail/index.php",
			"sort=$sort&startMessage=$startMessage&mailbox=".urlencode($mailbox)));
	}

   sqimap_logout($imapConnection);
   if ($enablePHPGW)
   {
        $sessionData->save();
        $phpgw->common->phpgw_footer();
   }  
?>