1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Use command gpg (not gpg2)
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2019-07-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/config.cc
+++ b/src/config.cc
@@ -293,7 +293,7 @@
default_config.put ("thread_view.expand_flagged", true);
/* crypto */
- default_config.put ("crypto.gpg.path", "gpg2");
+ default_config.put ("crypto.gpg.path", "gpg");
default_config.put ("crypto.gpg.always_trust", true);
default_config.put ("crypto.gpg.enabled", true);
|