Created
March 17, 2018 00:11
-
-
Save zanshin/1e56534e5d07959181cb56e4b4874cc6 to your computer and use it in GitHub Desktop.
GPG settings for mutt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set pgp_decode_command = "gpg %?p?--passphrase-fd 0? --no-verbose --batch --output - %f" | |
set pgp_verify_command = "gpg --no-verbose --batch --output - --verify %s %f" | |
set pgp_decrypt_command = "gpg --passphrase-fd 0 --no-verbose --batch --output - %f" | |
set pgp_sign_command = "gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f" | |
set pgp_clearsign_command = "gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f" | |
set pgp_import_command = "gpg --no-verbose --import -v %f" | |
set pgp_export_command = "gpg --no-verbose --export --armor %r" | |
set pgp_verify_key_command = "gpg --no-verbose --batch --fingerprint --check-sigs %r" | |
set pgp_list_pubring_command = "gpg --no-verbose --batch --with-colons --list-keys %r" | |
set pgp_list_secring_command = "gpg --no-verbose --batch --with-colons --list-secret-keys %r" | |
unset pgp_retainable_sigs | |
# set pgp_ignore_subkeys | |
# set pgp_verify_sig=yes | |
# set pgp_create_traditional = no | |
# set pgp_autosign = no | |
# set pgp_autoencrypt = no | |
# set pgp_replysignencrypted | |
# set pgp_replyencrypt = yes | |
# set pgp_replysign = yes | |
set crypt_autosign # automatically sign all outgoing messages | |
# set crypt_replysign # sign only replies to signed messages | |
# set crypt_autoencrypt=yes # automatically encrypt outgoing msgs | |
# set crypt_replyencrypt=yes # encryp only replies to signed messages | |
# set crypt_replysignencrypted=yes # encrypt & sign replies to encrypted msgs | |
set crypt_verify_sig=yes # auto verify msg signature when opened | |
set pgp_create_traditional = yes # http://www.rdrop.com/docs/mutt/manual236.html#pgp_create_traditional | |
set pgp_timeout = 3600 | |
set pgp_good_sign = "^gpg: Good signature from" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment