Changeset 5002:3cee06debc98 for contrib
- Timestamp:
- 2007-03-15 09:39:46 (21 months ago)
- Branch:
- default
- Files:
-
- 1 modified
-
contrib/gpg.rc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
contrib/gpg.rc
r4846 r5002 32 32 33 33 # decode application/pgp 34 set pgp_decode_command=" /usr/bin/gpg --status-fd=2 %?p?--passphrase-fd 0? --no-verbose --quiet --batch --output - %f"34 set pgp_decode_command="gpg --status-fd=2 %?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 --status-fd=2 --no-verbose --quiet --batch--output - --verify %s %f"37 set pgp_verify_command="gpg --status-fd=2 --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 --status-fd=2 %?p?--passphrase-fd 0? --no-verbose --quiet --batch--output - %f"40 set pgp_decrypt_command="gpg --status-fd=2 %?p?--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 - %?p?--passphrase-fd 0? --armor --detach-sign --textmode %?a?-u %a? %f"44 set pgp_sign_command=" /usr/bin/gpg --no-verbose --batch --quiet--output - %?p?--passphrase-fd 0? --armor --detach-sign --textmode %?a?-u %a? %f"43 # set pgp_sign_command="gpg-2comp --comment '' --no-verbose --batch --output - %?p?--passphrase-fd 0? --armor --detach-sign --textmode %?a?-u %a? %f" 44 set pgp_sign_command="gpg --no-verbose --batch --quiet --output - %?p?--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 - %?p?--passphrase-fd 0? --armor --textmode --clearsign %?a?-u %a? %f"48 set pgp_clearsign_command=" /usr/bin/gpg --no-verbose --batch --quiet --output - %?p?--passphrase-fd 0? --armor --textmode --clearsign %?a?-u %a? %f"47 # set pgp_clearsign_command="gpg-2comp --comment '' --no-verbose --batch --output - %?p?--passphrase-fd 0? --armor --textmode --clearsign %?a?-u %a? %f" 48 set pgp_clearsign_command="gpg --no-verbose --batch --quiet --output - %?p?--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 -v --batch--output - --encrypt --textmode --armor --always-trust -- -r %r -- %f"52 set pgp_encrypt_only_command="pgpewrap /usr/bin/gpg --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f"51 # set pgp_encrypt_only_command="pgpewrap gpg-2comp -v --batch --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f" 52 set pgp_encrypt_only_command="pgpewrap gpg --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 55 # set pgp_encrypt_sign_command="pgpewrap gpg-2comp %?p?--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 %?p?--passphrase-fd 0? --batch --quiet --no-verbose --textmode --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f"56 set pgp_encrypt_sign_command="pgpewrap gpg %?p?--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--no-verbose --import %f"59 set pgp_import_command="gpg --no-verbose --import %f" 60 60 61 61 # export a key from the public key ring 62 set pgp_export_command=" /usr/bin/gpg--no-verbose --export --armor %r"62 set pgp_export_command="gpg --no-verbose --export --armor %r" 63 63 64 64 # verify a key 65 set pgp_verify_key_command=" /usr/bin/gpg --verbose --batch--fingerprint --check-sigs %r"65 set pgp_verify_key_command="gpg --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 --no-verbose --batch --quiet--with-colons --list-keys %r"68 set pgp_list_pubring_command="gpg --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 --no-verbose --batch --quiet--with-colons --list-secret-keys %r"71 set pgp_list_secring_command="gpg --no-verbose --batch --quiet --with-colons --list-secret-keys %r" 72 72 73 73 # fetch keys
