On Thu, Sep 18 2014, Sergio Durigan Junior wrote: > I use EasyPG (with gpg-agent) + Gnus, like many others, I believe. > However, there's one thing that I can't do: make Gnus (or epg, for that > matter) prompt me only once for the passphrase and then make gpg-agent > cache it. What happens instead is that whenever I open an encrypted > message, I see the passphrase prompt in the minibuffer. Just some ideas: - Keep passphrase in ram forever, put these lines in ~/.gnupg/gpg-agent.conf: default-cache-ttl 99999999 max-cache-ttl 99999999 - Allow preset passphrase for secret keys, put this in ~/.gnupg/gpg-agent.conf: allow-preset-passphrase - Apply passphrase to all secret keys at start of session, put this in ~/.xinitrc: SSH_ASKPASS=~/bin/askpass.lisp ssh-add (file ~/bin/askpass.lisp is attached) -- Peter