Mercurial > hg > Blog
changeset 51:b334d87a9c9a
add a blog post about pinentry vs enigmail
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Tue, 09 Dec 2014 12:19:59 +0100 |
parents | 20df0a3bcdf1 |
children | 94cc5f43d9d1 |
files | content/Linux/enigmail-vs-pinentry.md |
diffstat | 1 files changed, 21 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/Linux/enigmail-vs-pinentry.md Tue Dec 09 12:19:59 2014 +0100 @@ -0,0 +1,21 @@ +Title: enigmail vs. pinentry +Date: 2014-12-09 +Lang: en + +I recently got a new Laptop and installed it with [Gentoo](http://www.gentoo.org) 64 bit. Along the process I had a hard time getting [Thunderbird](https://www.mozilla.org/en-US/thunderbird/), the [enigmail](https://enigmail.net/home/index.php) plugin and [gnupg](https://www.gnupg.org/) to play together nicely. + +I had everything set up correctly (or so I thought) and the proper keys in place. But kept getting strange error messages from enigmail about missing passwords. + +After hours of pointless poking around I found the culprit: gpg is trying to request passphrases via `/usr/bin/pinentry` but I did not even have a pinentry package installed. + +So as a hint for anyone who may stuble over the same problem as I did: + + emerge app-crypt/pinentry + +and dont' forget to enable one of the GUI keywords e.g. `gtk` or `qt`. To make sure that the pinentry link points to the correct binary run + + eselect pinentry list + +and select the correct variant. + +Enjoy sending gpg secured mails!