Add mutt
This commit is contained in:
parent
95bdd02903
commit
1c0dc8b544
3 changed files with 87 additions and 0 deletions
2
.mutt/mailcap
Normal file
2
.mutt/mailcap
Normal file
|
@ -0,0 +1,2 @@
|
|||
text/html; firefox %s >/dev/null 2>&1; needsterminal
|
||||
text/html; w3m -I %{charset} -T text/html; copiousoutput;
|
75
.muttrc
Normal file
75
.muttrc
Normal file
|
@ -0,0 +1,75 @@
|
|||
set editor=`echo \$EDITOR`
|
||||
|
||||
set realname="Franziska Kunsmann"
|
||||
|
||||
set folder="imap://kaito.kunbox.net/"
|
||||
set spoolfile="+INBOX"
|
||||
set record="+Sent"
|
||||
set postponed="+Drafts"
|
||||
set trash="+Trash"
|
||||
|
||||
set from=hi@kunsmann.eu
|
||||
set use_from=yes
|
||||
set smtp_url=smtp://$imap_user:$imap_pass@kaito.kunbox.net:587/
|
||||
|
||||
set send_charset=utf-8
|
||||
set edit_headers=yes
|
||||
set ssl_starttls=yes
|
||||
set ssl_force_tls=yes
|
||||
unset imap_passive
|
||||
set imap_check_subscribed
|
||||
set mail_check=60
|
||||
set timeout=10
|
||||
set header_cache=~/.hcache
|
||||
set net_inc=5
|
||||
|
||||
set sidebar_visible=yes
|
||||
set sidebar_sort_method=path
|
||||
set sidebar_folder_indent=yes
|
||||
set sidebar_indent_string=' '
|
||||
set mail_check_stats
|
||||
set sidebar_format = '%B%* %?N?%N / ?%S'
|
||||
set sidebar_short_path=yes
|
||||
set sidebar_width=30
|
||||
set sidebar_delim_chars='/.'
|
||||
set sidebar_next_new_wrap=yes
|
||||
|
||||
set mailcap_path=~/.mutt/mailcap
|
||||
alternative_order text/plain text/html
|
||||
auto_view text/html
|
||||
|
||||
set editor="vim -c 'set spell spelllang=de,en'"
|
||||
|
||||
source ~/.mutt/gpg.rc
|
||||
|
||||
set pgp_use_gpg_agent=yes
|
||||
set pgp_sign_as=92924DA2FBE83349C086AAB87CB6EE07E4A1BD2A
|
||||
set pgp_timeout=60
|
||||
set pgp_autosign=yes
|
||||
set crypt_autosign=yes
|
||||
set crypt_replyencrypt=yes
|
||||
set crypt_verify_sig=yes
|
||||
set crypt_replysignencrypted=yes
|
||||
|
||||
set pgp_decode_command="gpg %?p?--passphrase-fd 0? --no-verbose --batch --output - %f"
|
||||
set pgp_verify_command="gpg --status-fd=2 --no-verbose --batch --output - --verify %s %f"
|
||||
set pgp_decrypt_command="gpg --status-fd=2 --passphrase-fd 0 --no-verbose --batch --output - %f"
|
||||
set pgp_sign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f"
|
||||
set pgp_clearsign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f"
|
||||
set pgp_encrypt_only_command="pgpewrap gpg --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trust --encrypt-to 92924DA2FBE83349C086AAB87CB6EE07E4A1BD2A -- -r %r -- %f"
|
||||
set pgp_encrypt_sign_command="pgpewrap gpg --passphrase-fd 0 --batch --quiet --no-verbose --textmode --output - --encrypt --sign %?a?-u %a? --armor --always-trust --encrypt-to 92924DA2FBE83349C086AAB87CB6EE07E4A1BD2A -- -r %r -- %f"
|
||||
set pgp_import_command="gpg --no-verbose --import -v %f"
|
||||
set pgp_export_command="gpg --no-verbose --export --armor %r"
|
||||
set pgp_verify_key_command="gpg --no-verbose --batch --fingerprint --check-sigs %r"
|
||||
set pgp_list_pubring_command="gpg --no-verbose --batch --with-colons --list-keys %r"
|
||||
set pgp_list_secring_command="gpg --no-verbose --batch --with-colons --list-secret-keys %r"
|
||||
|
||||
send-hook . 'reset pgp_autoencrypt'
|
||||
send-hook "!~l ~t intern@lists.mond-basis\\.eu" "set crypt_autoencrypt crypt_autosign"
|
||||
|
||||
set query_command= "khard email --parsable '%s'"
|
||||
bind editor <Tab> complete-query
|
||||
bind editor ^T complete
|
||||
bind index,pager S sidebar-toggle-visible
|
||||
|
||||
# vim: syntax=muttrc
|
10
.neomuttrc
Normal file
10
.neomuttrc
Normal file
|
@ -0,0 +1,10 @@
|
|||
source ~/.muttrc
|
||||
|
||||
set new_mail_command="notify-send --icon='/home/santiago/Pictures/neomutt.png' 'New Email' '%n new messages, %u unread.' &"
|
||||
|
||||
set pgp_self_encrypt=yes
|
||||
set pgp_default_key=92924DA2FBE83349C086AAB87CB6EE07E4A1BD2A
|
||||
|
||||
set sidebar_divider_char='│'
|
||||
|
||||
# vim: syntax=neomuttrc
|
Loading…
Reference in a new issue