WHERE char *C_Attribution; ///< Config: Message to start a reply, "On DATE, PERSON wrote:"
WHERE char *C_AttributionLocale; ///< Config: Locale for dates in the attribution message
WHERE char *C_AttachFormat; ///< Config: printf-like format string for the attachment menu
+#ifdef USE_AUTOCRYPT
+WHERE char *C_AutocryptDir;
+#endif
WHERE char *C_ConfigCharset; ///< Config: Character set that the config files are in
WHERE char *C_CryptProtectedHeadersSubject; ///< Config: Use this as the subject for encrypted emails
WHERE char *C_DateFormat; ///< Config: strftime format string for the `%d` expando
WHERE bool C_AsciiChars; ///< Config: Use plain ASCII characters, when drawing email threads
WHERE bool C_Askbcc; ///< Config: Ask the user for the blind-carbon-copy recipients
WHERE bool C_Askcc; ///< Config: Ask the user for the carbon-copy recipients
+#ifdef USE_AUTOCRYPT
+WHERE bool C_Autocrypt;
+#endif
WHERE bool C_Autoedit; ///< Config: Skip the initial compose menu and edit the email
WHERE bool C_AutoTag; ///< Config: Automatically apply actions to all tagged messages
WHERE bool C_Beep; ///< Config: Make a noise when an error occurs
** unset, you must first use the \fC<tag-prefix>\fP function (bound to ";"
** by default) to make the next function apply to all tagged messages.
*/
+#ifdef USE_AUTOCRYPT
+ { "autocrypt", DT_BOOL, &C_Autocrypt, false },
+ /*
+ ** .pp
+ ** When \fIset\fP, enables autocrypt, https://autocrypt.org/, which provides
+ ** passive encryption protection with keys exchanged via headers.
+ ** TODO: add a section in the manual describing this is more detail.
+ */
+ { "autocrypt_dir", DT_STRING|DT_PATH, &C_AutocryptDir, IP "~/.mutt/autocrypt" },
+ /*
+ ** .pp
+ ** This variable sets where autocrypt files are stored, including the GPG
+ ** keyring and sqlite database.
+ */
+#endif
{ "autoedit", DT_BOOL, &C_Autoedit, false },
/*
** .pp