Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

ASCII a stupid question, you get an EBCDIC answer.


computers / news.software.nntp / How to configure cleanfeed.local to de-peer google-groups?

SubjectAuthor
* How to configure cleanfeed.local to de-peer google-groups?Don
+* Answer to How to configure cleanfeed.local to de-peer google-groups?Don
|`* Re: Answer to How to configure cleanfeed.local to de-peeryamo'
| `* Re: Answer to How to configure cleanfeed.local to de-peer google-groups?llp
|  +- Re: Answer to How to configure cleanfeed.local to de-peerEric M
|  +* Re: Answer to How to configure cleanfeed.local to de-peer google-groups?Adam H. Kerman
|  |`* Re: Answer to How to configure cleanfeed.local to de-peer google-groups?llp
|  | `* Re: Answer to How to configure cleanfeed.local to de-peer google-groups?Adam H. Kerman
|  |  `* Re: Answer to How to configure cleanfeed.local to de-peer google-groups?llp
|  |   `- Re: Answer to How to configure cleanfeed.local to de-peer google-groups?Adam H. Kerman
|  +- Re: Answer to How to configure cleanfeed.local to de-peerKaz Kylheku
|  +- Re: Answer to How to configure cleanfeed.local to de-peer google-groups?Richard Kettlewell
|  `- Re: Answer to How to configure cleanfeed.local to de-peerGrant Taylor
`* Re: How to configure cleanfeed.local to de-peer google-groups?Grant Taylor
 `* Re: How to configure cleanfeed.local to de-peer google-groups?Don
  +- Re: How to configure cleanfeed.local to de-peer google-groups?Sn!pe
  +- Re: How to configure cleanfeed.local to de-peer google-groups?yamo'
  `* Re: How to configure cleanfeed.local to de-peer google-groups?Don
   `* Re: How to configure cleanfeed.local to de-peer google-groups?Ray Banana
    `- Re: How to configure cleanfeed.local to de-peer google-groups?Tom Furie

1
How to configure cleanfeed.local to de-peer google-groups?

<20231125a@crcomp.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2470&group=news.software.nntp#2470

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: g@crcomp.net (Don)
Newsgroups: news.software.nntp
Subject: How to configure cleanfeed.local to de-peer google-groups?
Date: Sat, 25 Nov 2023 17:52:34 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 51
Message-ID: <20231125a@crcomp.net>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 25 Nov 2023 17:52:34 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="1f3f3b1106c860af94f998f344a04d3b";
logging-data="3041933"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+Ayx5qny8KcDrkJ0afx+dt"
Cancel-Lock: sha1:LrR920cL7qlth5hXF7rajzGdK/A=
 by: Don - Sat, 25 Nov 2023 17:52 UTC

suck feeds my private, in-house, newserver.

cleanfeed's installed using software downloaded from:

<https://github.com/crooks/cleanfeed>

spamassassin is not deployed at present.

Path: is unusable as a cleanfeed filter because in my case it always
contains:

Path: meow.home.net!not-for mail

On the other hand, Injection-Info indeed identifies google-groups:

Injection-Info: google-groups.googlegroups.com; posting-host= ...

cleanfeed.local was copied from cleanfeed.local.sample and this snippet
was added:

