aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-pgp-context.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-07-06 04:07:46 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-07-06 04:07:46 +0800
commitea4d1ae39e1e9ac76c02fcc0fb881a946ce70a45 (patch)
tree5aa72a9ba73e43a50d627391465e734a20849f2e /camel/camel-pgp-context.c
parentd07621da7b3e5817654d558907ba9ecfc86202ac (diff)
downloadgsoc2013-evolution-ea4d1ae39e1e9ac76c02fcc0fb881a946ce70a45.tar
gsoc2013-evolution-ea4d1ae39e1e9ac76c02fcc0fb881a946ce70a45.tar.gz
gsoc2013-evolution-ea4d1ae39e1e9ac76c02fcc0fb881a946ce70a45.tar.bz2
gsoc2013-evolution-ea4d1ae39e1e9ac76c02fcc0fb881a946ce70a45.tar.lz
gsoc2013-evolution-ea4d1ae39e1e9ac76c02fcc0fb881a946ce70a45.tar.xz
gsoc2013-evolution-ea4d1ae39e1e9ac76c02fcc0fb881a946ce70a45.tar.zst
gsoc2013-evolution-ea4d1ae39e1e9ac76c02fcc0fb881a946ce70a45.zip
Send the --no-auto-key-retrieve argument to gpg so that we don't have to
2001-07-05 Jeffrey Stedfast <fejj@ximian.com> * camel-pgp-context.c (pgp_verify): Send the --no-auto-key-retrieve argument to gpg so that we don't have to worry about gpg hanging if it can't connect to the key servers, because now it shouldn't even attempt to. svn path=/trunk/; revision=10827
Diffstat (limited to 'camel/camel-pgp-context.c')
-rw-r--r--camel/camel-pgp-context.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/camel-pgp-context.c b/camel/camel-pgp-context.c
index a3945a22fe..6651b0b3d6 100644
--- a/camel/camel-pgp-context.c
+++ b/camel/camel-pgp-context.c
@@ -901,6 +901,7 @@ pgp_verify (CamelCipherContext *ctx, CamelCipherHash hash, CamelStream *istream,
argv[i++] = "--verify";
argv[i++] = "--no-tty";
+ argv[i++] = "--no-auto-key-retrieve";
/*argv[i++] = "--verbose";*/
/*argv[i++] = "--yes";*/
/*argv[i++] = "--batch";*/