/usr/lib/news/bin/sendinpaths is in inn2 2.6.1-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | #! /usr/bin/perl -w
use lib '/usr/share/perl5'; use INN::Config;
## $Id: sendinpaths.in 9383 2011-12-25 20:56:10Z iulius $
##
## Submit Path: statistics based on ninpaths.
##
## A rewrite of the sendinpaths shell script in Perl, based on Mohan Kokal's
## initial work. Improved by Julien Elie.
##
## Prerequisites:
## The ninpaths dump files are in the ${INN::Config::pathlog}/path directory.
## The ninpaths dump filenames begin with "inpaths.".
## The ninpaths program is installed in ${INN::Config::pathbin}.
use strict;
use Getopt::Std;
my $pathhost = "$INN::Config::pathhost";
my $ninpaths = "$INN::Config::pathbin/ninpaths";
my $ninpathsdir = "$INN::Config::pathlog/path";
my $alsoto = "$INN::Config::newsmaster";
my $sm = "$INN::Config::mta";
## Default to report up to 32 days (ideal for monthly statistics). It works fine
## for daily stats too because already processed dump files are deleted by default
## (0 day of kept articles).
my $reportdays = 32;
my $keepdays = 0;
my @emailto = ('top1000@anthologeek.net');
my $emaildef = join(' ', @emailto);
my $debug = 0;
my %opt;
$0 =~ s!.*/!!;
sub usage {
print <<_end_;
Usage:
$0 [-cdhn] [-k keep-days] [-r report-days] [address [address ...]]
If called without any arguments, reports are generated and auto
submitted to the inpaths accumulation site.
-c sends a copy of the submitted mail to "$alsoto" (newsmaster's address)
-d enables debug messages
-h prints this help message
-k keep-days specifies how many days to keep processed dump files
-n nomail: gathers stats, but does not auto-submit e-mails
-r report-days specifies how many days of dump files should be processed
Current default submit address: [$emaildef].
The optional arguments [address [address ...]] may be used to override this default.
_end_
exit(1);
}
sub main {
my (@files, @validfiles, @oldfiles, @appendargs, @cmd);
my $pid;
my $sendout = '';
getopts('cdhk:nr:', \%opt) || usage();
usage() if defined $opt{'h'};
# If we took an e-mail argument, override the default submission addresses.
@emailto = @ARGV if ($#ARGV >= 0);
push (@emailto, $alsoto) if defined $opt{'c'};
# Override default parameters.
$keepdays = $opt{'k'} if defined $opt{'k'};
usage() if $keepdays !~ /\d+/;
$reportdays = $opt{'r'} if defined $opt{'r'};
usage() if $reportdays !~ /\d+/;
# Set debug.
$debug = 1 if defined $opt{'d'};
# Scan the ninpaths directory.
opendir(my $DIR, $ninpathsdir) || die "cannot open $ninpathsdir: $!\n";
@files = readdir($DIR);
closedir($DIR);
chdir($ninpathsdir) || die "cannot chdir $ninpathsdir: $!\n";
foreach my $file (@files) {
# Process only inpaths files.
next if (! -f $file);
next if ($file !~ /^inpaths\./);
# Get a listing of all the wanted files to process.
# -s for nonzero size, -M for last modification age in days.
if (-s $file && int(-M $file) <= $reportdays) {
push @validfiles, $file;
}
# Now get the listing of all the files that will be removed.
if (int(-M $file) >= $keepdays) {
push @oldfiles, $file;
}
}
if ($#validfiles < 0) {
print "No data has been collected since the last run of this script!\n";
return;
}
# Process each dump file.
foreach my $file (@validfiles) {
@cmd = ($ninpaths, '-u', $file, '-r', $pathhost);
printf("exec'ing %s\n", join(' ', @cmd)) if $debug;
$pid = open(my $NINPATHS, '-|');
die "cannot fork: $!\n" if $pid < 0;
if ($pid == 0) {
exec(@cmd) || die "cannot exec ninpaths: $!\n";
} else {
while (<$NINPATHS>) {
;
}
close($NINPATHS) || next;
}
if ($? == 0) {
push(@appendargs, ('-u', $file));
}
}
if ($#appendargs < 0) {
print "No valid data has been collected since the last run of this script!\n";
return;
}
# Prepare to send reports, and purge old entries from disk.
@cmd = ($ninpaths, @appendargs, '-r', $pathhost);
printf("exec'ing %s\n", join(' ', @cmd)) if $debug;
$pid = open(my $NINPATHS, '-|');
die "cannot fork: $!\n" if $pid < 0;
if ($pid == 0) {
exec(@cmd) || die "cannot exec ninpaths: $!\n";
} else {
while (<$NINPATHS>) {
$sendout .= $_;
}
close($NINPATHS) || die "execution of ninpaths failed: $!\n";
}
if (defined $opt{'n'}) {
# We are not sending this report anywhere, but to stdout.
print $sendout;
} else {
if ($sm =~ /%s/) {
$sm = sprintf($sm, join(' ', @emailto));
} else {
$sm .= ' ' . join(' ', @emailto);
}
print "exec'ing $sm\n" if $debug;
# Fork and spawn the MTA without using the shell.
$pid = open(my $MTA, '|-');
die "cannot fork: $!\n" if $pid < 0;
if ($pid == 0) {
exec(split(/\s+/, $sm)) || die "cannot exec $sm: $!";
} else {
print $MTA 'To: ' . join(",\n\t", @emailto);
print $MTA "\nSubject: inpaths $pathhost\n\n";
print $MTA $sendout;
print $MTA "\n";
close($MTA) || die "execution of $sm failed: $!\n";
}
# Remove old dumps.
foreach my $file (@oldfiles) {
print "removing $file\n" if $debug;
unlink($file);
}
}
return;
}
main();
exit 0;
|