|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/logwatch/scripts/services/ |
Upload File : |
##########################################################################
# $Id: eximstats,v 1.1 2006/02/22 19:23:43 mike Exp $
##########################################################################
# This is a wrapper for the eximstats program
#
# Please send all comments, suggestions, bug reports,
# etc, to jeff.frost@frostconsultingllc.com and
# logwatch-devel@logwatch.org
########################################################
use Logwatch ':all';
$Debug = $ENV{'LOGWATCH_DEBUG'} || 0;
$Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
my $SearchDate = TimeFilter("%Y-%m-%d %H:%M:%S");
if ( $Debug >= 5 ) {
print STDERR "\n\nDEBUG: Inside eximstats Filter \n\n";
$DebugCounter = 1;
}
open(EXIMSTATS,"| $ENV{'eximstats'}");
while (defined($ThisLine = <STDIN>)) {
next unless $ThisLine =~ /^$SearchDate /o;
if ( $Debug >= 5 ) {
print STDERR "DEBUG($DebugCounter): $ThisLine";
$DebugCounter++;
}
print EXIMSTATS $ThisLine;
}
close EXIMSTATS;
exit(0);
# vi: shiftwidth=3 tabstop=3 syntax=perl et