mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 11:58:10 +01:00
Drop deprecated/unused crypto.gpg_path
crypto.gpg_path was only used when we built against gmime versions before 3.0. Since we now depend on gmime 3.0.3 or later, it is meaningless. The removal of the field from the _notmuch_config struct would be an ABI change if that struct were externally exposed, but it is not, so it's safe to unilaterally remove it. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
This commit is contained in:
parent
c17fca40e2
commit
018ad3703b
3 changed files with 0 additions and 11 deletions
|
@ -78,8 +78,6 @@ def maildir(tmppath):
|
||||||
exclude_tags=deleted;spam;
|
exclude_tags=deleted;spam;
|
||||||
[maildir]
|
[maildir]
|
||||||
synchronize_flags=true
|
synchronize_flags=true
|
||||||
[crypto]
|
|
||||||
gpg_path=gpg
|
|
||||||
""".format(tmppath=tmppath)))
|
""".format(tmppath=tmppath)))
|
||||||
return MailDir(tmppath)
|
return MailDir(tmppath)
|
||||||
|
|
||||||
|
|
|
@ -134,14 +134,6 @@ The available configuration items are described below.
|
||||||
|
|
||||||
Default: ``true``.
|
Default: ``true``.
|
||||||
|
|
||||||
**crypto.gpg_path**
|
|
||||||
Name (or full path) of gpg binary to use in verification and
|
|
||||||
decryption of PGP/MIME messages. NOTE: This configuration item is
|
|
||||||
deprecated, and will be ignored if notmuch is built against GMime
|
|
||||||
3.0 or later.
|
|
||||||
|
|
||||||
Default: ``gpg``.
|
|
||||||
|
|
||||||
**index.decrypt** **[STORED IN DATABASE]**
|
**index.decrypt** **[STORED IN DATABASE]**
|
||||||
Policy for decrypting encrypted messages during indexing. Must be
|
Policy for decrypting encrypted messages during indexing. Must be
|
||||||
one of: ``false``, ``auto``, ``nostash``, or ``true``.
|
one of: ``false``, ``auto``, ``nostash``, or ``true``.
|
||||||
|
|
|
@ -119,7 +119,6 @@ struct _notmuch_config {
|
||||||
bool is_new;
|
bool is_new;
|
||||||
|
|
||||||
char *database_path;
|
char *database_path;
|
||||||
char *crypto_gpg_path;
|
|
||||||
char *user_name;
|
char *user_name;
|
||||||
char *user_primary_email;
|
char *user_primary_email;
|
||||||
const char **user_other_email;
|
const char **user_other_email;
|
||||||
|
|
Loading…
Reference in a new issue