<<< Date Index >>>     <<< Thread Index >>>

Re: [Mutt] #3034: mutt-1.5.17: reply for gpg encrypted mails fails



#3034: mutt-1.5.17: reply for gpg encrypted mails fails

Comment (by Olaf Foellinger):

 {{{
 Hi,

 * Mutt <fleas@xxxxxxxx> [18.02.08 20:42]wrote:

 > #3034: mutt-1.5.17: reply for gpg encrypted mails fails
 >
 > Comment (by Kyle Wheeler):
 >
 >  There's a very simple workaround. I changed this line in my muttrc:
 >
 >       set pgp_decode_command="~/.gpgwrapper.sh --status-fd=2 %?p
 >  ?--passphrase-fd 0? --no-verbose --quiet --batch --output - %f"
 >
 >  Then, you make that ~/.gpgwrapper.sh script look like this:
 >
 >       #!/bin/sh
 >       FDTWO=/tmp/gpg.$$.$RANDOM.2
 >       gpg "$@" 2>"$FDTWO"
 >       retval=$?
 >       cat "$FDTWO" >&2
 >       rm "$FDTWO"
 >       exit $retval
 >
 >  ~Kyle
 >  }}}
 >
 > --
 > Ticket URL: <http://dev.mutt.org/trac/ticket/3034#comment:>

 thank you very much, this works perfectly for me, too.

 Gruß Olaf
 }}}

-- 
Ticket URL: <http://dev.mutt.org/trac/ticket/3034#comment:>