搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Cannot import GPG key from Kleopatra into Thunderbird 102.3.1 on Fedora 36

  • 1 个回答
  • 0 人有此问题
  • 1 次查看
  • 最后回复者为 Bean-Spoil

more options

Hey all -

I cannot import a GPG key that I exported from Kleopatra (version 3.1.22.220801) into Thunderbird 102.3.1 on Fedora 36. I don't know why, but... I deleted my GPG key from Thunderbird to import my new one that had an expiry date extended further into the future. I guess... I just... assumed... that Thunderbird could import a basic text file to get my public-private key pair imported, but...

Guys, I gotta admit, Enigmail was a far, FAR better user experience than this, and it's been this way for months. Basic stuff, like accurately showing MY OWN correctly-signed emails, to randomly deciding to start encrypting emails even though I have no keys other than my own imported into Thunderbird (and not anymore), to being unable to import a simple, basic, GPG key in text format.

C'mon.

Hey all - I cannot import a GPG key that I exported from Kleopatra (version 3.1.22.220801) into Thunderbird 102.3.1 on Fedora 36. I don't know why, but... I deleted my GPG key from Thunderbird to import my new one that had an expiry date extended further into the future. I guess... I just... assumed... that Thunderbird could import a basic text file to get my public-private key pair imported, but... Guys, I gotta admit, Enigmail was a far, FAR better user experience than this, and it's been this way for months. Basic stuff, like accurately showing MY OWN correctly-signed emails, to randomly deciding to start encrypting emails even though I have no keys other than my own imported into Thunderbird (and not anymore), to being unable to import a simple, basic, GPG key in text format. C'mon.

所有回复 (1)

more options

Figured it out, not sure why Thunderbird didn't like it, but:

Run Kleopatra, changed the expiry date of ALL certificates in the chain:

  1. Double left-click the GPG key you wish to change the expiry date on, in Kleopatra's main certificates list.
  2. Left-click the "More Details..." button in the bottom left corner of the OpenPGP Certificate window.
  3. For each key listed in the "Subkeys Details" window, right-click "Change Expiry Date...", and determine at what point in the future you want the keys to expire (I wouldn't go past two years, you might want to regenerate your keys with more robust encryption algorithms or key sizes in the future)

Use the `gpg` command to export your public and secret keys:

  1. Run the command: `gpg --list-keys`
  2. Run the command: `gpg --list-secret-keys`
  3. Note the text following the term "uid" from the command outputs, you'll see something like this:

uid [ultimate] John Doe <[email protected]>

  1. Run the command: `gpg --export -a "John Doe <[email protected]>" > Documents/jdoe-pgp-public.asc`
  2. Run the command: `gpg --export-secret-key -a "John Doe <[email protected]>" > Documents/jdoe-pgp-private.asc`
  3. Run the command: `cat Documents/jdoe-pgp-public.asc Documents/jdoe-pgp-private.asc > Documents/jdoe-pgp-public-private.asc`

Thunderbird will import that final certificate (the file "Documents/jdoe-pgp-public-private.asc") just fine.

This article is helpful: https://linuxhint.com/export-import-keys-with-gpg/