diff options
author | Werner Koch <[email protected]> | 2018-04-23 07:23:41 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-04-23 07:23:41 +0000 |
commit | d2ad715441a960ec1e7584022c18042269436812 (patch) | |
tree | de30d8de05d75bfa56bf1db307af2f955aedd9f7 | |
parent | Revert "po: correct label tags in Polish translation" (diff) | |
download | gnupg-d2ad715441a960ec1e7584022c18042269436812.tar.gz gnupg-d2ad715441a960ec1e7584022c18042269436812.zip |
doc: Update NEWS and add an example to gpg.texi.
--
-rw-r--r-- | NEWS | 16 | ||||
-rw-r--r-- | doc/gpg.texi | 8 |
2 files changed, 23 insertions, 1 deletions
@@ -7,6 +7,18 @@ Noteworthy changes in version 2.2.7 (unreleased) * gpg: The ERRSIG status now prints the fingerprint if that is part of the signature. + * gpg: Relax emitting of FAILURE status lines + + * gpg: Add a status flag to "sig" lines printed with --list-sigs. + + * ssh: Return an error for unknown ssh-agent flags. [#3880] + + * agent,dirmngr: New sub-command "getenv" for "getinfo" to ease + debugging. + + * dirmngr: Fix a regression since 2.1.16 which caused corrupted CRL + caches under Windows. [#2448,#3923] + Noteworthy changes in version 2.2.6 (2018-04-09) ------------------------------------------------ @@ -54,6 +66,8 @@ Noteworthy changes in version 2.2.6 (2018-04-09) * Allow the use of UNC directory names as homedir. [#3818] + See-also: gnupg-announce/2018q2/000421.html + Noteworthy changes in version 2.2.5 (2018-02-22) ------------------------------------------------ @@ -99,6 +113,8 @@ Noteworthy changes in version 2.2.5 (2018-02-22) with statically linked versions of the core GnuPG libraries. Also use --enable-wks-tools by default by Speedo builds for Unix. + See-also: gnupg-announce/2018q1/000420.html + Noteworthy changes in version 2.2.4 (2017-12-20) ------------------------------------------------ diff --git a/doc/gpg.texi b/doc/gpg.texi index 908af7b03..2888050a7 100644 --- a/doc/gpg.texi +++ b/doc/gpg.texi @@ -3263,8 +3263,14 @@ print the public key data. Same as @option{--list-keys}, but the signatures are listed too. This command has the same effect as using @option{--list-keys} with @option{--with-sig-list}. Note that in contrast to -@option{--check-signatures} the key signatures are not verified. +@option{--check-signatures} the key signatures are not verified. This +command can be used to create a list of signing keys missing in the +lcoal keyring; for example: +@example + gpg --list-sigs --with-colons USERID | \ + awk -F: '$1=="sig" && $2=="?" @{if($13)@{print $13@}else@{print $5@}@}' +@end example @item --fast-list-mode @opindex fast-list-mode |