3 # Command formats for gpg.
 
   7 #   GPG 2.1 introduces the option "--pinentry-mode", which requires
 
   8 #   the "loopback" argument in instances where "--passphrase-fd" is
 
  11 # Some of the older commented-out versions of the commands use gpg-2comp from:
 
  12 #   http://70t.de/download/gpg-2comp.tar.gz
 
  14 # %p    The empty string when no passphrase is needed,
 
  15 #       the string "PGPPASSFD=0" if one is needed.
 
  17 #       This is mostly used in conditional % sequences.
 
  19 # %f    Most PGP commands operate on a single file or a file
 
  20 #       containing a message.  %f expands to this file's name.
 
  22 # %s    When verifying signatures, there is another temporary file
 
  23 #       containing the detached signature.  %s expands to this
 
  26 # %a    In "signing" contexts, this expands to the value of the
 
  27 #       configuration variable $pgp_sign_as, if set, otherwise
 
  28 #       $pgp_default_key.  You probably need to
 
  29 #       use this within a conditional % sequence.
 
  31 # %r    In many contexts, neomutt passes key IDs to pgp.  %r expands to
 
  34 # Section A: Key Management
 
  36 # The default key for encryption (used by $pgp_self_encrypt and
 
  39 # It will also be used for signing unless $pgp_sign_as is set to a
 
  42 # Unless your key does not have encryption capability, uncomment this
 
  43 # line and replace the keyid with your own.
 
  45 # set pgp_default_key="0x12345678"
 
  47 # If you have a separate signing key, or your key _only_ has signing
 
  48 # capability, uncomment this line and replace the keyid with your
 
  51 # set pgp_sign_as="0x87654321"
 
  56 # Note that we explicitly set the comment armor header since GnuPG, when used
 
  57 # in some localiaztion environments, generates 8bit data in that header, thereby
 
  60 # decode application/pgp
 
  62 set pgp_decode_command="gpg --status-fd=2 %?p?--pinentry-mode loopback --passphrase-fd 0? --no-verbose --quiet --batch --output - %f"
 
  66 set pgp_verify_command="gpg --status-fd=2 --no-verbose --quiet --batch --output - --verify %s %f"
 
  68 # Decrypt an attachment
 
  70 set pgp_decrypt_command="gpg --status-fd=2 %?p?--pinentry-mode loopback --passphrase-fd 0? --no-verbose --quiet --batch --output - --decrypt %f"
 
  72 # Create a PGP/MIME signed attachment
 
  74 # set pgp_sign_command="gpg-2comp --comment '' --no-verbose --batch --output - %?p?--passphrase-fd 0? --armor --detach-sign --textmode %?a?-u %a? %f"
 
  76 set pgp_sign_command="gpg %?p?--pinentry-mode loopback --passphrase-fd 0? --no-verbose --batch --quiet --output - --armor --textmode %?a?--local-user %a? --detach-sign %f"
 
  78 # Create a application/pgp inline signed message.  This style is obsolete but still needed for Hushmail recipients and some MUAs.
 
  80 # set pgp_clearsign_command="gpg-2comp --comment '' --no-verbose --batch --output - %?p?--passphrase-fd 0? --armor --textmode --clearsign %?a?-u %a? %f"
 
  82 set pgp_clearsign_command="gpg %?p?--pinentry-mode loopback --passphrase-fd 0? --no-verbose --batch --quiet --output - --armor --textmode %?a?--local-user %a? --clearsign %f"
 
  84 # Create an encrypted attachment (note that some users include the --always-trust option here)
 
  86 # set pgp_encrypt_only_command="/usr/lib/neomutt/pgpewrap gpg-2comp -v --batch --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f"
 
  88 set pgp_encrypt_only_command="/usr/lib/neomutt/pgpewrap gpg --batch --quiet --no-verbose --output - --textmode --armor --encrypt -- --recipient %r -- %f"
 
  90 # Create an encrypted and signed attachment (note that some users include the --always-trust option here)
 
  92 # set pgp_encrypt_sign_command="/usr/lib/neomutt/pgpewrap gpg-2comp %?p?--passphrase-fd 0? -v --batch --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f"
 
  94 set pgp_encrypt_sign_command="/usr/lib/neomutt/pgpewrap gpg %?p?--pinentry-mode loopback --passphrase-fd 0? --batch --quiet --no-verbose --textmode --output - %?a?--local-user %a? --armor --sign --encrypt -- --recipient %r -- %f"
 
  96 # Import a key into the public key ring
 
  98 set pgp_import_command="gpg --no-verbose --import %f"
 
 100 # Export a key from the public key ring
 
 102 set pgp_export_command="gpg --no-verbose --armor --export %r"
 
 106 set pgp_verify_key_command="gpg --verbose --batch --fingerprint --check-sigs %r"
 
 108 # Read in the public key ring
 
 110 set pgp_list_pubring_command="gpg --no-verbose --batch --quiet --with-colons --with-fingerprint --with-fingerprint --list-keys %r"
 
 112 # Read in the secret key ring
 
 114 set pgp_list_secring_command="gpg --no-verbose --batch --quiet --with-colons --with-fingerprint --with-fingerprint --list-secret-keys %r"
 
 117 # set pgp_getkeys_command="pkspxycwrap %r"
 
 119 # pattern for good signature - may need to be adapted to locale!
 
 120 # OK, here's a version which uses gnupg's message catalog:
 
 121 # set pgp_good_sign="^gpgv?: Good signature from"
 
 122 # set pgp_good_sign="`gettext -d gnupg -s 'Good signature from "' | tr -d '"'`"
 
 124 # Output pattern to indicate a valid signature using --status-fd messages
 
 125 set pgp_good_sign="^\\[GNUPG:\\] GOODSIG"
 
 127 # Output pattern to verify a decryption occurred
 
 128 # This is now deprecated by pgp_check_gpg_decrypt_status_fd:
 
 129 # set pgp_decryption_okay="^\\[GNUPG:\\] DECRYPTION_OKAY"
 
 130 set pgp_check_gpg_decrypt_status_fd