From 759855c250f0a8de18e60d5426cfbf87bc653470 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Tue, 31 Jul 2012 10:00:27 +0300 Subject: [PATCH] GPG guide: add mentioning of import-clean. --- articles/guides/GPG/GPG.html | 8 ++++++-- articles/guides/GPG/GPG.html.md | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/articles/guides/GPG/GPG.html b/articles/guides/GPG/GPG.html index 115243d..6d636c4 100644 --- a/articles/guides/GPG/GPG.html +++ b/articles/guides/GPG/GPG.html @@ -111,12 +111,16 @@ sub 4096R/A4271AC5 2012-03-27 encrypt-to KEYID

So everything what you encrypt is also encrypted to you.

+

keyid-format 0xLONG

+
+

So keyids are shown in the longest format, including 0x prefix, which marks them as hexadecimanls.

+

charset UTF-8

So UTF-8 is used as default character set and most of characters can be used.

keyserver hkp://pool.sks-keyservers.net
-keyserver-options auto-key-retrieve no-include-revoked verbose
-

So default keyserver is specified and unknown keys are always received when something what requires missing key is procressses and revoked keys aren't included in search results and verbose output is used.

+keyserver-options auto-key-retrieve no-include-revoked verbose import-clean +

So default keyserver is specified and unknown keys are always received when something what requires missing key is procressses and revoked keys aren't included in search results and verbose output is used and signatures by unknown keys are automatically removed.

By the way, you can find my gpg.conf here.

Group lines

Group lines are a way to write email to one recepient and have it encrypted to multiple keys automatically.

diff --git a/articles/guides/GPG/GPG.html.md b/articles/guides/GPG/GPG.html.md index 25b57d4..7729f74 100644 --- a/articles/guides/GPG/GPG.html.md +++ b/articles/guides/GPG/GPG.html.md @@ -172,16 +172,20 @@ encrypt-to KEYID So everything what you encrypt is also encrypted to you. +> keyid-format 0xLONG + +So keyids are shown in the longest format, including 0x prefix, which marks them as hexadecimanls. + > charset UTF-8 So UTF-8 is used as default character set and most of characters can be used. ``` keyserver hkp://pool.sks-keyservers.net -keyserver-options auto-key-retrieve no-include-revoked verbose +keyserver-options auto-key-retrieve no-include-revoked verbose import-clean ``` -So default keyserver is specified and unknown keys are always received when something what requires missing key is procressses and revoked keys aren't included in search results and verbose output is used. +So default keyserver is specified and unknown keys are always received when something what requires missing key is procressses and revoked keys aren't included in search results and verbose output is used and signatures by unknown keys are automatically removed. By the way, you can find my gpg.conf [here].