blob: b4b02a854e59fcfd1cc690a2c782fb185911bd33 (
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
|
###############################################################################
# muttrc
###############################################################################
set from = 'me@cacharle.xyz' # address in new mail
set realname = 'Charles Cabergs' # name in new mail
set smtp_url = 'smtp://me@mail.cacharle.xyz:587' # where to send
set folder = 'imaps://me@mail.cacharle.xyz:993' # mails folder
# set folder = "~/Mail/cacharle"
# view html with terminal browser in .mailcap
auto_view text/html
alternative_order text/plain text/enriched text/html
set spoolfile = '+INBOX'
set record = "+Sent"
set trash = "+Trash"
set postponed = "+Drafts"
mailboxes =INBOX =Sent =Send =Trash =Drafts
set editor = 'vim'
set sort = 'reverse-date' # newest at the top
set date_format = "%d/%m %I:%M"
set index_format = "%2C %Z %d %-15.15F %s (%-4.4c)" # one line format in home
# from https://github.com/LukeSmithxyz/mutt-wizard/blob/master/share/mutt-wizard.muttrc
set rfc2047_parameters = yes # decode non standard stuff
set sleep_time = 0 # don't pause
set markers = no # no '+' on line wrap
set mark_old = no # don't mark mail as read if not seen
set mime_forward = yes # attachements forwarded
set wait_key = no # no press to continue...
set forward_format = "Fwd: %s" # forward subject
set forward_quote # include previous message in forward
set sidebar_visible = yes
set sidebar_width = 20
set sidebar_short_path = yes
set sidebar_next_new_wrap = yes
set mail_check_stats
set sidebar_format = '%B%?F? [%F]?%* %?N?%N/? %?S?%S?'
set ssl_force_tls = yes
set send_charset = 'utf-8'
set header_cache = "~/.mutt/cache/headers"
set message_cachedir = "~/.mutt/cache/bodies"
set certificate_file = "~/.mutt/certificates"
# solarized color scheme
source "$DOTDIR/mutt-colors-solarized/mutt-colors-solarized-dark-16.muttrc"
# password
source "gpg -d $HOME/.config/mutt/passwd.muttrc.gpg 2> /dev/null |"
|