LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Enigmail on Thunderbird with GnuPG keys (https://www.linuxquestions.org/questions/linux-software-2/enigmail-on-thunderbird-with-gnupg-keys-267316/)

Cyb3rKnyght 12-17-2004 03:00 AM

Enigmail on Thunderbird with GnuPG keys
 
I have a question regarding Enigmail on Thunderbird with GnuPG. I can generate my key for my email address. How do I go about viewing my public key so that I can send them to the key servers? Is it stored somewhere in my /home folder?

carboncopy 12-17-2004 09:44 AM

You do not have to use Enigmail to do that. In fact I am not sure how to do that with Enigmail.

Use gpg commands (command line)
Code:

gpg --keyserver pgp.mit.edu --send-keys YOURID
man gpg for more details:
Code:

--send-keys [names]
                Same  as  --export but sends the keys to a keyserver.  Option
                --keyserver must be used to give the name of this  keyserver.
                Don't send your complete keyring to a keyserver - select only
                those keys which are new or changed by you.

And also read the first chapter of the manual available on gnupg website.

Alternative to command line sending. You can summit your public key via web interface. Just do a search on pgp keyserver. And click any of them. The gnupg handbook on this: http://www.gnupg.org/gph/en/manual.html#AEN65

on your machine
Code:

gpg --armor --export USERID >> USERID_publickey.txt
and submit the content of the file to the pgp keyserver.


All times are GMT -5. The time now is 01:53 PM.