Skip to content

Instantly share code, notes, and snippets.

@apinsard
Created April 6, 2015 16:58
Show Gist options
  • Save apinsard/cc93b04d0f6c4cca2050 to your computer and use it in GitHub Desktop.
Save apinsard/cc93b04d0f6c4cca2050 to your computer and use it in GitHub Desktop.
stdin
set smime_decrypt_use_default_key=yes
set pgp_decode_command = "/usr/bin/gpg %?p?--passphrase-fd 0? --no-verbose --batch --ouput - %f"
set pgp_verify_command = "/usr/bin/gpg --no-verbose --batch --output - --verify %s %f"
set pgp_decrypt_command = "/usr/bin/gpg --passphrase-fd 0 --no-verbose --batch --output - %f"
set pgp_sign_command = "/usr/bin/gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f"
set pgp_clearsign_command = "/usr/bin/gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f"
set pgp_import_command = "/usr/bin/gpg --no-verbose --import -v %f"
set pgp_export_command = "/usr/bin/gpg --no-verbose --export --armor %r"
set pgp_verify_key_command = "/usr/bin/gpg --verbose --batch --fingerprint --check-sigs %r"
set pgp_list_pubring_command = "/usr/bin/gpg --no-verbose --batch --with-colons --search-keys %r"
set pgp_list_secring_command = "/usr/bin/gpg --no-verbose --batch --with-colons --list-secret-keys %r"
set pgp_autosign = yes
set pgp_timeout = 1800
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