Troubleshooting

How to fix continuous requests for passphrase

If you have to enter your passphrase every time you select an encrypted mail, or try to write a signed…

If you have to enter your passphrase every time you select an encrypted mail, or try to write a signed mail, then you need to adjust the configuration of gpg-agent.

If you are on Linux, Mac OS X, or any other Unix-like system:

Add the following line to $HOME/.gnupg/gpg-agent.conf:

use-standard-socket

Then reboot your computer.

If you are on Windows:

Add the following line to C:\Users\<your login>\AppData\Roaming\gnupg\gpg-agent.conf:

use-standard-socket

Then reboot your computer.

 

Posted  8 years  ago by  patrick

Can Enigmail be used without gpg-agent?

gpg-agent is a mandatory component of GnuPG 2.x. That's a design decision taken by the GnuPG developers, which cannot be…

gpg-agent is a mandatory component of GnuPG 2.x. That's a design decision taken by the GnuPG developers, which cannot be influenced by Enigmail. It is not possible to use GnuPG 2.x without gpg-agent.

Posted  8 years  ago by  patrick

Resolving issues with GnuPG 2.x and gpg-agent

GnuPG 2.x requires an "agent" to handle passphrases. By default this is done by gpg-agent, but there are other tools…

GnuPG 2.x requires an "agent" to handle passphrases. By default this is done by gpg-agent, but there are other tools implementing a subset of its functionality. These instructions are for gpg-agent only. If you use an agent like gnome-keyring, seahorse-agent or the KDE Wallet Manager, then these instructions don't apply.

Most common Problem

Symptoms

The most common issue is that gpg-agent (a part of GnuPG) cannot launch pinentry (the tool used to query your passphrase). Enigmail would display messages like:

  • when reading messages:
    Error - no matching private/secret key found to decrypt message; click on 'Details' button for more information

  • when sending messages:
    - Send operation aborted. Error - encryption command failed
    - Send operation aborted. Key 0x....... not found or not valid. The (sub-)key might have expired

How to Analyze

  1. Try sending a signed and unencrypted message to yourself.
  2. Check the output in the Enimgail log: go to menu Enigmail > Debugging Options > View Log.
  3. If you can't see the Debugging Options menu, go to Menu EnigmailPreferences and click on Display Expert Settings and Menus and repeat step 2.
  4. Search for the following text: parseErrorOutput: status message. You will probably find this message several times. Check what follows below.
  5. If the message contains "WARNING: The GNOME keyring manager hijacked the GnuPG agent", then follow the GnuPG guide to disable GNOME keyring.
  6. If the message says something like "no pinentry", "problem with the agent", "Invalid IPC response", "problem with gpg-agent" then there is something wrong with your gpg-agent and/or pinentry setup. Follow the guide below.

How to Fix it

    1. Execute the following script from a terminal to find out if a graphical version of pinentry is used:
      pinentry <<EOT
      SETDESC Hello World
      CONFIRM
      EOT
    2. You should get a graphical window with a confirmation message "Hello World". If a "window" is opened within your terminal window then pinentry is text-based, which does not work with Enigmail. To fix this, ensure that a graphical version of pinentry is installed. On Linux/Unix systems, these would typically be pinentry-qt/pinentry-qt4 or pinentry-gtk/pinentry-gtk2, and on Mac OS X pinentry-mac. Rename the existing pinentry file to "pinentry-text" or similar, and create a symlink from pinentry-qt, pinentry-qt4, pinentry-gtk, pinentry-gtk2 or pinentry-mac to pinentry. Then restart your PC.

    3. If the above does not help, check the contents of $HOME/.gnupg/gpg-agent.conf. Make sure that there is a configuration entry pinentry-program containing the full path to a graphical version of pinentry as above. E.g.:

      pinentry-program /usr/local/bin/pinentry-gtk

      Then save the file and restart your PC.

    4. If you still can't access your key, then execute the following script from a terminal:

      gpg-connect-agent <<EOT
      GETINFO version
      EOT

      The output should be something like the text below, where 2.0.26 represents the agent version number. The version number should match your gpg version number:

      D 2.0.26
      OK

      If you get an error message like "ERR 280 not implemented" then you don't use gpg-agent, but one of the alternatives like gnome-keyring. We recommend you switch to gpg-agent by disabling your current agent by disabling the invalid agent. See e.g. the GnuPG wiki for how to disable gnome-keyring or how to disable KDE wallet. Then restart you PC and check if the script now produces a correct result.

    5. If the previous step was not successful, and you are using an Ubuntu or similar Linux distribution (e.g. Linux Mint), then you should add the following line to your $HOME/.gnupg/gpg.conf file:
      use-agent

      Then restart your PC and repeat the test from step 4.

    6. If steps 4/5 are successful, then execute the following script from a terminal:

      gpg-connect-agent <<EOT
      GET_CONFIRMATION Hello
      EOT

      Pinentry should now open as a graphical window (just like above), with the difference to the step above that this instance of pinentry was launched from gpg-agent. If this is successful, then GnuPG 2 should work correctly in Enigmail.

    7. If gpg-agent still cannot launch pinentry from Enigmail, then you need to start debugging gpg-agent. Execute the following commands from a terminal:

      killall gpg-agent
      gpg-agent --debug-level expert --use-standard-socket --daemon /bin/sh
      

      This will start gpg-agent from the command line, open a new shell and print the debug output to that shell. If the command succeeded, you will see somehting like:
      gpg-agent[76979]: gpg-agent 2.0.26 started
      Leave the terminal window untouched, start Thunderbird and try to use Enigmail. As you'll try to access gpg-agent, you will see the output in your terminal window. If gpg-agent cannot start pinentry successfully, you will see something like this:

      gpg-agent[76993]: starting a new PIN Entry
      gpg-agent[76993]: chan_19 <- ERR 67109133 can't exec `/usr/bin/pinentry': No such file or directory
      gpg-agent[76993]: chan_19 -> BYE
      gpg-agent[76993]: can't connect to the PIN entry module: IPC connect call failed
      gpg-agent[76993]: command get_passphrase failed: No pinentry

      Press Ctrl+D in the terminal to end the debugging session. The bold line should tell you the reason for the error (in the example above, pinentry cannot be found). Try to fix the error and repeat the test.

    8. If all of the above doesn't help, then get help at our mailing list or our support forum.

 

Posted  8 years  ago by  patrick