Integrating Seahorse with Mutt (>v1.1)
======================================
You can integrate Seahorse with Mutt by adding the following lines
to your .muttrc file:

The following macros allow you to verify/decrypt messages by
pressing 'V' and sign/encrypt messages by pressing 'S'.

macro index V "|seahorse --decrypt -o -\ny" 'decode the message'
macro pager V "|seahorse --decrypt -o -\ny" 'decode the message'
macro compose S "Fseahorse --armor --clearsign -o -\ny" 'clearsign the message'

# decode application/pgp
set pgp_decode_command="seahorse --decrypt -f %f -o -"

# verify a pgp/mime signature
set pgp_verify_command="seahorse --verify -o - -f %s"

# decrypt a pgp/mime attachment
set pgp_decrypt_command="seahorse --decrypt -f %f -o -"

# create a pgp/mime signed attachment
set pgp_sign_command="seahorse --detach-sign --armor --textmode -f %f -o -"

# create a application/pgp signed (old-style) message
set pgp_clearsign_command="seahorse --armor --clearsign -f %f -o -"

# create a pgp/mime encrypted attachment
set pgp_encrypt_only_command="seahorse --encrypt --armor --textmode -r %r -f %f -o -"

# create a pgp/mime encrypted and signed attachment
set pgp_encrypt_sign_command="seahorse --sign --encrypt --armor --textmode -r %r -f %f -o -"

