!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/local/webmail2/plugins/newmail/   drwxr-xr-x
Free 318.34 GB of 458.09 GB (69.49%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 * newmail.php
 *
 * Copyright (c) 2000 by Michael Huttinger
 *
 * Quite a hack -- but my first attempt at a plugin.  We were
 * looking for a way to play a sound when there was unseen
 * messages to look at.  Nice for users who keep the squirrel
 * mail window up for long periods of time and want to know
 * when mail arrives.
 *
 * Basically, I hacked much of left_main.php into a plugin that
 * goes through each mail folder and increments a flag if
 * there are unseen messages.  If the final count of unseen
 * folders is > 0, then we play a sound (using the HTML at the
 * far end of this script).
 *
 * This was tested with IE5.0 - but I hear Netscape works well,
 * too (with a plugin).
 *
 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: setup.php,v 1.37 2006/02/10 22:16:03 stekkel Exp $
 * @package plugins
 * @subpackage newmail
 */

/** @ignore */
if (! defined('SM_PATH')) define('SM_PATH','../../');

/**
 * Init newmail plugin
 */
function squirrelmail_plugin_init_newmail() {
    global 
$squirrelmail_plugin_hooks;
    
$totalNewArr=array();
    global 
$totalNewArr;

    
$squirrelmail_plugin_hooks['folder_status']['newmail'] = 'newmail_folder_status';
    
$squirrelmail_plugin_hooks['left_main_after']['newmail'] = 'newmail_plugin';
    
$squirrelmail_plugin_hooks['optpage_register_block']['newmail'] = 'newmail_optpage_register_block';
    
$squirrelmail_plugin_hooks['options_save']['newmail'] = 'newmail_sav';
    
$squirrelmail_plugin_hooks['loading_prefs']['newmail'] = 'newmail_pref';
    
$squirrelmail_plugin_hooks['optpage_set_loadinfo']['newmail'] = 'newmail_set_loadinfo';
}

/**
 * Register newmail option block
 */
function newmail_optpage_register_block() {
    include_once(
SM_PATH 'plugins/newmail/functions.php');
    
newmail_optpage_register_block_function();
}

/**
 * Save newmail plugin settings
 */
function newmail_sav() {
    include_once(
SM_PATH 'plugins/newmail/functions.php');
    
newmail_sav_function();
}

/**
 * Load newmail plugin settings
 */
function newmail_pref() {
    include_once(
SM_PATH 'plugins/newmail/functions.php');
    
newmail_pref_function();
}

/**
 * Set loadinfo data
 *
 * Used by option page when saving settings.
 */
function newmail_set_loadinfo() {
    include_once(
SM_PATH 'plugins/newmail/functions.php');
    
newmail_set_loadinfo_function();
}

/**
 * Insert needed data in left_main
 */
function newmail_plugin() {
    include_once(
SM_PATH 'plugins/newmail/functions.php');
    
newmail_plugin_function();
}
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0042 ]--