blob: 80ff4f3e1ed9017fd2fac75f6fe1a456b0361c7e (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# vim: set ft=muttrc:
set editor="nvim"
set sendmail="/usr/bin/msmtp"
# keybindings
source "~/.config/neomutt/mappings"
# color
source "~/.config/neomutt/color"
set send_charset="utf-8"
# connection information
# This is should be config specifc not global
# Keeping for reference
# set ssl_force_tls=yes
# unset ssl_starttls
# status bar, date format, finding stuff etc.
set status_chars = " *%A"
set status_format = "[ Folder: %f ] [%r%m messages%?n? (%n new)?%?d? (%d to delete)?%?t? (%t tagged)? ]%>─%?p?( %p postponed )?"
set date_format = "%d.%m.%Y %H:%M"
set sort = threads
set sort_aux = reverse-last-date-received
set uncollapse_jump
set sort_re
set reply_regexp = "^(([Rr][Ee]?(\[[0-9]+\])?: *)?(\[[^]]+\] *)?)*"
set quote_regexp = "^( {0,4}[>|:#%]| {0,4}[a-z0-9]+[>|]+)+"
set send_charset = "utf-8:iso-8859-1:us-ascii"
set charset = "utf-8"
set arrow_cursor = "no" # Change `color indicator` depending
# general settings
set fcc_attach # save attachments with the body
set forward_format = "Fwd: %s" # format of subject when forwarding
set tilde # use ~ to pad mutt
# mailcap
set mailcap_path=~/.config/neomutt/mailcap
# automatically open html in mime
auto_view text/html
# sidebar
set sidebar_visible
set sidebar_format = "%B%<F? [%F]>%* %<N?%N/>%S"
set mail_check_stats
set sidebar_width = 35 # Plenty of space
set sidebar_divider_char = '░' # Pretty line-drawing character
# Use GPGME
set crypt_use_gpgme = yes
# Sign replies to signed emails
set crypt_replysign = yes
# Encrypt replies to encrypted emails
set crypt_replyencrypt = yes
# Encrypt and sign replies to encrypted and signed email
set crypt_replysignencrypted = yes
# Attempt to verify signatures automatically
set crypt_verify_sig = yes
# Use my key for signing and encrypting
macro compose \CP "Fgpg --clearsign\ny"
macro compose \CS "Fgpg --clearsign\ny^T^Uapplication/pgp; format=text; x-action=sign\n"
# Needs urlscan to be installed (pip install urlscan --user)
macro index,pager \cb "<pipe-message> urlscan<Enter>" "call urlscan to extract URLs out of a message"
macro attach,compose \cb "<pipe-entry> urlscan<Enter>" "call urlscan to extract URLs out of a message"
set alias_file="$HOME/.config/neomutt/aliases"
source "$HOME/.config/neomutt/aliases"
folder-hook $folder 'source ~/.config/neomutt/suse_de'
folder-hook $folder 'source ~/.config/neomutt/gmail_main'
## ACCOUNT 1
source "~/.config/neomutt/listout"
## ACCOUNT 2
# source "~/.config/neomutt/gmail_main"
## Shortcuts
macro index,pager <f2> '<sync-mailbox><enter-command>source ~/.config/neomutt/listout<enter><change-folder>!<enter>'
macro index,pager <f3> '<sync-mailbox><enter-command>source ~/.config/neomutt/suse_de<enter><change-folder>!<enter>'
macro index,pager <f4> '<sync-mailbox><enter-command>source ~/.config/neomutt/gmail_main<enter><change-folder>!<enter>'
|