Deutsch   English   Français   Italiano  
<steamf$k45$1@shakotay.alphanet.ch>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!weretis.net!feeder8.news.weretis.net!news.imp.ch!news.alphanet.ch!alphanet.ch!.POSTED.localhost!not-for-mail
From: Marc SCHAEFER <schaefer@alphanet.ch>
Newsgroups: fr.comp.usenet.serveurs
Subject: Re: =?ISO-8859-1?Q?probl=E8me?= nocem/gpg
Date: Wed, 2 Feb 2022 16:15:11 -0000 (UTC)
Organization: Posted through ALPHANET
Message-ID: <steamf$k45$1@shakotay.alphanet.ch>
References: <stdpfg$1kf$1@ns507557.dodin.fr.nf> <stdqm5$qqj$1@shakotay.alphanet.ch> <stduea$5jt$1@ns507557.dodin.fr.nf> <ste1rt$sgk$2@shakotay.alphanet.ch> <ste83d$cci$1@ns507557.dodin.fr.nf>
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Injection-Date: Wed, 2 Feb 2022 16:15:11 -0000 (UTC)
Injection-Info: shakotay.alphanet.ch; posting-host="localhost:127.0.0.1";
	logging-data="20613"; mail-complaints-to="usenet@alphanet.ch"
User-Agent: tin/2.4.3-20181224 ("Glen Mhor") (UNIX) (Linux/4.19.0-18-amd64 (x86_64))
Cancel-Lock: sha256:aXderTu/oSncg/cF06meqT9abSoTdDXOa8MBO+fAU4s=
Bytes: 2494
Lines: 34

jdd <jdd@dodin.org> wrote:
> j'en ai trois, rajouter && 0 ?? à chaque?

non, juste celui à la ligne 289.

Voici en contextuel:

T'as aussi le debug en plus que tu peux utiliser :)

--- /usr/lib/news/bin/perl-nocem.distrib        2019-10-06 00:51:59.000000000 +0200
+++ /usr/lib/news/bin/perl-nocem        2021-12-02 14:34:33.368642963 +0100
@@ -194,6 +194,7 @@
 #        return;
 #    }
 
+
     # We do want it, so read the entire article.  Also copy it to
     # a temp file so that we can check the PGP signature when done.
     my $tmpfile = "$INN::Config::pathtmp/nocem.$$";
@@ -286,11 +287,13 @@
     }
     if ($pid == 0) {
         open(STDERR, '>&STDOUT');
-        if ($INN::Config::gpg) {
+        if ($INN::Config::gpg && 0 ) {
+            #logmsg("using " . $INN::Config::gpg . " --verify --allow-weak-digest-algos --status-fd=1 --keyring=" . $keyring . " " . $art, 'debug');
             exec($INN::Config::gpg, '--status-fd=1',
                 '--verify', '--allow-weak-digest-algos',
                 $keyring ? '--keyring=' . $keyring : '', $art);
         } else {
+            #logmsg("using " . $INN::Config::gpgv . " --status-fd=1 --keyring=" . $keyring . " " . $art, 'debug');
             exec($INN::Config::gpgv, '--status-fd=1',
                 $keyring ? '--keyring=' . $keyring : '', $art);
         }