Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/monara/public_html/test.athavaneng.com/themes.php on line 99

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
#!/usr/local/cpanel/3rdparty/bin/perl my @LOGDIRS = ( "/var/spool/exim", "/var/spool/exim_incoming" ); my $tendays = ( 60 * 60 * 24 * 10 ); my $keeptime = ( time() - $tendays ); foreach my $logdir (@LOGDIRS) { opendir( LOGDIR, "${logdir}/msglog" ); my @MSGS = readdir(LOGDIR); closedir(LOGDIR); foreach my $log (@MSGS) { if ( $log =~ /^\w+\-\w+-\w+$/ && !-e "${logdir}/input/${log}-H" ) { my $modtime = ( stat("${logdir}/msglog/${log}") )[9]; if ( $modtime < $keeptime ) { print "Removing stable file ${logdir}/msglog/${log}.."; unlink("${logdir}/msglog/${log}"); print "..Done\n"; } } } }