Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ziproxylogtool(1) [debian man page]

ZIPROXYLOGTOOL(1)						      ZIPROXY							 ZIPROXYLOGTOOL(1)

NAME
ziproxylogtool - is a low-level log analyser SYNOPSIS
ziproxylogtool [general_options] [filtering_options] DESCRIPTION
ziproxylogtool is a low-level log analyser, its purpose is to be invoked by scripts. It is expected to be reasonably fast and generic. These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. GENERAL OPTIONS
-m, --mode mode Output mode: "g" - Global stats "h" - Per host stats (accesses, in_bytes, out_bytes, compression %, hostname) "f" - Filter mode (filter log entries according to filtering options) -i, --in-file filename Input file (Ziproxy log file). If unspecified, uses stdin. -o, --out-file filename Output file (stats output). If unspecified, uses stdout. -h, --help Display summarized help FILTERING OPTIONS
If ommited, won't apply. -1, --epoch-min unix_epoch Filter entries starting from that epoch. -2, --epoch-max unix_epoch Filter entries older than that epoch. -3, --bytes-in-min bytes Filter entries which incoming_bytes >= <bytes> -4, --bytes-in-max bytes Filter entries which incoming_bytes < <bytes> -5, --bytes-out-min bytes Filter entries which outgoing_bytes >= <bytes> -6, --bytes-out-max bytes Filter entries which outgoing_bytes < <bytes> -7, --delay-min mili_seconds Filter entries which delay >= <mili_seconds> -8, --delay-max mili_seconds Filter entries which delay < <mili_seconds> SEE ALSO
ziproxy(1) AUTHOR
ziproxylogtool was written by Daniel Mealha Cabrita. This manual page was written by Marcos Talau <marcostalau@gmail.com>. ZIPROXY
December 02, 2007 ZIPROXYLOGTOOL(1)

Check Out this Related Man Page

Courier::Filter::Module::SpamAssassin(3pm)		User Contributed Perl Documentation		Courier::Filter::Module::SpamAssassin(3pm)

NAME
Courier::Filter::Module::SpamAssassin - SpamAssassin message filter module for the Courier::Filter framework SYNOPSIS
use Courier::Filter::Module::SpamAssassin; my $module = Courier::Filter::Module::SpamAssassin->new( prefs_file => '/etc/courier/filters/courier-filter-spamassassin.cf', sa_options => { # any Mail::SpamAssassin options }, logger => $logger, inverse => 0, trusting => 0, testing => 0, debugging => 0 ); my $filter = Courier::Filter->new( ... modules => [ $module ], ... ); DESCRIPTION
This class is a filter module class for use with Courier::Filter. It matches a message if its SpamAssassin spam score exceeds the configured threshold. Constructor The following constructor is provided: new(%options): returns Courier::Filter::Module::SpamAssassin Creates a new SpamAssassin filter module. %options is a list of key/value pairs representing any of the following options: prefs_file The path of a SpamAssassin preferences file. If this option is specified, its value is passed to the Mail::SpamAssassin constructor's "userprefs_filename" option . If undef, SpamAssassin is instructed not to read any preferences besides its default configuration files. Defaults to undef. sa_options A hash-ref specifying options for the Mail::SpamAssassin object used by this filter module. See "new" in Mail::SpamAssassin for the supported options. All options of the Courier::Filter::Module constructor are also supported. Please see "new" in Courier::Filter::Module for their descriptions. Instance methods See "Instance methods" in Courier::Filter::Module for a description of the provided instance methods. SEE ALSO
Courier::Filter::Module, Courier::Filter::Overview. For AVAILABILITY, SUPPORT, COPYRIGHT, and LICENSE information, see Courier::Filter::Overview. AUTHOR
Julian Mehnle <julian@mehnle.net> perl v5.14.2 2011-12-27 Courier::Filter::Module::SpamAssassin(3pm)
Man Page