!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 

uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/squirrelmail/src/   drwxr-xr-x
Free 130 GB of 142.11 GB (91.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     delete_message.php (2.61 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * delete_message.php
 *
 * Deletes a meesage from the IMAP server
 *
 * @copyright 1999-2010 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: delete_message.php 13893 2010-01-25 02:47:41Z pdontthink $
 * @package squirrelmail
 */

/**
 * 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'$usernameSQ_SESSION);
sqgetGlobalVar('key'$keySQ_COOKIE);
sqgetGlobalVar('onetimepad'$onetimepadSQ_SESSION);

sqgetGlobalVar('message'$messageSQ_GET);
sqgetGlobalVar('mailbox'$mailboxSQ_GET);
if (!
sqgetGlobalVar('smtoken',$submitted_tokenSQ_GET)) {
    
$submitted_token '';
}
/* 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['where'])) {
    
$where urlencode($_GET['where']);
}
if (isset(
$_GET['what'])) {
    
$what urlencode($_GET['what']);
}
if (isset(
$_GET['sort'])) {
    
$sort = (int) $_GET['sort'];
}
if (isset(
$_GET['startMessage'])) {
    
$startMessage = (int) $_GET['startMessage'];
}

// first, validate security token
sm_validate_security_token($submitted_token3600TRUE);

$imapConnection sqimap_login($username$key$imapServerAddress$imapPort0);

sqimap_mailbox_select($imapConnection$mailbox);

sqimap_msgs_list_delete($imapConnection$mailbox$message);
if (
$auto_expunge) {
    
sqimap_mailbox_expunge($imapConnection$mailboxtrue);
}
sqimap_logout($imapConnection);

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 .
           
'&smtoken=' sm_generate_security_token() .
           
'&what=' $what '&mailbox=' urlencode($mailbox));
} else {
    if (!empty(
$saved_draft) || !empty($mail_sent)) {
          if (
$compose_new_win == '1')
              
header("Location: $location/compose.php?mail_sent=$mail_sent&saved_draft=$saved_draft");
          else
              
header("Location: $location/right_main.php?mail_sent=$mail_sent&saved_draft=$saved_draft");
    }
    else {
        
header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" .
               
urlencode($mailbox));
    }
}



:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.018 ]--