1
0
Fork 0

Encrypting sent mail using my public key

Allows me to decrypt sent mail for future reference. Disallowing decryption
by myself is not much of a practical concern, since replies are generally
quoted. That said, if it were ever a concern, this could be easily disabled.
org
Mike Gerwitz 2014-05-28 00:22:22 -04:00
parent 2f231f853b
commit 9190188a83
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
1 changed files with 5 additions and 0 deletions

5
muttrc
View File

@ -22,6 +22,11 @@ set crypt_autosign
set crypt_autoencrypt
set crypt_verify_sig
# by default, encrypt sent mail using my public key so that I can decrypt it
# for reference
set pgp_encrypt_only_command="/usr/lib/mutt/pgpewrap gpg --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trust --encrypt-to=0x8EE30EAB -- -r %r -- %f"
set pgp_encrypt_sign_command="/usr/lib/mutt/pgpewrap gpg %?p?--passphrase-fd 0? --batch --quiet --no-verbose --textmode --output - --encrypt --sign %?a?-u %a? --armor --always-trust --encrypt-to=0x8EE30EAB -- -r %r -- %f"
# this is the default, but let's make it explicit for purposes of
# documentation---I do not mass-sign e-mails, and the task of entering a
# password does not add much to the time of composing an e-mail message