From: Jonathan McDowell Date: Wed, 1 Nov 2006 13:32:36 +0000 (+0000) Subject: Explicitly give --verify command to GPG. X-Git-Url: https://the.earth.li/gitweb/?p=autodns.git;a=commitdiff_plain;h=764aa0aa77e52fffb8d632760489b3b8cc61db4e Explicitly give --verify command to GPG. We didn't explicitly say --verify for clear signed emails; do so. git-archimport-id: noodles@earth.li--pie/autodns--mainline--1.0--patch-17 --- diff --git a/autodns.pl b/autodns.pl index fa4e09b..ddb237c 100755 --- a/autodns.pl +++ b/autodns.pl @@ -252,7 +252,7 @@ if ($entity->parts) { } else { # Clear text. - my $pid = open3(\*GPGIN, \*GPGOUT, \*GPGERR, "gpg --batch"); + my $pid = open3(\*GPGIN, \*GPGOUT, \*GPGERR, "gpg --batch --verify"); # Feed it the mail. print GPGIN $entity->bodyhandle->as_string;