From f5aa64981059fdadb68a1f364d402a460dc5b4e7 Mon Sep 17 00:00:00 2001 From: Thomas Hochstein Date: Sun, 11 May 2025 02:00:15 +0200 Subject: [PATCH] Add known hosts. Signed-off-by: Thomas Hochstein --- bin/gatherstats.pl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bin/gatherstats.pl b/bin/gatherstats.pl index 6819b62..8e2e1bf 100755 --- a/bin/gatherstats.pl +++ b/bin/gatherstats.pl @@ -133,9 +133,11 @@ foreach my $Month (&ListMonth($Period)) { ### 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 - fernuni-hagen.de free.fr newsread.freenet.ag googlegroups.com - news.neostrada.pl newsdawg.com newscene.com news-service.com octanews.com xsnews.nl news.xs4all.nl); + 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); }; };