diff options
author | Werner Koch <wk@gnupg.org> | 2020-10-05 17:24:57 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2020-10-05 17:25:24 +0200 |
commit | 210575d8826ea61e4914e4b61eff7b875c972b85 (patch) | |
tree | 5a9bbed2552921bb5600528a08e10d98791d7f70 /dirmngr | |
parent | gpg: Switch to ed25519+cv25519 as default algo. (diff) | |
download | gnupg2-210575d8826ea61e4914e4b61eff7b875c972b85.tar.xz gnupg2-210575d8826ea61e4914e4b61eff7b875c972b85.zip |
dirmngr: Add warning on the use of --add-servers.
* tools/gpgconf-comp.c (known_options_dirmngr): Degrade add-servers to
expert mode.
Diffstat (limited to 'dirmngr')
-rw-r--r-- | dirmngr/ldap.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dirmngr/ldap.c b/dirmngr/ldap.c index ad6b0889b..a9913cbe7 100644 --- a/dirmngr/ldap.c +++ b/dirmngr/ldap.c @@ -433,7 +433,12 @@ make_url (char **url, const char *dn, const char *filter) gpg_error_t err; char *u_dn, *u_filter; char const attrs[] = (USERCERTIFICATE "," -/* USERSMIMECERTIFICATE "," */ + /* In 2005 wk mentioned in the changelog that + * work on the userSMIMECertificate has + * started but it seems that no further + * progress was made or the whole thing was + * simply forgotten. */ + /* USERSMIMECERTIFICATE "," */ CACERTIFICATE "," X509CACERT ); |