Sujet : Re: problème nocem/gpg
De : schaefer (at) *nospam* alphanet.ch (Marc SCHAEFER)
Groupes : fr.comp.usenet.serveursDate : 02. Feb 2022, 17:15:11
Autres entêtes
Organisation : Posted through ALPHANET
Message-ID : <steamf$k45$1@shakotay.alphanet.ch>
References : 1 2 3 4 5
User-Agent : tin/2.4.3-20181224 ("Glen Mhor") (UNIX) (Linux/4.19.0-18-amd64 (x86_64))
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);
}