GPG guide: add mentioning of import-clean.

This commit is contained in:
Mikaela Suomalainen 2012-07-31 10:00:27 +03:00
parent ab6d8384c2
commit 759855c250
2 changed files with 12 additions and 4 deletions

View File

@ -111,12 +111,16 @@ sub 4096R/A4271AC5 2012-03-27</code></pre>
encrypt-to KEYID</code></pre> encrypt-to KEYID</code></pre>
<p>So everything what you encrypt is also encrypted to you.</p> <p>So everything what you encrypt is also encrypted to you.</p>
<blockquote> <blockquote>
<p>keyid-format 0xLONG</p>
</blockquote>
<p>So keyids are shown in the longest format, including 0x prefix, which marks them as hexadecimanls.</p>
<blockquote>
<p>charset UTF-8</p> <p>charset UTF-8</p>
</blockquote> </blockquote>
<p>So UTF-8 is used as default character set and most of characters can be used.</p> <p>So UTF-8 is used as default character set and most of characters can be used.</p>
<pre><code>keyserver hkp://pool.sks-keyservers.net <pre><code>keyserver hkp://pool.sks-keyservers.net
keyserver-options auto-key-retrieve no-include-revoked verbose</code></pre> keyserver-options auto-key-retrieve no-include-revoked verbose import-clean</code></pre>
<p>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.</p> <p>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.</p>
<p>By the way, you can find my gpg.conf <a href="https://raw.github.com/Mkaysi/shell-things/master/gnupg/gpg.conf">here</a>.</p> <p>By the way, you can find my gpg.conf <a href="https://raw.github.com/Mkaysi/shell-things/master/gnupg/gpg.conf">here</a>.</p>
<h4 id="group-lines">Group lines</h4> <h4 id="group-lines">Group lines</h4>
<p>Group lines are a way to write email to one recepient and have it encrypted to multiple keys automatically.</p> <p>Group lines are a way to write email to one recepient and have it encrypted to multiple keys automatically.</p>

View File

@ -172,16 +172,20 @@ encrypt-to KEYID
So everything what you encrypt is also encrypted to you. 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 > charset UTF-8
So UTF-8 is used as default character set and most of characters can be used. So UTF-8 is used as default character set and most of characters can be used.
``` ```
keyserver hkp://pool.sks-keyservers.net 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]. By the way, you can find my gpg.conf [here].