diff options
Diffstat (limited to '.config/mutt')
-rw-r--r-- | .config/mutt/my-configs | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/.config/mutt/my-configs b/.config/mutt/my-configs index c79629c..bd59b70 100644 --- a/.config/mutt/my-configs +++ b/.config/mutt/my-configs @@ -9,18 +9,21 @@ set query_command="goobook query %s" # Add email to contacts macro index,pager a "<pipe-message>goobook add<return>" "add the sender address to Google contacts" + # Note that if you use an old version of mutt-wizard, # you will need to disable abook in it's script: # sed -i "s/^set\squery_command.*$//" /usr/share/mutt-wizard/mutt-wizard.muttrc -# }}} + # PGP Encryption: {{{ -set crypt_use_gpgme = yes -set crypt_autosign = yes -set crypt_opportunistic_encrypt = yes -set pgp_self_encrypt = yes -set pgp_default_key = 'ABC4A5A7430D6309ACBD219044F94DD6456590C3' -set pgp_import_command = "gpg --no-verbose --import -v %f" +# I want pgp encryption by default when possible. +# The following line makes this possible: +set crypt_use_gpgme=yes +set crypt_autosign = yes +set pgp_self_encrypt = yes +set pgp_default_key = 'ABC4A5A7430D6309ACBD219044F94DD6456590C3' +set pgp_import_command = "gpg --no-verbose --import -v %f" # }}} + # Muttprint: {{{ set print_command="muttprint" # Dump all headers |