601 lines
19 KiB
Perl
Executable file
601 lines
19 KiB
Perl
Executable file
#! /usr/bin/perl
|
|
#
|
|
# gatherstats.pl
|
|
#
|
|
# This script will gather statistical information from a database
|
|
# containing headers and other information from a INN feed.
|
|
#
|
|
# It is part of the NewsStats package.
|
|
#
|
|
# Copyright (c) 2010-2013, 2025 Thomas Hochstein <thh@thh.name>
|
|
#
|
|
# It can be redistributed and/or modified under the same terms under
|
|
# which Perl itself is published.
|
|
|
|
BEGIN {
|
|
use File::Basename;
|
|
# we're in .../bin, so our module is in ../lib
|
|
push(@INC, dirname($0).'/../lib');
|
|
}
|
|
use strict;
|
|
use warnings;
|
|
|
|
use NewsStats qw(:DEFAULT :TimePeriods ListNewsgroups ParseHierarchies ReadGroupList ParseHeaders);
|
|
|
|
use DBI;
|
|
use Getopt::Long qw(GetOptions);
|
|
Getopt::Long::config ('bundling');
|
|
|
|
################################# Definitions ##################################
|
|
|
|
# define types of information that can be gathered
|
|
# all / groups (/ clients / hosts)
|
|
my %LegalStats;
|
|
@LegalStats{('all','groups','hosts')} = ();
|
|
|
|
################################# Main program #################################
|
|
|
|
### read commandline options
|
|
my ($OptCheckgroupsFile,$OptClientsDB,$OptDebug,$OptGroupsDB,$OptTLH,
|
|
$OptHostsDB,$OptMID,$OptMonth,$OptRawDB,$OptStatsType,$OptTest,
|
|
$OptConfFile);
|
|
GetOptions ('c|checkgroups=s' => \$OptCheckgroupsFile,
|
|
'clientsdb=s' => \$OptClientsDB,
|
|
'd|debug!' => \$OptDebug,
|
|
'groupsdb=s' => \$OptGroupsDB,
|
|
'hierarchy=s' => \$OptTLH,
|
|
'hostsdb=s' => \$OptHostsDB,
|
|
'mid=s' => \$OptMID,
|
|
'm|month=s' => \$OptMonth,
|
|
'rawdb=s' => \$OptRawDB,
|
|
's|stats=s' => \$OptStatsType,
|
|
't|test!' => \$OptTest,
|
|
'conffile=s' => \$OptConfFile,
|
|
'h|help' => \&ShowPOD,
|
|
'V|version' => \&ShowVersion) or exit 1;
|
|
|
|
### read configuration
|
|
my %Conf = %{ReadConfig($OptConfFile)};
|
|
|
|
### override configuration via commandline options
|
|
my %ConfOverride;
|
|
$ConfOverride{'DBTableRaw'} = $OptRawDB if $OptRawDB;
|
|
$ConfOverride{'DBTableGrps'} = $OptGroupsDB if $OptGroupsDB;
|
|
$ConfOverride{'DBTableClnts'} = $OptClientsDB if $OptClientsDB;
|
|
$ConfOverride{'DBTableHosts'} = $OptHostsDB if $OptHostsDB;
|
|
$ConfOverride{'TLH'} = $OptTLH if $OptTLH;
|
|
&OverrideConfig(\%Conf,\%ConfOverride);
|
|
|
|
# set --debug and --test if --mid is set
|
|
if ($OptMID) {
|
|
$OptDebug = 1; $OptTest = 1;
|
|
}
|
|
|
|
### get type of information to gather, defaulting to 'all'
|
|
$OptStatsType = 'all' if !$OptStatsType;
|
|
&Bleat(2, sprintf("Unknown type '%s'!", $OptStatsType))
|
|
if !exists($LegalStats{$OptStatsType});
|
|
|
|
### get time period from --month
|
|
# get verbal description of time period, drop SQL code
|
|
my ($Period) = &GetTimePeriod($OptMonth);
|
|
# bail out if --month is invalid or set to 'ALL';
|
|
# we don't support the latter
|
|
&Bleat(2,"--month option has an invalid format - please use 'YYYY-MM' or ".
|
|
"'YYYY-MM:YYYY-MM'!") if (!$Period or $Period eq 'all time');
|
|
|
|
### reformat $Conf{'TLH'}
|
|
my $TLH;
|
|
if ($Conf{'TLH'}) {
|
|
# $Conf{'TLH'} is parsed as an array by Config::Auto;
|
|
# make a flat list again, separated by :
|
|
if (ref($Conf{'TLH'}) eq 'ARRAY') {
|
|
$TLH = join(':',@{$Conf{'TLH'}});
|
|
} else {
|
|
$TLH = $Conf{'TLH'};
|
|
}
|
|
# strip whitespace
|
|
$TLH =~ s/\s//g;
|
|
# add trailing dots if none are present yet
|
|
# (using negative look-behind assertions)
|
|
$TLH =~ s/(?<!\.):/.:/g;
|
|
$TLH =~ s/(?<!\.)$/./;
|
|
# check for illegal characters
|
|
&Bleat(2,'Config error - illegal characters in TLH definition!')
|
|
if ($TLH !~ /^[a-zA-Z0-9:+.-]+$/);
|
|
# escape dots
|
|
$TLH =~ s/\./\\./g;
|
|
if ($TLH =~ /:/) {
|
|
# reformat $TLH from a:b to (a)|(b),
|
|
# e.g. replace ':' by ')|('
|
|
$TLH =~ s/:/)|(/g;
|
|
$TLH = '(' . $TLH . ')';
|
|
};
|
|
};
|
|
|
|
### init database
|
|
my $DBHandle = InitDB(\%Conf,1);
|
|
my $DBRaw = sprintf('%s.%s',$Conf{'DBDatabase'},$Conf{'DBTableRaw'});
|
|
my $DBGrps = sprintf('%s.%s',$Conf{'DBDatabase'},$Conf{'DBTableGrps'});
|
|
my $DBHosts = sprintf('%s.%s',$Conf{'DBDatabase'},$Conf{'DBTableHosts'});
|
|
|
|
### get data for each month
|
|
&Bleat(1,'Test mode. Database is not updated.') if $OptTest;
|
|
foreach my $Month (&ListMonth($Period)) {
|
|
|
|
print "---------- $Month ----------\n" if $OptDebug;
|
|
|
|
### GroupStats
|
|
if ($OptStatsType eq 'all' or $OptStatsType eq 'groups') {
|
|
&GroupStats($DBHandle,$DBRaw,$DBGrps,$Month,$TLH,$OptCheckgroupsFile,$OptMID,$OptTest,$OptDebug);
|
|
};
|
|
|
|
### HostStats
|
|
if ($OptStatsType eq 'all' or $OptStatsType eq 'hosts') {
|
|
# define known hosts using subdomains
|
|
my @KnownHosts = qw(aioe.org arcor-online.net arcor-ip.de news.astraweb.com read.cnntp.org easynews.com
|
|
eternal-september.org euro.net fernuni-hagen.de free.fr newsread.freenet.ag
|
|
googlegroups.com news.neostrada.pl newsdawg.com newscene.com news-service.com
|
|
octanews.com wieslauf.sub.de highway.telekom.at united-newsserver.de xsnews.nl
|
|
news.xs4all.nl);
|
|
&HostStats($DBHandle,$DBRaw,$DBHosts,$Month,$OptMID,$OptTest,$OptDebug,@KnownHosts);
|
|
};
|
|
};
|
|
|
|
### close handles
|
|
$DBHandle->disconnect;
|
|
|
|
################################# Subroutines ##################################
|
|
|
|
sub GroupStats {
|
|
### ----------------------------------------------------------------------------
|
|
### collect number of postings per group
|
|
### IN : $DBHandle : database handle
|
|
### $DBRaw : database table for raw data (to read from)
|
|
### $DBGrps : database table for groups data (to write to)
|
|
### $Month : current month to do
|
|
### $MID : specific Message-ID to fetch (testing purposes)
|
|
### $TLH : TLHs to collect
|
|
### $Checkgroupsfile : filename template for checkgroups file
|
|
### (expanded to $Checkgroupsfile-$Month)
|
|
### $Test : test mode
|
|
### $Debug : debug mode
|
|
### OUT: (nothing)
|
|
my ($DBHandle,$DBRaw,$DBGrps,$Month,$TLH,$CheckgroupsFile,$MID,$Test,$Debug) = @_;
|
|
|
|
# read list of newsgroups from --checkgroups
|
|
# into a hash
|
|
my %ValidGroups = %{ReadGroupList(sprintf('%s-%s',$CheckgroupsFile,$Month))}
|
|
if $CheckgroupsFile;
|
|
|
|
my $DBQuery;
|
|
if (!$MID) {
|
|
### ----------------------------------------------
|
|
### get groups data (number of postings per group)
|
|
# get groups data from raw table for given month
|
|
$DBQuery = $DBHandle->prepare(sprintf("SELECT newsgroups FROM %s ".
|
|
"WHERE day LIKE ? AND NOT disregard",
|
|
$DBRaw));
|
|
$DBQuery->execute($Month.'-%')
|
|
or &Bleat(2,sprintf("Can't get groups data for %s from %s: ".
|
|
"$DBI::errstr\n",$Month,
|
|
$DBRaw));
|
|
} else {
|
|
$DBQuery = $DBHandle->prepare(sprintf("SELECT newsgroups FROM %s ".
|
|
"WHERE mid = ?", $DBRaw));
|
|
$DBQuery->execute($MID)
|
|
or &Bleat(2,sprintf("Can't get groups data for %s from %s: ".
|
|
"$DBI::errstr\n",$MID,
|
|
$DBRaw));
|
|
}
|
|
|
|
# count postings per group
|
|
my %Postings;
|
|
while (($_) = $DBQuery->fetchrow_array) {
|
|
# get list of newsgroups and hierarchies from Newsgroups:
|
|
my %Newsgroups = ListNewsgroups($_,$TLH,
|
|
$CheckgroupsFile ? \%ValidGroups : '');
|
|
# count each newsgroup and hierarchy once
|
|
foreach (sort keys %Newsgroups) {
|
|
$Postings{$_}++;
|
|
};
|
|
};
|
|
|
|
# add valid but empty groups if --checkgroups is set
|
|
if (%ValidGroups) {
|
|
foreach (sort keys %ValidGroups) {
|
|
if (!defined($Postings{$_})) {
|
|
# add current newsgroup as empty group
|
|
$Postings{$_} = 0;
|
|
warn (sprintf("ADDED: %s as empty group\n",$_));
|
|
# add empty hierarchies for current newsgroup as needed
|
|
foreach (ParseHierarchies($_)) {
|
|
my $Hierarchy = $_ . '.ALL';
|
|
if (!defined($Postings{$Hierarchy})) {
|
|
$Postings{$Hierarchy} = 0;
|
|
warn (sprintf("ADDED: %s as empty group\n",$Hierarchy));
|
|
};
|
|
};
|
|
}
|
|
};
|
|
};
|
|
|
|
# delete old data for that month
|
|
if (!$Test) {
|
|
$DBQuery = $DBHandle->do(sprintf("DELETE FROM %s WHERE month = ?",
|
|
$DBGrps), undef,$Month)
|
|
or &Bleat(2,sprintf("Can't delete old groups data for %s from %s: ".
|
|
"$DBI::errstr\n",$Month,$DBGrps));
|
|
};
|
|
|
|
print "----- GroupStats -----\n" if $Debug;
|
|
foreach my $Newsgroup (sort keys %Postings) {
|
|
print "$Newsgroup => $Postings{$Newsgroup}\n" if $Debug;
|
|
if (!$Test) {
|
|
# write to database
|
|
$DBQuery = $DBHandle->prepare(sprintf("INSERT INTO %s ".
|
|
"(month,newsgroup,postings) ".
|
|
"VALUES (?, ?, ?)",$DBGrps));
|
|
$DBQuery->execute($Month, $Newsgroup, $Postings{$Newsgroup})
|
|
or &Bleat(2,sprintf("Can't write groups data for %s/%s to %s: ".
|
|
"$DBI::errstr\n",$Month,$Newsgroup,$DBGrps));
|
|
$DBQuery->finish;
|
|
};
|
|
};
|
|
};
|
|
### ----------------------------------------------------------------------------
|
|
|
|
sub HostStats {
|
|
### ----------------------------------------------------------------------------
|
|
### collect number of postings per server
|
|
### IN : $DBHandle : database handle
|
|
### $DBRaw : database table for raw data (to read from)
|
|
### $DBHosts : database table for hosts data (to write to)
|
|
### $Month : current month to do
|
|
### $MID : specific Message-ID to fetch (testing purposes)
|
|
### $Test : test mode
|
|
### $Debug : debug mode
|
|
### @KnownHosts : list of known hosts with subdomains
|
|
### OUT: (nothing)
|
|
my ($DBHandle,$DBRaw,$DBHosts,$Month,$MID,$Test,$Debug,@KnownHosts) = @_;
|
|
|
|
my (%Postings,$DBQuery);
|
|
|
|
if (!$MID) {
|
|
# get raw header data from raw table for given month
|
|
$DBQuery = $DBHandle->prepare(sprintf("SELECT headers FROM %s ".
|
|
"WHERE day LIKE ? AND NOT disregard",
|
|
$DBRaw));
|
|
$DBQuery->execute($Month.'-%')
|
|
or &Bleat(2,sprintf("Can't get hosts data for %s from %s.%s: ".
|
|
"$DBI::errstr\n",$Month,$DBRaw));
|
|
} else {
|
|
$DBQuery = $DBHandle->prepare(sprintf("SELECT headers FROM %s ".
|
|
"WHERE mid = ?", $DBRaw));
|
|
$DBQuery->execute($MID)
|
|
or &Bleat(2,sprintf("Can't get hosts data for %s from %s.%s: ".
|
|
"$DBI::errstr\n",$MID,$DBRaw));
|
|
}
|
|
|
|
### ----------------------------------------------
|
|
print "----- HostStats -----\n" if $Debug;
|
|
### parse headers
|
|
while (($_) = $DBQuery->fetchrow_array) {
|
|
my $Host;
|
|
my %Header = ParseHeaders(split(/\n/,$_));
|
|
|
|
# ([a-z0-9-_]+\.[a-z0-9-_.]+) tries to match a hostname
|
|
# Injection-Info
|
|
if($Header{'injection-info'}) {
|
|
($Host) = $Header{'injection-info'} =~ /^\s*([a-z0-9-_]+\.[a-z0-9-_.]+);/i;
|
|
# reset if IP address
|
|
undef($Host) if $Host && $Host !~ /[g-z]/i;
|
|
}
|
|
# X-Trace
|
|
if (!$Host && $Header{'x-trace'}) {
|
|
(undef, $Host) = $Header{'x-trace'} =~ /^(\s|\d)*([a-z0-9-_]+\.[a-z0-9-_.]+)/i;
|
|
# reset if IP address
|
|
undef($Host) if $Host && $Host !~ /[g-z]/i;
|
|
}
|
|
# Path
|
|
if (!$Host) {
|
|
if ($Header{'path'} =~ /!([^!]+)!.POSTED!/) {
|
|
$Host = "$1";
|
|
} elsif ($Header{'path'} =~ /!.POSTED.([^!]+)!/) {
|
|
$Host = "$1";
|
|
} else {
|
|
# iterate on the Path: header until we have a host name or no more
|
|
# path elements
|
|
while (!$Host && $Header{'path'} =~ /!/) {
|
|
($Host) = $Header{'path'} =~ /!?([a-z0-9-_]+\.[a-z0-9-_.]+)![^!]+$/i;
|
|
undef($Host) if $Host && $Host =~ /\.MISMATCH/;
|
|
# remove last path element
|
|
$Header{'path'} =~ s/![^!]+$//;
|
|
};
|
|
}
|
|
}
|
|
|
|
# special cases
|
|
$Host = 'news.highwinds-media.com' if $Host =~ /fx\d\d\.\S{3}\.POSTED/
|
|
or $Host =~ /newsfe\d+\.(iad|ams2)/;
|
|
$Host = 'newshosting.com' if $Host =~ /post\d*\.iad/;
|
|
|
|
# trailing .POSTED
|
|
($Host) = $Host =~ /(\S+)\.POSTED$/ if $Host =~ /\.POSTED$/;
|
|
|
|
# normalize hosts
|
|
foreach (@KnownHosts) {
|
|
if ($Host =~ /\.$_$/) {
|
|
($Host) = $_ ;
|
|
last;
|
|
}
|
|
}
|
|
|
|
# lowercase
|
|
$Host = lc($Host);
|
|
|
|
# count host
|
|
if ($Host) {
|
|
$Postings{$Host}++;
|
|
} else {
|
|
&Bleat(2,sprintf("%s FAILED", $Header{'message-id'})) if !$Host;
|
|
}
|
|
|
|
printf("%s: %s\n", $Header{'message-id'}, $Host) if $MID;
|
|
};
|
|
|
|
# delete old data for that month
|
|
if (!$Test) {
|
|
$DBQuery = $DBHandle->do(sprintf("DELETE FROM %s WHERE month = ?",
|
|
$DBHosts),undef,$Month)
|
|
or &Bleat(2,sprintf("Can't delete old hosts data for %s from %s: ".
|
|
"$DBI::errstr\n",$Month,$DBHosts));
|
|
};
|
|
|
|
foreach my $Host (sort keys %Postings) {
|
|
print "$Host => $Postings{$Host}\n" if $Debug;
|
|
if (!$Test) {
|
|
# write to database
|
|
$DBQuery = $DBHandle->prepare(sprintf("INSERT INTO %s ".
|
|
"(month,host,postings) ".
|
|
"VALUES (?, ?, ?)",$DBHosts));
|
|
$DBQuery->execute($Month, $Host, $Postings{$Host})
|
|
or &Bleat(2,sprintf("Can't write groups data for %s/%s to %s: ".
|
|
"$DBI::errstr\n",$Month,$Host,$DBHosts));
|
|
$DBQuery->finish;
|
|
};
|
|
};
|
|
};
|
|
|
|
__END__
|
|
|
|
################################ Documentation #################################
|
|
|
|
=head1 NAME
|
|
|
|
gatherstats - process statistical data from a raw source
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
B<gatherstats> [B<-Vhdt>] [B<-m> I<YYYY-MM> | I<YYYY-MM:YYYY-MM>] [B<-s> I<stats>] [B<-c> I<filename template>]] [B<--hierarchy> I<TLH>] [B<--rawdb> I<database table>] [B<-groupsdb> I<database table>] [B<--clientsdb> I<database table>] [B<--hostsdb> I<database table>] [B<--conffile> I<filename>]
|
|
|
|
=head1 REQUIREMENTS
|
|
|
|
See L<doc/README>.
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This script will extract and process statistical information from a
|
|
database table which is fed from F<feedlog.pl> for a given time period
|
|
and write its results to (an)other database table(s). Entries marked
|
|
with I<'disregard'> in the database will be ignored; currently, you
|
|
have to set this flag yourself, using your database management tools.
|
|
You can exclude erroneous entries that way (e.g. automatic reposts
|
|
(think of cancels flood and resurrectors); spam; ...).
|
|
|
|
The time period to act on defaults to last month; you can assign
|
|
another time period or a single month via the B<--month> option (see
|
|
below).
|
|
|
|
By default B<gatherstats> will process all types of information; you
|
|
can change that using the B<--stats> option and assigning the type of
|
|
information to process.
|
|
|
|
Possible information types include:
|
|
|
|
=over 3
|
|
|
|
=item B<groups> (postings per group per month)
|
|
|
|
B<gatherstats> will examine Newsgroups: headers. Crosspostings will be
|
|
counted for each single group they appear in. Groups not in I<TLH>
|
|
will be ignored.
|
|
|
|
B<gatherstats> will also add up the number of postings for each
|
|
hierarchy level, but only count each posting once. A posting to
|
|
de.alt.test will be counted for de.alt.test, de.alt.ALL and de.ALL,
|
|
respectively. A crossposting to de.alt.test and de.alt.admin, on the
|
|
other hand, will be counted for de.alt.test and de.alt.admin each, but
|
|
only once for de.alt.ALL and de.ALL.
|
|
|
|
Data is written to I<DBTableGrps> (see L<doc/INSTALL>); you can
|
|
override that default through the B<--groupsdb> option.
|
|
|
|
=item B<hosts> (postings from host per month)
|
|
|
|
B<gatherstats> will examine Injection-Info:, X-Trace: and Path:
|
|
headers and try to normalize them.
|
|
|
|
Filtering on I<TLH> is not yet implemented.
|
|
|
|
Data is written to I<DBTableHosts> (see L<doc/INSTALL>); you can
|
|
override that default through the B<--hostsdb> option.
|
|
|
|
=back
|
|
|
|
=head2 Configuration
|
|
|
|
B<gatherstats> will read its configuration from F<newsstats.conf>
|
|
which should be present in etc/ via Config::Auto or from a configuration file
|
|
submitted by the B<--conffile> option.
|
|
|
|
See L<doc/INSTALL> for an overview of possible configuration options.
|
|
|
|
You can override configuration options via the B<--hierarchy>,
|
|
B<--rawdb>, B<--groupsdb>, B<--clientsdb> and B<--hostsdb> options,
|
|
respectively.
|
|
|
|
=head1 OPTIONS
|
|
|
|
=over 3
|
|
|
|
=item B<-V>, B<--version>
|
|
|
|
Print out version and copyright information and exit.
|
|
|
|
=item B<-h>, B<--help>
|
|
|
|
Print this man page and exit.
|
|
|
|
=item B<-d>, B<--debug>
|
|
|
|
Output debugging information to STDOUT while processing (number of
|
|
postings per group).
|
|
|
|
=item B<-t>, B<--test>
|
|
|
|
Do not write results to database. You should use B<--debug> in
|
|
conjunction with B<--test> ... everything else seems a bit pointless.
|
|
|
|
=item B<-m>, B<--month> I<YYYY-MM[:YYYY-MM]>
|
|
|
|
Set processing period to a single month in YYYY-MM format or to a time
|
|
period between two month in YYYY-MM:YYYY-MM format (two month, separated
|
|
by a colon).
|
|
|
|
=item B<-s>, B<--stats> I<type>
|
|
|
|
Set processing type to one of I<all>, I<groups> or I<hosts>. Defaults
|
|
to all.
|
|
|
|
=item B<-c>, B<--checkgroups> I<filename template>
|
|
|
|
Check each group against a list of valid newsgroups read from a file,
|
|
one group on each line and ignoring everything after the first
|
|
whitespace (so you can use a file in checkgroups format or (part of)
|
|
your INN active file).
|
|
|
|
The filename is taken from I<filename template>, amended by each
|
|
B<--month> B<gatherstats> is processing in the form of I<template-YYYY-MM>,
|
|
so that
|
|
|
|
gatherstats -m 2010-01:2010-12 -c checkgroups
|
|
|
|
will check against F<checkgroups-2010-01> for January 2010, against
|
|
F<checkgroups-2010-02> for February 2010 and so on.
|
|
|
|
Newsgroups not found in the checkgroups file will be dropped (and
|
|
logged to STDERR), and newsgroups found there but having no postings
|
|
will be added with a count of 0 (and logged to STDERR).
|
|
|
|
=item B<--hierarchy> I<TLH> (newsgroup hierarchy)
|
|
|
|
Override I<TLH> from F<newsstats.conf>.
|
|
|
|
=item B<--rawdb> I<table> (raw data table)
|
|
|
|
Override I<DBTableRaw> from F<newsstats.conf>.
|
|
|
|
=item B<--groupsdb> I<table> (postings per group table)
|
|
|
|
Override I<DBTableGrps> from F<newsstats.conf>.
|
|
|
|
=item B<--clientsdb> I<table> (client data table)
|
|
|
|
Override I<DBTableClnts> from F<newsstats.conf>.
|
|
|
|
=item B<--hostsdb> I<table> (host data table)
|
|
|
|
Override I<DBTableHosts> from F<newsstats.conf>.
|
|
|
|
=item B<--conffile> I<filename>
|
|
|
|
Load configuration from I<filename> instead of F<newsstats.conf>.
|
|
|
|
=back
|
|
|
|
=head1 INSTALLATION
|
|
|
|
See L<doc/INSTALL>.
|
|
|
|
=head1 EXAMPLES
|
|
|
|
Process all types of information for lasth month:
|
|
|
|
gatherstats
|
|
|
|
Do a dry run, showing results of processing:
|
|
|
|
gatherstats --debug --test
|
|
|
|
Process all types of information for January of 2010:
|
|
|
|
gatherstats --month 2010-01
|
|
|
|
Process only number of postings for the year of 2010,
|
|
checking against checkgroups-*:
|
|
|
|
gatherstats -m 2010-01:2010-12 -s groups -c checkgroups
|
|
|
|
=head1 FILES
|
|
|
|
=over 4
|
|
|
|
=item F<bin/gatherstats.pl>
|
|
|
|
The script itself.
|
|
|
|
=item F<lib/NewsStats.pm>
|
|
|
|
Library functions for the NewsStats package.
|
|
|
|
=item F<etc/newsstats.conf>
|
|
|
|
Runtime configuration file.
|
|
|
|
=back
|
|
|
|
=head1 BUGS
|
|
|
|
Please report any bugs or feature requests to the author or use the
|
|
bug tracker at L<https://code.virtcomm.de/thh/newsstats/issues>!
|
|
|
|
=head1 SEE ALSO
|
|
|
|
=over 2
|
|
|
|
=item -
|
|
|
|
L<doc/README>
|
|
|
|
=item -
|
|
|
|
L<doc/INSTALL>
|
|
|
|
=back
|
|
|
|
This script is part of the B<NewsStats> package.
|
|
|
|
=head1 AUTHOR
|
|
|
|
Thomas Hochstein <thh@thh.name>
|
|
|
|
=head1 COPYRIGHT AND LICENSE
|
|
|
|
Copyright (c) 2010-2013, 2025 Thomas Hochstein <thh@thh.name>
|
|
|
|
This program is free software; you may redistribute it and/or modify it
|
|
under the same terms as Perl itself.
|
|
|
|
=cut
|