aboutsummaryrefslogtreecommitdiffstats
path: root/doc/faq.raw
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2009-02-19 16:19:16 +0000
committerWerner Koch <[email protected]>2009-02-19 16:19:16 +0000
commit310f45b61891d65c6e3f1950919d259b4c623e55 (patch)
treec25b4617b86f9a05e979b9364dc217bf4e5e8905 /doc/faq.raw
parentNew scd getinfo subcommand deny_admin (diff)
downloadgnupg-310f45b61891d65c6e3f1950919d259b4c623e55.tar.gz
gnupg-310f45b61891d65c6e3f1950919d259b4c623e55.zip
Fix bug 1001.
Documentation updates.
Diffstat (limited to 'doc/faq.raw')
-rw-r--r--doc/faq.raw12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/faq.raw b/doc/faq.raw
index 9dd5fb368..640beee90 100644
--- a/doc/faq.raw
+++ b/doc/faq.raw
@@ -1326,6 +1326,18 @@ you could search in the mailing list archive.
timestamp of the self-signature is increased by one second when
running this command.
+<Q> How can I import all the missing signer keys?
+
+ If you imported a key and you want to also import all the signer's
+ keys, you can do this with this command:
+
+ gpg --check-sigs --with-colon KEYID \
+ | awk -F: '$1 == "sig" && $2 == "?" { print $5 }' \
+ | sort | uniq | xargs echo gpg --recv-keys
+
+ Note that the invocation of sort is also required to wait for the
+ of the listing before before starting the import.
+
<S> ACKNOWLEDGEMENTS