Re: mutt + gpg in bash script

2013-06-16 Thread Alex Dubinin
Any idea? signature.asc Description: OpenPGP digital signature

Re: mutt + gpg in bash script

2013-06-15 Thread Alex Dubinin
16.06.2013 01:44, Jochen Spieker ?: > Alex Dubinin: >> Hello, I'm trying to send email from a bash script with mutt and sign a >> message of GPG. > Where does the passphrase for signing crom from? It is usally read from > stdin (the keyboard in this case). > > J. I think: # cat .muttrc --- set

Re: mutt + gpg in bash script

2013-06-15 Thread Jochen Spieker
Alex Dubinin: > > Hello, I'm trying to send email from a bash script with mutt and sign a > message of GPG. Where does the passphrase for signing crom from? It is usally read from stdin (the keyboard in this case). J. -- In public I try to remain calm and to appear perceptive. [Agree] [Disagre

mutt + gpg in bash script

2013-06-15 Thread Alex Dubinin
Hello, I'm trying to send email from a bash script with mutt and sign a message of GPG. I send mail as: echo -e "${MSG}" | mutt -s "${SUB}" "${TO}" -a "attachment.tgz" where MSG - message SUB - subject TO - recipient and attach a file. This mail send fine. I trying to sign this message so: # cat