Changeset 2522:56ca883ba883 for contrib
- Timestamp:
- 2001-08-02 15:59:16 (7 years ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
contrib/gpg.rc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
contrib/gpg.rc
r2512 r2522 32 32 33 33 # decode application/pgp 34 set pgp_decode_command="/usr/bin/gpg --comment ' -' %?p?--passphrase-fd 0? --no-verbose --quiet --batch --output - %f"34 set pgp_decode_command="/usr/bin/gpg --comment '' %?p?--passphrase-fd 0? --no-verbose --quiet --batch --output - %f" 35 35 36 36 # verify a pgp/mime signature 37 set pgp_verify_command="/usr/bin/gpg --comment ' -' --no-verbose --quiet --batch --output - --verify %s %f"37 set pgp_verify_command="/usr/bin/gpg --comment '' --no-verbose --quiet --batch --output - --verify %s %f" 38 38 39 39 # decrypt a pgp/mime attachment 40 set pgp_decrypt_command="/usr/bin/gpg --comment ' -' --passphrase-fd 0 --no-verbose --quiet --batch --output - %f"40 set pgp_decrypt_command="/usr/bin/gpg --comment '' --passphrase-fd 0 --no-verbose --quiet --batch --output - %f" 41 41 42 42 # create a pgp/mime signed attachment 43 # set pgp_sign_command="/usr/bin/gpg-2comp --comment ' -' --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f"44 set pgp_sign_command="/usr/bin/gpg --comment ' -' --no-verbose --batch --quiet --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f"43 # set pgp_sign_command="/usr/bin/gpg-2comp --comment '' --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f" 44 set pgp_sign_command="/usr/bin/gpg --comment '' --no-verbose --batch --quiet --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f" 45 45 46 46 # create a application/pgp signed (old-style) message 47 # set pgp_clearsign_command="/usr/bin/gpg-2comp --comment ' -' --no-verbose --batch --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f"48 set pgp_clearsign_command="/usr/bin/gpg --comment ' -' --no-verbose --batch --quiet --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f"47 # set pgp_clearsign_command="/usr/bin/gpg-2comp --comment '' --no-verbose --batch --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f" 48 set pgp_clearsign_command="/usr/bin/gpg --comment '' --no-verbose --batch --quiet --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f" 49 49 50 50 # create a pgp/mime encrypted attachment 51 # set pgp_encrypt_only_command="pgpewrap gpg-2comp --comment ' -' -v --batch --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f"52 set pgp_encrypt_only_command="pgpewrap /usr/bin/gpg --comment ' -' --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f"51 # set pgp_encrypt_only_command="pgpewrap gpg-2comp --comment '' -v --batch --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f" 52 set pgp_encrypt_only_command="pgpewrap /usr/bin/gpg --comment '' --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f" 53 53 54 54 # create a pgp/mime encrypted and signed attachment 55 # set pgp_encrypt_sign_command="pgpewrap gpg-2comp --comment ' -' --passphrase-fd 0 -v --batch --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f"56 set pgp_encrypt_sign_command="pgpewrap /usr/bin/gpg --comment ' -' --passphrase-fd 0 --batch --quiet --no-verbose --textmode --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f"55 # set pgp_encrypt_sign_command="pgpewrap gpg-2comp --comment '' --passphrase-fd 0 -v --batch --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f" 56 set pgp_encrypt_sign_command="pgpewrap /usr/bin/gpg --comment '' --passphrase-fd 0 --batch --quiet --no-verbose --textmode --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f" 57 57 58 58 # import a key into the public key ring 59 set pgp_import_command="/usr/bin/gpg --comment ' -' --no-verbose --import -v %f"59 set pgp_import_command="/usr/bin/gpg --comment '' --no-verbose --import -v %f" 60 60 61 61 # export a key from the public key ring 62 set pgp_export_command="/usr/bin/gpg --comment ' -' --no-verbose --export --armor %r"62 set pgp_export_command="/usr/bin/gpg --comment '' --no-verbose --export --armor %r" 63 63 64 64 # verify a key 65 set pgp_verify_key_command="/usr/bin/gpg --comment ' -' --verbose --batch --fingerprint --check-sigs %r"65 set pgp_verify_key_command="/usr/bin/gpg --comment '' --verbose --batch --fingerprint --check-sigs %r" 66 66 67 67 # read in the public key ring 68 set pgp_list_pubring_command="/usr/bin/gpg --comment ' -' --no-verbose --batch --quiet --with-colons --list-keys %r"68 set pgp_list_pubring_command="/usr/bin/gpg --comment '' --no-verbose --batch --quiet --with-colons --list-keys %r" 69 69 70 70 # read in the secret key ring 71 set pgp_list_secring_command="/usr/bin/gpg --comment ' -' --no-verbose --batch --quiet --with-colons --list-secret-keys %r"71 set pgp_list_secring_command="/usr/bin/gpg --comment '' --no-verbose --batch --quiet --with-colons --list-secret-keys %r" 72 72 73 73 # fetch keys
