Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

"Our vision is to speed up time, eventually eliminating it." -- Alex Schure


computers / news.software.nntp / Re: Requirement specifications for a tool for news admin cancels

SubjectAuthor
* Requirement specifications for a tool for news admin cancelsJulien ÉLIE
+* Re: Requirement specifications for a tool for news admin cancelsjdanield
|`* Re: Requirement specifications for a tool for news admin cancelsJulien ÉLIE
| `* Re: Requirement specifications for a tool for news admin cancelsjdanield
|  `* Re: Requirement specifications for a tool for news admin cancelsJulien ÉLIE
|   `* Re: Requirement specifications for a tool for news admin cancelsjdanield
|    `* Re: Requirement specifications for a tool for news admin cancelsJulien ÉLIE
|     `* Re: Requirement specifications for a tool for news admin cancelsjdanield
|      `* Re: Requirement specifications for a tool for news admin cancelsyamo'
|       `- Re: Requirement specifications for a tool for news admin cancelsjdanield
`- Re: Requirement specifications for a tool for news admin cancelsyamo'

1
Requirement specifications for a tool for news admin cancels

<surrl2$24cfe$1@news.trigofacile.com>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.trigofacile.com!.POSTED.san13-h02-176-143-2-105.dsl.sta.abo.bbox.fr!not-for-mail
From: iul...@nom-de-mon-site.com.invalid (Julien ÉLIE)
Newsgroups: news.software.nntp
Subject: Requirement specifications for a tool for news admin cancels
Date: Sat, 19 Feb 2022 23:40:33 +0100
Organization: Groupes francophones par TrigoFACILE
Message-ID: <surrl2$24cfe$1@news.trigofacile.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 19 Feb 2022 22:40:34 -0000 (UTC)
Injection-Info: news.trigofacile.com; posting-account="julien"; posting-host="san13-h02-176-143-2-105.dsl.sta.abo.bbox.fr:176.143.2.105";
logging-data="2241006"; mail-complaints-to="abuse@trigofacile.com"
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.6.1
Cancel-Lock: sha1:FhpwLcKVGl6052sy160et07m/9g= sha256:3nDBFw1nNN8C59zgw7HyMDXraVLJ+R0we7nfO76E3VA=
sha1:HPwbijhhU0mRpwizE4xGGUXqLbw= sha256:w9smIW61Hlv0SPFr8OgbQko/i460MNJPZenvU1ofv8c=
 by: Julien ÉLIE - Sat, 19 Feb 2022 22:40 UTC

Hi all,

I am finalizing the integration of Cancel-Lock into INN, based on the libcanlock library maintained by Michael (and Dennis Preiser before him).

As the news admin needs an easy way to cancel articles sent from his news server in case of abuse or for whatever reason, I have added a "gencancel" tool that generates the cancel control article to send. As a matter of fact, he needs computing the right Cancel-Key header field to authenticate the cancel with his admin secret.

Here is what I have come up with right now:

Usage: gencancel [-adkm] [-b body] [-c charset] [-f from] [-n newsgroups]
[-s subject] '<Message-ID>'

-a Do not add an Approved header field
-b body Use the argument as the body of the cancel article
-c charset Use the argument for the Content-Type charset
-d Do not use local time for the Date header field
-f from Use the argument for the From and Approved header fields
-k Only write the body of the Cancel-Key header field
-m Do not generate a Message-ID for the cancel article
-n newsgroups Use the argument for the Newsgroups header field
-s subject Use the argument for the Subject header field

Message-ID The Message-ID to cancel (with quotes around for the
shell, and angle brackets)

% gencancel '<an-unknown-article-to-cancel@example.com>'
gencancel: Cannot find article <an-article-to-cancel@example.com> in history; you may want to use -n

The Newsgroups header field will be automatically set to the value of the original article (if still in your news spool).
Otherwise, "-n news.software.nntp" should be for instance given.

Basically, it will generate a proto-article like this:

% gencancel '<an-article-to-cancel@example.com>' -f 'newsadmin@example.com'
From: newsadmin@example.com
Newsgroups: local.test
Subject: cmsg cancel <an-article-to-cancel@example.com>
Control: cancel <an-article-to-cancel@example.com>
Date: Sat, 19 Feb 2022 23:18:34 +0100 (CET)
Approved: newsadmin@example.com
Message-ID: <surqbq$24bml$1@news.trigofacile.com>
MIME-Version: 1.0
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
Cancel-Key: sha1:w1saUe2FYUi48sVbVtKcm7cdznE= sha256:3Wb6ayHU0EdK7BQGIa6vma6RpPRgzo1lmxphpu5zaUo=

Admin cancel.

which can be piped into inews, and that's it. Cancel done!

I've kept the legacy "cmsg cancel <mid>" as default Subject but I can put "cancel <mid>" or any better idea as default.

% gencancel '<an-article-to-cancel@example.com>' | inews -h -s

(-h to say the proto-article contains headers, -s to prevent the addition of a Sender header field)

Also, for people just wanting the hashes to use, the -k parameter outputs them:

% gencancel '<an-article-to-cancel@example.com>' -k
sha1:w1saUe2FYUi48sVbVtKcm7cdznE= sha256:3Wb6ayHU0EdK7BQGIa6vma6RpPRgzo1lmxphpu5zaUo=

This way, the news admin or an external program can easily make use of them (for a supersede request for instance).

If Cancel-Lock support is not enabled, gencancel also works for unauthenticated cancels (it will just not generate the Cancel-Key header field).

Naturally, if one wants to customize even more the output of gencancel, he can echo additional header fields, modify existing fields with sed or any commands he wants.

That's why I think this basic gencancel should normally fit most (if not all) needs.
But I prefer to ask here, in case I missed something important.
So, do you think this proposal is enough for the needs of news admins?
Otherwise, what would you need?

Better provide the useful stuff in the initial release than having to ask and then wait for the next release!

--
Julien ÉLIE

« Nul n'entre ici s'il n'est géomètre. » (Platon)

Re: Requirement specifications for a tool for news admin cancels

<sut1fe$5rq$1@dont-email.me>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: jdd...@dodin.org (jdanield)
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 10:26:05 +0100
Organization: A noiseless patient Spider
Lines: 14
Message-ID: <sut1fe$5rq$1@dont-email.me>
References: <surrl2$24cfe$1@news.trigofacile.com>
Reply-To: jdd@dodin.org
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 09:26:06 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2e509931fd03a01a0cc35be0b385ac74";
logging-data="6010"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19WmpvFJz9BPId6IgX/ajErZ3DPLYuA3UY="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.5.0
Cancel-Lock: sha1:cTdoaEN43YKcWfzgW+Za1yIyo5I=
In-Reply-To: <surrl2$24cfe$1@news.trigofacile.com>
Content-Language: en-US
 by: jdanield - Sun, 20 Feb 2022 09:26 UTC

Le 19/02/2022 à 23:40, Julien ÉLIE a écrit :
> Hi all,
>
> I am finalizing the integration of Cancel-Lock into INN, based on the libcanlock library maintained by Michael (and Dennis Preiser before him).
>
> As the news admin needs an easy way to cancel articles sent from his news server in case of abuse or for whatever reason,

good :-)

I didn't find link to a way of forgive automatic cancel from outside
user, do you have one?

thanks
jdd

Re: Requirement specifications for a tool for news admin cancels

<sut1re$25pls$1@news.trigofacile.com>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.trigofacile.com!.POSTED.176-143-2-105.abo.bbox.fr!not-for-mail
From: iul...@nom-de-mon-site.com.invalid (Julien ÉLIE)
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 10:32:29 +0100
Organization: Groupes francophones par TrigoFACILE
Message-ID: <sut1re$25pls$1@news.trigofacile.com>
References: <surrl2$24cfe$1@news.trigofacile.com> <sut1fe$5rq$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 09:32:30 -0000 (UTC)
Injection-Info: news.trigofacile.com; posting-account="julien"; posting-host="176-143-2-105.abo.bbox.fr:176.143.2.105";
logging-data="2287292"; mail-complaints-to="abuse@trigofacile.com"
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.6.1
Cancel-Lock: sha1:C69Bg7NDX9f0zy1M6Q1+uQRtsGU= sha256:Q5ly/XcPNNS4VXyfvtBOftFLIN6nP6JJ8EwfUqVxWJQ=
sha1:0G+2vwDQ62lsm2DWvj5JweWPhkc= sha256:Cb+Ha2zCgRPZuz7uc33xd010W5V0LAWdcd+taJYuPkA=
In-Reply-To: <sut1fe$5rq$1@dont-email.me>
 by: Julien ÉLIE - Sun, 20 Feb 2022 09:32 UTC

Bonjour Jean-Daniel,

>> As the news admin needs an easy way to cancel articles sent from his
>> news server in case of abuse or for whatever reason,
>
> I didn't find link to a way of forgive automatic cancel from outside
> user, do you have one?

I do not understand well the question.
What are the cancels you want your server to be process, and the cancels
that you do not want your server to process?
Does "outside user" mean "news readers connected to your server" or
"external peers"?

--
Julien ÉLIE

« César, c'est un Jules tout de même ! » (Astérix)

Re: Requirement specifications for a tool for news admin cancels

<sut25k$9gu$1@dont-email.me>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: jdd...@dodin.org (jdanield)
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 10:37:55 +0100
Organization: A noiseless patient Spider
Lines: 17
Message-ID: <sut25k$9gu$1@dont-email.me>
References: <surrl2$24cfe$1@news.trigofacile.com> <sut1fe$5rq$1@dont-email.me>
<sut1re$25pls$1@news.trigofacile.com>
Reply-To: jdd@dodin.org
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 09:37:56 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2e509931fd03a01a0cc35be0b385ac74";
logging-data="9758"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/KCSE/Gf6V261i9un/oMamf54y0Spguww="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.5.0
Cancel-Lock: sha1:DgPMPyvYc8a653tPTF41pvDHnX0=
In-Reply-To: <sut1re$25pls$1@news.trigofacile.com>
Content-Language: en-US
 by: jdanield - Sun, 20 Feb 2022 09:37 UTC

Le 20/02/2022 à 10:32, Julien ÉLIE a écrit :

> Does "outside user" mean "news readers connected to your server

IMHO, supersed by original poster is ok, not by anybody (except admin).

cancel-lock/cancel-key seems perfect for this, but I didn't find how to
have it on my server.

probably an option in readers. conf, but which one?

thanks

and by the way the getcancel is a very good idea, thanks again

jdd

Re: Requirement specifications for a tool for news admin cancels

<sut4dj$25tia$1@news.trigofacile.com>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.trigofacile.com!.POSTED.176.143-2-105.abo.bbox.fr!not-for-mail
From: iul...@nom-de-mon-site.com.invalid (Julien ÉLIE)
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 11:16:19 +0100
Organization: Groupes francophones par TrigoFACILE
Message-ID: <sut4dj$25tia$1@news.trigofacile.com>
References: <surrl2$24cfe$1@news.trigofacile.com> <sut1fe$5rq$1@dont-email.me>
<sut1re$25pls$1@news.trigofacile.com> <sut25k$9gu$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 10:16:19 -0000 (UTC)
Injection-Info: news.trigofacile.com; posting-account="julien"; posting-host="176.143-2-105.abo.bbox.fr:176.143.2.105";
logging-data="2291274"; mail-complaints-to="abuse@trigofacile.com"
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.6.1
Cancel-Lock: sha1:zoqf1xEqZ3VmD7OlN912XlovCWI= sha256:1ynmL4qKszefbDD4bVkFBpiUMKRunrhuUFCbOs45YUk=
sha1:5gG26whsHdy0kJzIhKuLcvy28o4= sha256:d4U2H2+SCijdTMh0jVGjMeNuOCC1QxYHQ32xD2WeIwQ=
In-Reply-To: <sut25k$9gu$1@dont-email.me>
 by: Julien ÉLIE - Sun, 20 Feb 2022 10:16 UTC

Bonjour Jean-Daniel,

>> Does "outside user" mean "news readers connected to your server
>
> IMHO, supersed by original poster is ok, not by anybody (except admin).
>
> cancel-lock/cancel-key seems perfect for this, but I didn't find how to
> have it on my server.

Ah, OK, I wasn't sure it was what you were looking for.
Didn't you try Gérald documentation? (based on German work by Alexander
and Thomas)
https://home.gegeweb.org/rfc8315.html

> probably an option in readers.conf, but which one?

Currently, it should be done with Perl hooks.
It will be native in innd/nnrpd in the upcoming INN 2.7.0 release.

> and by the way the gencancel is a very good idea, thanks again

You're welcome!

--
Julien ÉLIE

« César, c'est un Jules tout de même ! » (Astérix)

Re: Requirement specifications for a tool for news admin cancels

<sut65u$18e$1@dont-email.me>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: jdd...@dodin.org (jdanield)
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 11:46:21 +0100
Organization: A noiseless patient Spider
Lines: 21
Message-ID: <sut65u$18e$1@dont-email.me>
References: <surrl2$24cfe$1@news.trigofacile.com> <sut1fe$5rq$1@dont-email.me>
<sut1re$25pls$1@news.trigofacile.com> <sut25k$9gu$1@dont-email.me>
<sut4dj$25tia$1@news.trigofacile.com>
Reply-To: jdd@dodin.org
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 10:46:22 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2e509931fd03a01a0cc35be0b385ac74";
logging-data="1294"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18vUs7GlwEuP8V7+u+GZ/Y56vEbZ3Ts6GM="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.5.0
Cancel-Lock: sha1:kAUSHqOOCHcljxPVE054gI1D9vM=
In-Reply-To: <sut4dj$25tia$1@news.trigofacile.com>
Content-Language: en-US
 by: jdanield - Sun, 20 Feb 2022 10:46 UTC

Le 20/02/2022 à 11:16, Julien ÉLIE a écrit :

> Didn't you try Gérald documentation? (based on German work by Alexander
> and Thomas)
> https://home.gegeweb.org/rfc8315.html

yes, I did, but is it as simple as replacing my (default)
filter_nnrpd.pl by the one of this page?

I also read:

https://www.eyrie.org/~eagle/usefor/drafts/draft-ietf-usefor-cancel-lock-00.txt

but disabling the cancel function for user, and using with your
gencancel as admin for the rare cases when a cancel is necessary may be
enough for now.

I expect this system not changing the nocem process?

thanks
jdd

Re: Requirement specifications for a tool for news admin cancels

<sut821$2622c$1@news.trigofacile.com>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.trigofacile.com!.POSTED.176-143-2-105.abo.bbox.fr!not-for-mail
From: iul...@nom-de-mon-site.com.invalid (Julien ÉLIE)
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 12:18:24 +0100
Organization: Groupes francophones par TrigoFACILE
Message-ID: <sut821$2622c$1@news.trigofacile.com>
References: <surrl2$24cfe$1@news.trigofacile.com> <sut1fe$5rq$1@dont-email.me>
<sut1re$25pls$1@news.trigofacile.com> <sut25k$9gu$1@dont-email.me>
<sut4dj$25tia$1@news.trigofacile.com> <sut65u$18e$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 11:18:25 -0000 (UTC)
Injection-Info: news.trigofacile.com; posting-account="julien"; posting-host="176-143-2-105.abo.bbox.fr:176.143.2.105";
logging-data="2295884"; mail-complaints-to="abuse@trigofacile.com"
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.6.1
Cancel-Lock: sha1:+0g+barwkDb/hCQrN5VRWNujgkQ= sha256:fl23v/Sd1fF7rCbGbkcj6OLvEmV86yoNFPOEFR0YcnE=
sha1:nCx//KbVWoQyEid9QcqlLqVinMQ= sha256:hyvMgFzk5wLuZyE2MEjl5iXBYUZlNwB0so7vq036UGs=
In-Reply-To: <sut65u$18e$1@dont-email.me>
 by: Julien ÉLIE - Sun, 20 Feb 2022 11:18 UTC

Bonjour Jean-Daniel,

>> Didn't you try Gérald documentation? (based on German work by Alexander
>> and Thomas)
>>     https://home.gegeweb.org/rfc8315.html
>
> yes, I did, but is it as simple as replacing my (default)
> filter_nnrpd.pl by the one of this page?

Yes, it is as simple as that. (Who said INN was complicated? :-) )

And also cleanfeed.local for the verification part (when innd receives a
cancel or supersede request). There are 2 scripts in the page.

Make sure you have the Digest::SHA and Digest::MD5 Perl modules
installed. They are normally standard modules but some distributions do
not install it by default.

The following commands should not return any error:
% perl -e "use Digest::SHA"
% perl -e "use Digest::MD5"

> I also read:
>
> https://www.eyrie.org/~eagle/usefor/drafts/draft-ietf-usefor-cancel-lock-00.txt

This is an old draft (the first one). The final document is here:
https://www.rfc-editor.org/rfc/rfc8315.html

> but disabling the cancel function for user, and using with your
> gencancel as admin for the rare cases when a cancel is necessary may be
> enough for now.

It's up to you to decide what you need for your users.

> I expect this system not changing the nocem process?

NoCeM is something different, and untouched.

--
Julien ÉLIE

« Si les chefs sont de force égale, ils ont le droit de se jeter des
ballots à la tête ; on dit alors qu'ils sont en ballottage. »
(Astérix)

Re: Requirement specifications for a tool for news admin cancels

<sutfb2$ta6$1@dont-email.me>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: jdd...@dodin.org (jdanield)
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 14:22:41 +0100
Organization: A noiseless patient Spider
Lines: 9
Message-ID: <sutfb2$ta6$1@dont-email.me>
References: <surrl2$24cfe$1@news.trigofacile.com> <sut1fe$5rq$1@dont-email.me>
<sut1re$25pls$1@news.trigofacile.com> <sut25k$9gu$1@dont-email.me>
<sut4dj$25tia$1@news.trigofacile.com> <sut65u$18e$1@dont-email.me>
<sut821$2622c$1@news.trigofacile.com>
Reply-To: jdd@dodin.org
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 13:22:42 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2e509931fd03a01a0cc35be0b385ac74";
logging-data="30022"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+V0fdIMwQHT126oD1oqAzHp3QPqYehM+4="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.5.0
Cancel-Lock: sha1:97kD7UcSI3xLB6Y45mOMcVszdG4=
In-Reply-To: <sut821$2622c$1@news.trigofacile.com>
Content-Language: fr
 by: jdanield - Sun, 20 Feb 2022 13:22 UTC

Le 20/02/2022 à 12:18, Julien ÉLIE a écrit :

http://dodin.me/wiki/pmwiki.php?n=Doc.ConfigurerINN-2021#toc-14.3

any way to check if it works?

thanks
jdd

Re: Requirement specifications for a tool for news admin cancels

<sutksc$fio$1@rasp.pasdenom.info>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!paganini.bofh.team!pasdenom.info!.POSTED.newsportal.pasdenom.info!newsportal
From: use...@tld.invalid (yamo')
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 14:57:17 -0000 (UTC)
Organization: newsportal.pasdenom.info with Mozilla/5.0 (Android 11; Mobile;
rv:97.0) Gecko/97.0 Firefox/97.0
Message-ID: <sutksc$fio$1@rasp.pasdenom.info>
References: <surrl2$24cfe$1@news.trigofacile.com> <sut1fe$5rq$1@dont-email.me>
<sut1re$25pls$1@news.trigofacile.com> <sut25k$9gu$1@dont-email.me> <sut4dj$25tia$1@news.trigofacile.com>
<sut65u$18e$1@dont-email.me> <sut821$2622c$1@news.trigofacile.com> <sutfb2$ta6$1@dont-email.me>
Reply-To: Yamo@groumpf.org
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 14:57:17 -0000 (UTC)
Injection-Info: newsportal.pasdenom.info; posting-account="stephane";
posting-host="37-166-10-140.coucou-networks.fr" logging-data="http";
mail-complaints-to="abuse@pasdenom.info"
User-Agent: NewsPortal/0.52.a6
( https://gitlab.com/yamo-nntp/newsportal )
Cancel-Lock: sha256:RktjYhyUNFx/3ufOUMgZrbgRLY/v7JmdV9cpZ/3zA5c=
 by: yamo' - Sun, 20 Feb 2022 14:57 UTC

Hi,
jdanield a écrit :
> http://dodin.me/wiki/pmwiki.php?n=Doc.ConfigurerINN-2021#toc-14.3
> any way to check if it works?

I hope that you have keep all the config for cleanfeed.local.

You can open on your server something like :
tail -F /var/log/syslog | fgrep -i cancel

And post on a *.test with a server and cancel on another server.

--
Stéphane
Sorry for my bad English

Re: Requirement specifications for a tool for news admin cancels

<sutlkh$8tr$1@dont-email.me>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: jdd...@dodin.org (jdanield)
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 16:10:09 +0100
Organization: A noiseless patient Spider
Lines: 33
Message-ID: <sutlkh$8tr$1@dont-email.me>
References: <surrl2$24cfe$1@news.trigofacile.com> <sut1fe$5rq$1@dont-email.me>
<sut1re$25pls$1@news.trigofacile.com> <sut25k$9gu$1@dont-email.me>
<sut4dj$25tia$1@news.trigofacile.com> <sut65u$18e$1@dont-email.me>
<sut821$2622c$1@news.trigofacile.com> <sutfb2$ta6$1@dont-email.me>
<sutksc$fio$1@rasp.pasdenom.info>
Reply-To: jdd@dodin.org
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 15:10:10 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2e509931fd03a01a0cc35be0b385ac74";
logging-data="9147"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+JSq9v3YzD1pLEpOGbNFMhindW6C4pX9Y="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.5.0
Cancel-Lock: sha1:2UX/Pi85MINZIu6T/n1PaZN6W9s=
In-Reply-To: <sutksc$fio$1@rasp.pasdenom.info>
Content-Language: en-US
 by: jdanield - Sun, 20 Feb 2022 15:10 UTC

Le 20/02/2022 à 15:57, yamo' a écrit :
> Hi,
> jdanield a écrit :
>> http://dodin.me/wiki/pmwiki.php?n=Doc.ConfigurerINN-2021#toc-14.3
>> any way to check if it works?
>
> I hope that you have keep all the config for cleanfeed.local.

in fact I noticed I had none :-( but a cleanfeed.local.sample

in fact I had read it and seen there notices about cancels I was seeking
for since some time (but didn't found :-))

nuit in the sample file there is:

"# Before using any of this code please *think*, and be sure you really
# understand what it does."

and as I don't understand most of the code...

>
> You can open on your server something like :
> tail -F /var/log/syslog | fgrep -i cancel

this it's ok
>
> And post on a *.test with a server and cancel on another server.
>
this I not sure what to do. have to learn

sorry, Julien, I wasn't expecting to hack your post like this :-(

jdd

Re: Requirement specifications for a tool for news admin cancels

<sutpdr$qge$1@rasp.pasdenom.info>

 copy mid

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

 copy link   Newsgroups: news.software.nntp
Path: i2pn2.org!i2pn.org!paganini.bofh.team!pasdenom.info!.POSTED.2a01:e0a:21:ea80:8c5e:af88:67a7:ff9a!not-for-mail
From: yam...@beurdin.invalid (yamo')
Newsgroups: news.software.nntp
Subject: Re: Requirement specifications for a tool for news admin cancels
Date: Sun, 20 Feb 2022 17:14:51 +0100
Organization: Serveur de salon
Message-ID: <sutpdr$qge$1@rasp.pasdenom.info>
References: <surrl2$24cfe$1@news.trigofacile.com>
Reply-To: yamo@groumpf.org
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 20 Feb 2022 16:14:51 -0000 (UTC)
Injection-Info: rasp.pasdenom.info; posting-account="stephane"; posting-host="2a01:e0a:21:ea80:8c5e:af88:67a7:ff9a";
logging-data="27150"; mail-complaints-to="abuse@pasdenom.info"
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101
Firefox/68.0 SeaMonkey/2.53.10.2
Cancel-Lock: sha256:K5pFIqnHZ36FXFK5qNa1coEF9XOLOY5ne3iCnPoYTEw=
X-Seamonkey: <https://www.seamonkey-project.org/>
In-Reply-To: <surrl2$24cfe$1@news.trigofacile.com>
 by: yamo' - Sun, 20 Feb 2022 16:14 UTC

Hi Julien,

Julien ÉLIE a tapoté le 19/02/2022 23:40:
> That's why I think this basic gencancel should normally fit most (if not all) needs.
> But I prefer to ask here, in case I missed something important.
> So, do you think this proposal is enough for the needs of news admins?
> Otherwise, what would you need?

I think it is really a good work!

Best regards,

--
Stéphane

1
server_pubkey.txt

rocksolid light 0.9.7
clearnet tor