summaryrefslogtreecommitdiff
path: root/.config/mutt/my-configs
blob: c79629ca1729e966bdc6a55e304f2219a9a82233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# These are my personal configs on top of mutt-wizard.
# Add the following line to your muttrc to have them:
# source $HOME/.config/mutt/my-configs

# GOOBOOK: {{{
# goobook let's you use google contacts information.
# You install it with pip: pip install --user goobook
# Query emails
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"
# }}}
# Muttprint: {{{
set print_command="muttprint"
# Dump all headers
# macro index p "<display-toggle-weed> <print-message> <display-toggle-weed> <exit>"
# }}}
# Colors {{{
source colors
# }}}

# vim: filetype=neomuttrc