summaryrefslogtreecommitdiffstats
path: root/init.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-06-08 20:05:39 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-06-08 20:05:39 +0000
commit90bea32a9b22777b4b32e787661aa532c7d77fc2 (patch)
treec440dc034d44d8b7c95073cc80b7a3f3b3b6c219 /init.h
parent6f8d5623a93d23e714f3252ab1bca02b9fc3bc86 (diff)
GPG support, first take.
Diffstat (limited to 'init.h')
-rw-r--r--init.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/init.h b/init.h
index 5f5e9df6..452b4988 100644
--- a/init.h
+++ b/init.h
@@ -177,21 +177,27 @@ struct option_t MuttVars[] = {
{ "pgp_v5_pubring", DT_PATH, R_NONE, UL &PgpV3Pubring, 0 },
{ "pgp_v5_secring", DT_PATH, R_NONE, UL &PgpV3Secring, 0 },
+ { "pgp_gpg", DT_PATH, R_NONE, UL &PgpGpg, 0 },
+
# ifdef HAVE_PGP2
{ "pgp_default_version", DT_STR, R_NONE, UL &PgpDefaultVersion, UL "pgp2" },
# else
# ifdef HAVE_PGP5
{ "pgp_default_version", DT_STR, R_NONE, UL &PgpDefaultVersion, UL "pgp5" },
+# else
+# ifdef HAVE_GPG
+ { "pgp_default_version", DT_STR, R_NONE, UL &PgpDefaultVersion, UL "gpg" },
+# endif
# endif
# endif
{ "pgp_receive_version", DT_STR, R_NONE, UL &PgpReceiveVersion, UL "default" },
{ "pgp_send_version", DT_STR, R_NONE, UL &PgpSendVersion, UL "default" },
{ "pgp_key_version", DT_STR, R_NONE, UL &PgpKeyVersion, UL "default" },
-
+
#endif /* _PGPPATH */
-
-
+
+
{ "pipe_split", DT_BOOL, R_NONE, OPTPIPESPLIT, 0 },
{ "pipe_decode", DT_BOOL, R_NONE, OPTPIPEDECODE, 0 },
{ "pipe_sep", DT_STR, R_NONE, UL &PipeSep, UL "\n" },