sub local_filter_last {
if ($hdr{Injection-Info} =~ /google-groups\.google\.com/) {
return reject("Reject google-groups posting to $hdr{Newsgroups}");
};

Can anyone offer any ideas as to why it won't work? Given how the very
next "recipe" in cleanfeed.local does indeed work:

if (not $hdr{References} and
$hdr{__LINES__} > 25 and
$hdr{__LINES__} < 150 and
scalar @groups > 4 and
scalar @followups > 4) {
if ($hdr{__BODY__} =~ /MI5/ or
$hdr{Subject} =~ /M.{1,3}I.{1,3}5/) {
saveart('mi5');
return reject('MI5 Filter');
};
};

it indicates a "healthy" cleanfeed install.

Thank you in advance for any advice.

Danke,

--
Don, KB7RPU, https://www.qsl.net/kb7rpu
There was a young lady named Bright Whose speed was far faster than light;
She set out one day In a relative way And returned on the previous night.

Answer to How to configure cleanfeed.local to de-peer google-groups?

<20231125b@crcomp.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2471&group=news.software.nntp#2471

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!usenet.network!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: g@crcomp.net (Don)
Newsgroups: news.software.nntp
Subject: Answer to How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 26 Nov 2023 04:34:50 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 17
Message-ID: <20231125b@crcomp.net>
References: <20231125a@crcomp.net>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 26 Nov 2023 04:34:50 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="d549a9376b1383cda9b7dd876c055628";
logging-data="3323912"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19zKTGi2Cft7MuITvRbnIkj"
Cancel-Lock: sha1:+ef30LRAg76Fekiq61U2H8t8n3Q=
 by: Don - Sun, 26 Nov 2023 04:34 UTC

The following filter de-peers google for me:

sub local_filter_first {
if ($hdr{'Injection-Info'} =~ /google-groups\.googlegroups\.com/) {
return reject('google-groups');
};

It turns out google\.com was erroneously used initially instead of
googlegroups\.com .

Danke,

--
Don, KB7RPU, https://www.qsl.net/kb7rpu
There was a young lady named Bright Whose speed was far faster than light;
She set out one day In a relative way And returned on the previous night.

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<ujv1cl$7un$1@rasp.pasdenom.info>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2472&group=news.software.nntp#2472

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!eternal-september.org!gandalf.srv.welterde.de!weretis.net!feeder8.news.weretis.net!pasdenom.info!.POSTED.2a01:e0a:21:ea80:2bcd:1898:8c71:814c!not-for-mail
From: yamo@beurdin.invalid (yamo')
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer
google-groups?
Date: Sun, 26 Nov 2023 09:59:00 +0100
Organization: <http://pasdenom.info/news.html>
Message-ID: <ujv1cl$7un$1@rasp.pasdenom.info>
References: <20231125a@crcomp.net> <20231125b@crcomp.net>
Reply-To: yamo@groumpf.org
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 26 Nov 2023 08:59:01 -0000 (UTC)
Injection-Info: rasp.pasdenom.info; posting-account="stephane@usenet"; posting-host="2a01:e0a:21:ea80:2bcd:1898:8c71:814c";
logging-data="8151"; mail-complaints-to="abuse@pasdenom.info"
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Firefox/91.0 SeaMonkey/2.53.17.1
Cancel-Lock: sha1:Wg8JXaXjdVhho2hP9CopM9GxAaM= sha256:RH0rDNBzbCDv/7oefMJZ9LIVySsmrsUtbtEekcBkuPY=
sha1:1MBufSOd9kluQAfz8LDYmBJtJ7U= sha256:0B9RaLp1hcnR4wUplNvr+1KiMPQZGf2LQnHJQzK2He8=
In-Reply-To: <20231125b@crcomp.net>
X-Face: 3KI0f?#fLTG@kKi{}=#:0_|0/Yj`]d3fD_\O0w{?AFf"Cw9|V~#Nd.Wks
 by: yamo' - Sun, 26 Nov 2023 08:59 UTC

Hi,

Don a tapoté le 26/11/2023 05:34:
> The following filter de-peers google for me:
>
> sub local_filter_first {
> if ($hdr{'Injection-Info'} =~ /google-groups\.googlegroups\.com/) {
> return reject('google-groups');
> };
>
> It turns out google\.com was erroneously used initially instead of
> googlegroups\.com .
>
> Danke,
>

I have done it by cleanfeed but here it is not filtered for all groups.

For all groups, the best way is in newsfeeds file :

$BADPATHS=google-groups.googlegroups.com
ME/$BADPATHS:::

--
Stéphane

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<uk03li$2a14l$1@news.usenet.ovh>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2473&group=news.software.nntp#2473

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!paganini.bofh.team!usenet.ovh!news.usenet.ovh!.POSTED!not-for-mail
From: llp@news.usenet.ovh (llp)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 26 Nov 2023 19:44:01 +0100
Organization: Alfa Network En Travaux
Message-ID: <uk03li$2a14l$1@news.usenet.ovh>
References: <20231125a@crcomp.net> <20231125b@crcomp.net> <ujv1cl$7un$1@rasp.pasdenom.info>
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-15"; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 26 Nov 2023 18:44:02 -0000 (UTC)
Injection-Info: news.usenet.ovh; posting-account="llp";
logging-data="2426005"; mail-complaints-to="abuse@usenet.ovh"
Cancel-Lock: sha256:32PG+bDTU2fmxIkQUceoQ+muovuI3JkGId3izPeAa7k=
X-Newsreader: MesNews/1.08.06.00-fr
 by: llp - Sun, 26 Nov 2023 18:44 UTC

yamo' a présenté l'énoncé suivant :
> Hi,
>
> Don a tapoté le 26/11/2023 05:34:
>> The following filter de-peers google for me:
>>
>> sub local_filter_first {
>> if ($hdr{'Injection-Info'} =~ /google-groups\.googlegroups\.com/) {
>> return reject('google-groups');
>> };
>>
>> It turns out google\.com was erroneously used initially instead of
>> googlegroups\.com .
>>
>> Danke,
>>
>
>
> I have done it by cleanfeed but here it is not filtered for all groups.
>
> For all groups, the best way is in newsfeeds file :
>
>
> $BADPATHS=google-groups.googlegroups.com
> ME/$BADPATHS:::

Some people are posting real messages from Google.
It's a shame to filter everything from us.

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<QoGA8D21b3BjsoqpG5D8zruB248@jntp>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2474&group=news.software.nntp#2474

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!usenet.network!news.neodome.net!news.nntp4.net!pasdenom.info!from-devjntp
Message-ID: <QoGA8D21b3BjsoqpG5D8zruB248@jntp>
JNTP-Route: news2.nemoweb.net
JNTP-DataType: Article
Subject: Re: Answer to How to configure cleanfeed.local to de-peer
google-groups?
References: <20231125a@crcomp.net> <20231125b@crcomp.net> <ujv1cl$7un$1@rasp.pasdenom.info> <uk03li$2a14l$1@news.usenet.ovh>
Newsgroups: news.software.nntp
JNTP-HashClient: wXe_hyXNEpmvHksRwRfmNG565mA
JNTP-ThreadID: 20231125a@crcomp.net
JNTP-Uri: http://news2.nemoweb.net/?DataID=QoGA8D21b3BjsoqpG5D8zruB248@jntp
User-Agent: Nemo/0.999a
JNTP-OriginServer: news2.nemoweb.net
Date: Sun, 26 Nov 23 18:49:12 +0000
Organization: Nemoweb
JNTP-Browser: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Iron Safari/537.36
Injection-Info: news2.nemoweb.net; posting-host="43d157f9437411bd9c60ee58b39a513a2d9d2b85"; logging-data="2023-11-26T18:49:12Z/8431473"; posting-account="3@news2.nemoweb.net"; mail-complaints-to="newsmaster@news2.nemoweb.net"
JNTP-ProtocolVersion: 0.21.1
JNTP-Server: PhpNemoServer/0.94.5
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-JNTP-JsonNewsGateway: 0.96
From: conanospamic@gmail.com (Eric M)
 by: Eric M - Sun, 26 Nov 2023 18:49 UTC

Le 26/11/2023 à 19:44, llp a écrit :

> Some people are posting real messages from Google.
> It's a shame to filter everything from us.

You can't destroy usenet for a few posters.

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<uk04ib$3ccl9$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2475&group=news.software.nntp#2475

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!news.hispagatos.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ahk@chinet.com (Adam H. Kerman)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 26 Nov 2023 18:59:23 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 16
Message-ID: <uk04ib$3ccl9$1@dont-email.me>
References: <20231125a@crcomp.net> <20231125b@crcomp.net> <ujv1cl$7un$1@rasp.pasdenom.info> <uk03li$2a14l$1@news.usenet.ovh>
Injection-Date: Sun, 26 Nov 2023 18:59:23 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="08d9d7bb6d723ec0647cabb95f0a4683";
logging-data="3551913"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19S0Ox1nGq2maN4lqD+tTbY2AP7EF66J60="
Cancel-Lock: sha1:nj4UWcG2K1HJHt55kvxmmPlDf+c=
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
 by: Adam H. Kerman - Sun, 26 Nov 2023 18:59 UTC

llp <llp@news.usenet.ovh> wrote:

>>. . .

>Some people are posting real messages from Google.
>It's a shame to filter everything from us.

Why is that? This large-scale injection of spam through Google Groups is
an enormous hint to those posting the tiny number of legitimate articles
that it's long past time to become a subscriber on a genuine News
server. They made the choice to continue to associate with a News site
that has created massive problems for all other News administrators.

If other News administrators implement a passive Usenet Death Penalty as
a spam countermeasure, then their articles won't propogate widely. They
cannot be unaware of the consequence.

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<uk06cv$2abs6$1@news.usenet.ovh>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2476&group=news.software.nntp#2476

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!news.hispagatos.org!news.nntp4.net!paganini.bofh.team!usenet.ovh!news.usenet.ovh!.POSTED!not-for-mail
From: contact@usenet.ovh (llp)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 26 Nov 2023 20:30:38 +0100
Organization: Alfa Network En Travaux
Message-ID: <uk06cv$2abs6$1@news.usenet.ovh>
References: <20231125a@crcomp.net> <20231125b@crcomp.net> <ujv1cl$7un$1@rasp.pasdenom.info> <uk03li$2a14l$1@news.usenet.ovh> <uk04ib$3ccl9$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-15"; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 26 Nov 2023 19:30:39 -0000 (UTC)
Injection-Info: news.usenet.ovh; posting-account="llp";
logging-data="2436998"; mail-complaints-to="abuse@usenet.ovh"
Cancel-Lock: sha256:sKubgXVEhLRS+sfuP/BhPmF5SVGejThgH08nBgtWFAU=
X-Newsreader: MesNews/1.08.06.00-fr
 by: llp - Sun, 26 Nov 2023 19:30 UTC

Adam H. Kerman avait soumis l'idée :
> llp <llp@news.usenet.ovh> wrote:
>
>>> . . .
>
>> Some people are posting real messages from Google.
>> It's a shame to filter everything from us.
>
> Why is that? This large-scale injection of spam through Google Groups is
> an enormous hint to those posting the tiny number of legitimate articles
> that it's long past time to become a subscriber on a genuine News
> server. They made the choice to continue to associate with a News site
> that has created massive problems for all other News administrators.
>
> If other News administrators implement a passive Usenet Death Penalty as
> a spam countermeasure, then their articles won't propogate widely. They
> cannot be unaware of the consequence.

In theory, you're right.
In practice, it will split usenet in two. Those who fully filter
Googlegroups and those who don't. I find it hard to believe that large
commercial servers blacklist google. Without this, an udp of the other
servers will be useless. For the time being, I prefer the nocems
solution for filtering this spam.
I've seen that eternal-september, i2pn or usenet.ovh have followed this
path, rejecting spam as soon as it arrives on the server and setting up
nocems for the other servers.

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<uk08k2$3d00u$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2477&group=news.software.nntp#2477

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!usenet.network!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ahk@chinet.com (Adam H. Kerman)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 26 Nov 2023 20:08:34 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 39
Message-ID: <uk08k2$3d00u$1@dont-email.me>
References: <20231125a@crcomp.net> <uk03li$2a14l$1@news.usenet.ovh> <uk04ib$3ccl9$1@dont-email.me> <uk06cv$2abs6$1@news.usenet.ovh>
Injection-Date: Sun, 26 Nov 2023 20:08:34 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="08d9d7bb6d723ec0647cabb95f0a4683";
logging-data="3571742"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+Hyy/jRZUFDyrkDjLyyolP311UynEbi5A="
Cancel-Lock: sha1:wOJePCTm/QnGhyU/bDwjY0r+TCg=
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
 by: Adam H. Kerman - Sun, 26 Nov 2023 20:08 UTC

llp <contact@usenet.ovh> wrote:
>Adam H. Kerman avait soumis l'id�e :
>>llp <llp@news.usenet.ovh> wrote:

>>>>. . .

>>>Some people are posting real messages from Google.
>>>It's a shame to filter everything from us.

>>Why is that? This large-scale injection of spam through Google Groups is
>>an enormous hint to those posting the tiny number of legitimate articles
>>that it's long past time to become a subscriber on a genuine News
>>server. They made the choice to continue to associate with a News site
>>that has created massive problems for all other News administrators.

>>If other News administrators implement a passive Usenet Death Penalty as
>>a spam countermeasure, then their articles won't propogate widely. They
>>cannot be unaware of the consequence.

>In theory, you're right.
>In practice, it will split usenet in two. Those who fully filter
>Googlegroups and those who don't.

This isn't Usenet's problem. The consequences are well known at the
point to the poster who has chosen not to become a user on a genuine
News server that isn't so widely rejected.

>I find it hard to believe that large
>commercial servers blacklist google. Without this, an udp of the other
>servers will be useless. For the time being, I prefer the nocems
>solution for filtering this spam.

>I've seen that eternal-september, i2pn or usenet.ovh have followed this
>path, rejecting spam as soon as it arrives on the server and setting up
>nocems for the other servers.

You aren't the one writing them. The ones who are have been putting an
incredible amount of work into it and at some point will conclude that
it's just not worth it.

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<20231126122216.934@kylheku.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2478&group=news.software.nntp#2478

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!3.eu.feeder.erje.net!feeder.erje.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: 864-117-4973@kylheku.com (Kaz Kylheku)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer
google-groups?
Date: Sun, 26 Nov 2023 20:26:54 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 12
Message-ID: <20231126122216.934@kylheku.com>
References: <20231125a@crcomp.net> <20231125b@crcomp.net>
<ujv1cl$7un$1@rasp.pasdenom.info> <uk03li$2a14l$1@news.usenet.ovh>
Injection-Date: Sun, 26 Nov 2023 20:26:54 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="80fa5091126f43cfa571802c54fbfe70";
logging-data="3576708"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+RTUbiVY3CyK40TozJBJXhkRO5i8KSn9U="
User-Agent: slrn/pre1.0.4-9 (Linux)
Cancel-Lock: sha1:L4izof5Y7hVYrVpbBz5NZohPcks=
 by: Kaz Kylheku - Sun, 26 Nov 2023 20:26 UTC

On 2023-11-26, llp <llp@news.usenet.ovh> wrote:
> Some people are posting real messages from Google.

Unfortunately, these genuine, well-meaning postings often try try to
help someone from 1992, who probably figured out their problem in the
three decades since. :)

--
TXR Programming Language: http://nongnu.org/txr
Cygnal: Cygwin Native Application Library: http://kylheku.com/cygnal
Mastodon: @Kazinator@mstdn.ca
NOTE: If you use Google Groups, I don't see you, unless you're whitelisted.

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<wwvsf4sp7bb.fsf@LkoBDZeT.terraraq.uk>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2479&group=news.software.nntp#2479

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!rocksolid2!news.neodome.net!news.nntp4.net!nntp.terraraq.uk!.POSTED.tunnel.sfere.anjou.terraraq.org.uk!not-for-mail
From: invalid@invalid.invalid (Richard Kettlewell)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 26 Nov 2023 20:51:04 +0000
Organization: terraraq NNTP server
Message-ID: <wwvsf4sp7bb.fsf@LkoBDZeT.terraraq.uk>
References: <20231125a@crcomp.net> <20231125b@crcomp.net>
<ujv1cl$7un$1@rasp.pasdenom.info> <uk03li$2a14l$1@news.usenet.ovh>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Injection-Info: innmantic.terraraq.uk; posting-host="tunnel.sfere.anjou.terraraq.org.uk:172.17.207.6";
logging-data="4266"; mail-complaints-to="usenet@innmantic.terraraq.uk"
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Cancel-Lock: sha1:kZa/SKg3UVNv31eRz0CZDsdmQHc=
X-Face: h[Hh-7npe<<b4/eW[]sat,I3O`t8A`(ej.H!F4\8|;ih)`7{@:A~/j1}gTt4e7-n*F?.Rl^
F<\{jehn7.KrO{!7=:(@J~]<.[{>v9!1<qZY,{EJxg6?Er4Y7Ng2\Ft>Z&W?r\c.!4DXH5PWpga"ha
+r0NzP?vnz:e/knOY)PI-
X-Boydie: NO
 by: Richard Kettlewell - Sun, 26 Nov 2023 20:51 UTC

llp <llp@news.usenet.ovh> writes:
> yamo' a présenté l'énoncé suivant :
>> Don a tapoté le 26/11/2023 05:34:
>>> The following filter de-peers google for me:
>>> sub local_filter_first {
>>> if ($hdr{'Injection-Info'} =~ /google-groups\.googlegroups\.com/) {
>>> return reject('google-groups');
>>> };
>>> It turns out google\.com was erroneously used initially instead of
>>> googlegroups\.com .
>>> Danke,
>>>
>>
>>
>> I have done it by cleanfeed but here it is not filtered for all groups.
>>
>> For all groups, the best way is in newsfeeds file :
>>
>>
>> $BADPATHS=google-groups.googlegroups.com
>> ME/$BADPATHS:::
>
> Some people are posting real messages from Google.
> It's a shame to filter everything from us.

It is a shame, but other, less spammy, news servers do exist, and you
can use them instead if you wish.

(I’m still not blocking Google, not that it would affect anyone but me
if I did, but the persistent spam is making me increasingly sympathetic
to the server operators who do block Google).

--
https://www.greenend.org.uk/rjk/

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<uk0cbb$2b47j$1@news.usenet.ovh>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2480&group=news.software.nntp#2480

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!paganini.bofh.team!usenet.ovh!news.usenet.ovh!.POSTED!not-for-mail
From: contact@usenet.ovh (llp)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 26 Nov 2023 22:12:11 +0100
Organization: Alfa Network En Travaux
Message-ID: <uk0cbb$2b47j$1@news.usenet.ovh>
References: <20231125a@crcomp.net> <uk03li$2a14l$1@news.usenet.ovh> <uk04ib$3ccl9$1@dont-email.me> <uk06cv$2abs6$1@news.usenet.ovh> <uk08k2$3d00u$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-15"; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 26 Nov 2023 21:12:11 -0000 (UTC)
Injection-Info: news.usenet.ovh; posting-account="llp";
logging-data="2461939"; mail-complaints-to="abuse@usenet.ovh"
Cancel-Lock: sha256:pbXJZ5S/K0cMaPjZzfu+Do2tt63bHQBS9Hlc8Jlflmc=
X-Newsreader: MesNews/1.08.06.00-fr
 by: llp - Sun, 26 Nov 2023 21:12 UTC

Le 26/11/2023, Adam H. Kerman a supposé :
> llp <contact@usenet.ovh> wrote:
>> Adam H. Kerman avait soumis l'idée :
>>> llp <llp@news.usenet.ovh> wrote:
>
>>>>> . . .
>
>>>> Some people are posting real messages from Google.
>>>> It's a shame to filter everything from us.
>
>>> Why is that? This large-scale injection of spam through Google Groups is
>>> an enormous hint to those posting the tiny number of legitimate articles
>>> that it's long past time to become a subscriber on a genuine News
>>> server. They made the choice to continue to associate with a News site
>>> that has created massive problems for all other News administrators.
>
>>> If other News administrators implement a passive Usenet Death Penalty as
>>> a spam countermeasure, then their articles won't propogate widely. They
>>> cannot be unaware of the consequence.
>
>> In theory, you're right.
>> In practice, it will split usenet in two. Those who fully filter
>> Googlegroups and those who don't.
>
> This isn't Usenet's problem. The consequences are well known at the
> point to the poster who has chosen not to become a user on a genuine
> News server that isn't so widely rejected.
>
>> I find it hard to believe that large
>> commercial servers blacklist google. Without this, an udp of the other
>> servers will be useless. For the time being, I prefer the nocems
>> solution for filtering this spam.
>
>> I've seen that eternal-september, i2pn or usenet.ovh have followed this
>> path, rejecting spam as soon as it arrives on the server and setting up
>> nocems for the other servers.
>
> You aren't the one writing them. The ones who are have been putting an
> incredible amount of work into it and at some point will conclude that
> it's just not worth it.

Sorry, you're wrong ;-)
I'm the administrator of the usenet.ovh server and I've written
nocembot for produce Nocem (as well as a filter for cleanfeed to
reject spam at source on my server).
But, yes, it takes time.

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<uk0ftm$3e4vc$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2481&group=news.software.nntp#2481

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ahk@chinet.com (Adam H. Kerman)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 26 Nov 2023 22:13:10 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 49
Message-ID: <uk0ftm$3e4vc$1@dont-email.me>
References: <20231125a@crcomp.net> <uk06cv$2abs6$1@news.usenet.ovh> <uk08k2$3d00u$1@dont-email.me> <uk0cbb$2b47j$1@news.usenet.ovh>
Injection-Date: Sun, 26 Nov 2023 22:13:10 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="08d9d7bb6d723ec0647cabb95f0a4683";
logging-data="3609580"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+TGEKceQwOSj3gqkLGEqDLpcxVejGiwaQ="
Cancel-Lock: sha1:YYMNEm29jPFEZMJhALYQ9Nl9ffY=
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
 by: Adam H. Kerman - Sun, 26 Nov 2023 22:13 UTC

llp <contact@usenet.ovh> wrote:
>Le 26/11/2023, Adam H. Kerman a suppos� :
>> llp <contact@usenet.ovh> wrote:
>>> Adam H. Kerman avait soumis l'id�e :
>>>> llp <llp@news.usenet.ovh> wrote:
>>
>>>>>> . . .
>>
>>>>> Some people are posting real messages from Google.
>>>>> It's a shame to filter everything from us.
>>
>>>> Why is that? This large-scale injection of spam through Google Groups is
>>>> an enormous hint to those posting the tiny number of legitimate articles
>>>> that it's long past time to become a subscriber on a genuine News
>>>> server. They made the choice to continue to associate with a News site
>>>> that has created massive problems for all other News administrators.
>>
>>>> If other News administrators implement a passive Usenet Death Penalty as
>>>> a spam countermeasure, then their articles won't propogate widely. They
>>>> cannot be unaware of the consequence.
>>
>>> In theory, you're right.
>>> In practice, it will split usenet in two. Those who fully filter
>>> Googlegroups and those who don't.
>>
>> This isn't Usenet's problem. The consequences are well known at the
>> point to the poster who has chosen not to become a user on a genuine
>> News server that isn't so widely rejected.
>>
>>> I find it hard to believe that large
>>> commercial servers blacklist google. Without this, an udp of the other
>>> servers will be useless. For the time being, I prefer the nocems
>>> solution for filtering this spam.
>>
>>> I've seen that eternal-september, i2pn or usenet.ovh have followed this
>>> path, rejecting spam as soon as it arrives on the server and setting up
>>> nocems for the other servers.
>>
>> You aren't the one writing them. The ones who are have been putting an
>> incredible amount of work into it and at some point will conclude that
>> it's just not worth it.

>Sorry, you're wrong ;-)
>I'm the administrator of the usenet.ovh server and I've written
>nocembot for produce Nocem (as well as a filter for cleanfeed to
>reject spam at source on my server).
>But, yes, it takes time.

I apologize.

Re: How to configure cleanfeed.local to de-peer google-groups?

<uk3be3$sqg$4@tncsrv09.home.tnetconsulting.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2484&group=news.software.nntp#2484

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!tncsrv06.tnetconsulting.net!tncsrv09.home.tnetconsulting.net!.POSTED.198.18.1.140!not-for-mail
From: gtaylor@tnetconsulting.net (Grant Taylor)
Newsgroups: news.software.nntp
Subject: Re: How to configure cleanfeed.local to de-peer google-groups?
Date: Mon, 27 Nov 2023 18:14:59 -0600
Organization: TNet Consulting
Message-ID: <uk3be3$sqg$4@tncsrv09.home.tnetconsulting.net>
References: <20231125a@crcomp.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 28 Nov 2023 00:14:59 -0000 (UTC)
Injection-Info: tncsrv09.home.tnetconsulting.net; posting-host="198.18.1.140";
logging-data="29520"; mail-complaints-to="newsmaster@tnetconsulting.net"
User-Agent: Mozilla Thunderbird
Content-Language: en-US
In-Reply-To: <20231125a@crcomp.net>
 by: Grant Taylor - Tue, 28 Nov 2023 00:14 UTC

On 11/25/23 11:52, Don wrote:
> suck feeds my private, in-house, newserver.

Okay.

I can't help with cleanfeed itself. That being said, I do have the
following thoughts.

> Path: is unusable as a cleanfeed filter because in my case it always
> contains:
>
> Path: meow.home.net!not-for mail

That seems like something I'd try to correct.

Specifically I'd try to reconfigure things to append your news server
(new on left / old on right) to the existing Path: header value.

So you could filter in the Google Groups Path: header part.

Or possibly have whatever you're using to pull down articles simply not
save articles from Google Groups or simply not re-inject them into your
server.

The Path; header, including Google parts, should be in the articles that
you are downloading.

I'd suggest you try using that instead of re-inventing the wheel.

> On the other hand, Injection-Info indeed identifies google-groups:
>
> Injection-Info: google-groups.googlegroups.com; posting-host= ...

Yes.

Sorry, I can't help with cleanfeed itself.

> Thank you in advance for any advice.

Good luck.

--
Grant. . . .

Re: Answer to How to configure cleanfeed.local to de-peer google-groups?

<uk3bgv$sqg$5@tncsrv09.home.tnetconsulting.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2485&group=news.software.nntp#2485

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!tncsrv06.tnetconsulting.net!tncsrv09.home.tnetconsulting.net!.POSTED.198.18.1.140!not-for-mail
From: gtaylor@tnetconsulting.net (Grant Taylor)
Newsgroups: news.software.nntp
Subject: Re: Answer to How to configure cleanfeed.local to de-peer
google-groups?
Date: Mon, 27 Nov 2023 18:16:31 -0600
Organization: TNet Consulting
Message-ID: <uk3bgv$sqg$5@tncsrv09.home.tnetconsulting.net>
References: <20231125a@crcomp.net> <20231125b@crcomp.net>
<ujv1cl$7un$1@rasp.pasdenom.info> <uk03li$2a14l$1@news.usenet.ovh>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 28 Nov 2023 00:16:31 -0000 (UTC)
Injection-Info: tncsrv09.home.tnetconsulting.net; posting-host="198.18.1.140";
logging-data="29520"; mail-complaints-to="newsmaster@tnetconsulting.net"
User-Agent: Mozilla Thunderbird
Content-Language: en-US
In-Reply-To: <uk03li$2a14l$1@news.usenet.ovh>
 by: Grant Taylor - Tue, 28 Nov 2023 00:16 UTC

On 11/26/23 12:44, llp wrote:
> Some people are posting real messages from Google.

Yep.

> It's a shame to filter everything from us.

Agreed.

But each news administrator needs to make a decision of how much time
they are willing to spend retroactively cleaning up Google Groups spam
vs proactively blocking all Google Groups messages. It's a personal
choice for them alone to make.

Grant. . . .

Re: How to configure cleanfeed.local to de-peer google-groups?

<20231128a@crcomp.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2486&group=news.software.nntp#2486

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!rocksolid2!news.neodome.net!news.mixmin.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: g@crcomp.net (Don)
Newsgroups: news.software.nntp
Subject: Re: How to configure cleanfeed.local to de-peer google-groups?
Date: Tue, 28 Nov 2023 14:50:17 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 43
Message-ID: <20231128a@crcomp.net>
References: <20231125a@crcomp.net> <uk3be3$sqg$4@tncsrv09.home.tnetconsulting.net>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 28 Nov 2023 14:50:17 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="4d5c651e228606e1d2615886abf1c78f";
logging-data="344372"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19oZk6olZviErZ/gnSIdH2+"
Cancel-Lock: sha1:mO7ykxHr7DOCkWJ+g50Mpr7/ppE=
 by: Don - Tue, 28 Nov 2023 14:50 UTC

Grant wrote:
> Don wrote:
>> suck feeds my private, in-house, newserver.
>
> Okay.
>
> I can't help with cleanfeed itself. That being said, I do have the
> following thoughts.
>
>> Path: is unusable as a cleanfeed filter because in my case it always
>> contains:
>>
>> Path: meow.home.net!not-for mail
>
> That seems like something I'd try to correct.
>
> Specifically I'd try to reconfigure things to append your news server
> (new on left / old on right) to the existing Path: header value.
>
> So you could filter in the Google Groups Path: header part.
>
> Or possibly have whatever you're using to pull down articles simply not
> save articles from Google Groups or simply not re-inject them into your
> server.
>
> The Path; header, including Google parts, should be in the articles that
> you are downloading.
>
> I'd suggest you try using that instead of re-inventing the wheel.

Yes. Something is obviously unintentionally broken and needs to be
fixed. yamo' shows a superior solution earlier in the thread.

Any ideas from the group on how to make suck properly handle headers
is appreciated in advance.

Danke,

--
Don, KB7RPU, https://www.qsl.net/kb7rpu
There was a young lady named Bright Whose speed was far faster than light;
She set out one day In a relative way And returned on the previous night.

Re: How to configure cleanfeed.local to de-peer google-groups?

<1qkwvdw.1gu08sg7orlumN%snipeco.2@gmail.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2487&group=news.software.nntp#2487

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!news.1d4.us!news.samoylyk.net!3.eu.feeder.erje.net!feeder.erje.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!snipe.eternal-september.org!.POSTED!not-for-mail
From: snipeco.2@gmail.com (Sn!pe)
Newsgroups: news.software.nntp
Subject: Re: How to configure cleanfeed.local to de-peer google-groups?
Date: Tue, 28 Nov 2023 15:12:46 +0000
Organization: Sn!peCo World Wide Wading Birds
Lines: 50
Message-ID: <1qkwvdw.1gu08sg7orlumN%snipeco.2@gmail.com>
References: <20231125a@crcomp.net> <uk3be3$sqg$4@tncsrv09.home.tnetconsulting.net> <20231128a@crcomp.net>
Reply-To: snipeco.1@gmail.com (Sn!pe)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Injection-Info: snipe.eternal-september.org; posting-host="80b789bfdaeea96d2214d423379a171e";
logging-data="351899"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19ordQhY0Uo/CtonGSnQULi"
User-Agent: MacSOUP/2.8.6b1 (ed136d9b90) (Mac OS 10.13.6)
Cancel-Lock: sha1:w3JLv69/E1KZfngb7ZeY+un7e1Y=
X-Tongue-In-Cheek: Always
X-Face: 5<x+vv{"AHN,F~/dhf,X*~1zNv[TF/WUe(Uw.*ZOw\P'Ju]C6].T~7Z5cVjV\xTO6&)1#VQ
iZ4vFDG
X-Copyright: Copyright (c) 2023 Sn!peCo WWWB, All Rights Reserved.
This article may be reproduced for the purposes of propagation and
personal use only, no commercial use without express permission.
X-Disclaimer: Any advice that I may give is worth only what I paid for it.
This article comprises only my personal opinions unless otherwise stated.
May contain traces of nuts.
X-Clacks-Overhead: GNU Terry Pratchett; WonK; Large Enid
X-Validate: All genuine Sn!peCo articles contain the header:
"Injection-Info: snipe.eternal-september.org;" my registered FQDN.
 by: Sn!pe - Tue, 28 Nov 2023 15:12 UTC

Don <g@crcomp.net> wrote:

> Grant wrote:
> > Don wrote:
> >> suck feeds my private, in-house, newserver.
> >
> > Okay.
> >
> > I can't help with cleanfeed itself. That being said, I do have the
> > following thoughts.
> >
> >> Path: is unusable as a cleanfeed filter because in my case it always
> >> contains:
> >>
> >> Path: meow.home.net!not-for mail
> >
> > That seems like something I'd try to correct.
> >
> > Specifically I'd try to reconfigure things to append your news server
> > (new on left / old on right) to the existing Path: header value.
> >
> > So you could filter in the Google Groups Path: header part.
> >
> > Or possibly have whatever you're using to pull down articles simply not
> > save articles from Google Groups or simply not re-inject them into your
> > server.
> >
> > The Path; header, including Google parts, should be in the articles that
> > you are downloading.
> >
> > I'd suggest you try using that instead of re-inventing the wheel.
> >
>
> Yes. Something is obviously unintentionally broken and needs to be
> fixed. yamo' shows a superior solution earlier in the thread.
>
> Any ideas from the group on how to make suck properly handle headers
> is appreciated in advance.
>
> Danke,
>

I don't know if this might be useful, it works very well for me
as a Newsreader filter. I killfile on User-Agent: G2/1.0

--
^Ï^. Sn!pe, PA, FIBS - Professional Crastinator.
My pet rock Gordon just is.

Google Groups articles not seen here unless poster is whitelisted.

Re: How to configure cleanfeed.local to de-peer google-groups?

<AABlbFvZwxMAAEne.A3.flnews@yamo.pasdenom.info>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2518&group=news.software.nntp#2518

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!pasdenom.info!.POSTED.2a01:e0a:21:ea80:f716:36ea:86b6:6872!not-for-mail
From: yamo@beurdin.invalid (yamo')
Newsgroups: news.software.nntp
Subject: Re: How to configure cleanfeed.local to de-peer google-groups?
Date: Sun, 3 Dec 2023 11:43:37 +0100
Organization: <http://pasdenom.info/news.html>
Message-ID: <AABlbFvZwxMAAEne.A3.flnews@yamo.pasdenom.info>
References: <20231125a@crcomp.net> <uk3be3$sqg$4@tncsrv09.home.tnetconsulting.net> <20231128a@crcomp.net>
Reply-To: yamo' <yamo@groumpf.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1; format=fixed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 3 Dec 2023 10:43:37 -0000
Injection-Info: rasp.pasdenom.info; posting-account="stephane@usenet"; posting-host="2a01:e0a:21:ea80:f716:36ea:86b6:6872";
logging-data="1100"; mail-complaints-to="abuse@pasdenom.info"
User-Agent: flnews/1.2.0 (for GNU/Linux)
Cancel-Lock: sha1:CwNx7tBxh9hgXqal8zUnelqhv7I= sha256:6rLsNFO87hZOFnatWCF5ywqZrQfkm0MJ1+DBx9MFC6M=
sha1:8ow237GYVnTZLoPDjDCQHIber4U= sha256:LS4NsBP9jvbcX0rYs1g1A/CgJx5X27QqLD1tJelGxTs=
sha1:q517NSECul9Ury0GSTbc2LrxXeg= sha256:PQ5J+Atl2xNibe5IlSdCQL0cJvJEMvTuaW1q8AnLPwI=
 by: yamo' - Sun, 3 Dec 2023 10:43 UTC

Hi,

Don a tapoté :
>
> Yes. Something is obviously unintentionally broken and needs to be
> fixed. yamo' shows a superior solution earlier in the thread.

My cleanfeed.local has those lines (inside other many lines) :

sub local_flag_spamsource2 {
return 1 if $hdr{'Injection-Info'} =~ /google-groups.googlegroups.com|posting.uzoreto.com/;
return 1 if $hdr{'X-Complaints-To'} =~ /abuse\@usenetserver.com/;
return 0;
};

sub local_filter_last {

if(local_flag_spamsource2){
if (not $hdr{Newsgroups} =~ /^news\.|^fr\./i) {
return reject( 'spam google?');
};
};
};

Beware my copy past may be broken!
You can check with :

perl -wc /etc/news/filter/cleanfeed/etc/cleanfeed.local

You can adapt them for your config...

>
> Any ideas from the group on how to make suck properly handle headers
> is appreciated in advance.

I only use innfeed. I never used suck.

--
Stéphane
Sorry for my bad English...

Re: How to configure cleanfeed.local to de-peer google-groups?

<20231205a@crcomp.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2575&group=news.software.nntp#2575

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: g@crcomp.net (Don)
Newsgroups: news.software.nntp
Subject: Re: How to configure cleanfeed.local to de-peer google-groups?
Date: Wed, 6 Dec 2023 05:32:47 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 29
Message-ID: <20231205a@crcomp.net>
References: <20231125a@crcomp.net> <uk3be3$sqg$4@tncsrv09.home.tnetconsulting.net> <20231128a@crcomp.net>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Wed, 6 Dec 2023 05:32:47 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="8658ef11ad2731faf05dc9ff103bbc21";
logging-data="680562"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/tpUmaIFjYK5bq8i1Ds4QH"
Cancel-Lock: sha1:x4o6gG4OMsmq2DA5AyA0+NMAveo=
 by: Don - Wed, 6 Dec 2023 05:32 UTC

Don wrote:
> Grant wrote:
>> Don wrote:
>>> suck feeds my private, in-house, newserver.
>>
>> Okay.
>>
>> I can't help with cleanfeed itself. That being said, I do have the
>> following thoughts.
>>
>>> Path: is unusable as a cleanfeed filter because in my case it always
>>> contains:
>>>
>>> Path: meow.home.net!not-for mail
>>
>> That seems like something I'd try to correct.

In the end, my innd install perfectly handles the Path: header. After
too much dectective work it turns out easynews uses Path: not-for-mail
on every single article it hosts - easynews personnel perverted the
Path: protocol.

Danke,

--
Don, KB7RPU, https://www.qsl.net/kb7rpu
There was a young lady named Bright Whose speed was far faster than light;
She set out one day In a relative way And returned on the previous night.

Re: How to configure cleanfeed.local to de-peer google-groups?

<8medfzc0xq.fsf@raybanana.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2576&group=news.software.nntp#2576

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!raybanana.eternal-september.org!.POSTED!not-for-mail
From: rayban@raybanana.net (Ray Banana)
Newsgroups: news.software.nntp
Subject: Re: How to configure cleanfeed.local to de-peer google-groups?
Date: Wed, 06 Dec 2023 07:14:25 +0100
Organization: A noiseless patient spider
Lines: 18
Message-ID: <8medfzc0xq.fsf@raybanana.net>
References: <20231125a@crcomp.net>
<uk3be3$sqg$4@tncsrv09.home.tnetconsulting.net> <20231128a@crcomp.net>
<20231205a@crcomp.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Injection-Info: raybanana.eternal-september.org; posting-host="c8e38282359b426a7b9071b3014f7688";
logging-data="690367"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1974B2JJ5y3ixRi/GqVarkjEIz8QVfNxfo="
User-Agent: Plonkenlights
Cancel-Lock: sha1:iKZgjW3kYI4zFBSQbdHFqifQFSc=
sha1:tmFVURWic2vurVVyfEr04t3BpkQ=
X-Attribution: Ray Banana
 by: Ray Banana - Wed, 6 Dec 2023 06:14 UTC

Thus spake "Don" <g@crcomp.net>
> Don wrote:

> In the end, my innd install perfectly handles the Path: header. After
> too much dectective work it turns out easynews uses Path: not-for-mail
> on every single article it hosts - easynews personnel perverted the
> Path: protocol.

,-------------------------------------------------------------------
| "not-for-mail" is a common <tail-entry>.
`-------------------------------------------------------------------

https://www.rfc-editor.org/rfc/rfc5537.html#section-3.2.2

--
Пу́тін — хуйло́
http://www.eternal-september.org

Re: How to configure cleanfeed.local to de-peer google-groups?

<ukp6or$nj4$1@freeq.furie.org.uk>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2577&group=news.software.nntp#2577

  copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!news.nntp4.net!nntp.terraraq.uk!news.furie.org.uk!.POSTED.2001:470:1ae8:50:6efa:a7ff:fe34:284e!not-for-mail
From: tom@furie.org.uk (Tom Furie)
Newsgroups: news.software.nntp
Subject: Re: How to configure cleanfeed.local to de-peer google-groups?
Date: Wed, 06 Dec 2023 07:10:20 +0000
Organization: Little to None
Message-ID: <ukp6or$nj4$1@freeq.furie.org.uk>
References: <20231125a@crcomp.net>
<uk3be3$sqg$4@tncsrv09.home.tnetconsulting.net> <20231128a@crcomp.net>
<20231205a@crcomp.net> <8medfzc0xq.fsf@raybanana.net>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: freeq.furie.org.uk; posting-host="2001:470:1ae8:50:6efa:a7ff:fe34:284e";
logging-data="24164"; mail-complaints-to="usenet@furie.org.uk"
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
 by: Tom Furie - Wed, 6 Dec 2023 07:10 UTC

Ray Banana <rayban@raybanana.net> writes:

> Thus spake "Don" <g@crcomp.net>
>
>> Don wrote:
>
>> In the end, my innd install perfectly handles the Path: header. After
>> too much dectective work it turns out easynews uses Path: not-for-mail
>> on every single article it hosts - easynews personnel perverted the
>> Path: protocol.
>
> ,-------------------------------------------------------------------
> | "not-for-mail" is a common <tail-entry>.
> `-------------------------------------------------------------------
>
> https://www.rfc-editor.org/rfc/rfc5537.html#section-3.2.2

It's not usually the *whole* path though. xsusenet do that. Perhaps only
on the reader side, to "protect their users' anonymity" or
whatever. Their IP address looks to belong to Abavia.

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor