Advertisement
Guest User

Untitled

a guest
Sep 10th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. set pgp_decode_command="gpg %?p?--passphrase-fd 0? --no-verbose --batch --output - %f"
  2. set pgp_verify_command="gpg --no-verbose --batch --output - --verify %s %f"
  3. set pgp_decrypt_command="gpg --passphrase-fd 0 --no-verbose --batch --output - %f"
  4. set pgp_sign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f"
  5. set pgp_clearsign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f"
  6. set pgp_encrypt_only_command="pgpewrap gpg --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trus$
  7. set pgp_encrypt_sign_command="pgpewrap gpg --passphrase-fd 0 --batch --quiet --no-verbose --textmode --output - --encrypt --s$
  8. set pgp_import_command="gpg --no-verbose --import -v %f"
  9. set pgp_export_command="gpg --no-verbose --export --armor %r"
  10. set pgp_verify_key_command="gpg --no-verbose --batch --fingerprint --check-sigs %r"
  11. set pgp_list_pubring_command="gpg --no-verbose --batch --with-colons --list-keys %r"
  12. set pgp_list_secring_command="gpg --no-verbose --batch --with-colons --list-secret-keys %r"
  13. set pgp_autosign=yes
  14. set pgp_sign_as=0x
  15. set pgp_replyencrypt=yes
  16. set pgp_timeout=1800
  17. set pgp_good_sign="^gpg: Good signature from"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement