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/webmail/ drwxr-xr-x | |
| Viewing file: Select action/file-type: #!/usr/bin/perl
@availablelanguages = qw( cn cz en es de dk fi fr hu it ko nl no pl pt ro ru se
si sk tw );
%languagenames = (
en => 'English',
cn => 'Chinese (GB2312)',
cz => 'Czech',
de => 'Deutsch',
dk => 'Danish',
es => 'Espanol',
fi => 'Finnish',
fr => 'Francais',
hu => 'Hungarian',
it => 'Italiano',
ko => 'Korean',
nl => 'Nederlands',
no => 'Norsk',
pl => 'Polish',
pt => 'Portuguese',
ro => 'Romanian',
ru => 'Russian',
se => 'Swedish',
si => 'Slovene',
sk => 'Slovak',
tw => 'Chinese (Big5)',
);
$defaultlanguage = 'en';
$doma = "$ENV{HTTP_HOST}";
$doma =~ s/^www\.//g;
$usrname = ( getpwuid($>) )[0];
@domainnames[0] = $doma;
$sendmail = '/usr/sbin/sendmail';
$timeoffset = '-0800';
# Ignore this part, it just does a timezone conversion if DST is in effect
if ( (localtime())[8] ) {
my @tzarray = split(//, $timeoffset);
if ( $tzarray[0] eq '+' ) {
$tzarray[2]++;
} else {
$tzarray[2]--;
}
$timeoffset = join("", @tzarray);
}
# maxabooksize - This is the max kilobytes a user's address book can grow to
$maxabooksize = 200;
$folderquota = 0;
# $attlimit - This is the limit on the size of attachments (in MB).
$attlimit = 3;
$masterdir = "/usr/local/webmail";
$stylesdir = "$masterdir/styles/";
$templatesdir = "$masterdir/templates";
$webmaildir = "/home/$usrname/.webmail/";
$userprefsdir = "/home/$usrname/.webmail/users/";
# logfile - set to 'no' or the filename where to log actions.
$logfile = 'no';
# sessiontimeout - Number of minutes before a session is closed
$sessiontimeout = 45;
# numberofheaders - Maximium number of headers to display to a user at a time.
$numberofheaders = 20;
# mailspooldir - This is where your user mail spools are kept.
$mailspooldir = "/var/spool/mail/$doma/";
$hashedmailspools = 'no';
$homedirspools = 'no';
$homedirspoolname = 'Mailbox';
$homedirfolders = 'no';
# scripturl - The location of the CGI script
$scripturl = '/webmail/index.cgi';
# prefsurl - This is the location of the user setup and address book script.
$prefsurl = '/webmail/prefs.cgi';
$logo_url = '/webmail/images/logo.gif';
$image_url = '/webmail/images/';
$bg_url = '';
1;
|
:: Command execute :: | |
--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0171 ]-- |