neomutt/.config/neomutt/neomuttrc (view raw)
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 |
# preferences
set use_threads = yes
set pager_index_lines = 6 # show this many lines of the Index when
# reading email
set pager_context = 3 # lines of context between pages
set pager_stop = yes # don't scroll off the end of one message onto
# the next
unset markers # don't show + for wrapped lines in the pager
set mark_old = no
set sort = "reverse-date-received"
set sort_aux = "reverse-last-date-received"
#theme
source /usr/share/neomutt/colorschemes/vombatidae.neomuttrc
# sending
set edit_headers = yes
set include = yes
# mbox
set spool_file = ~/mail/spool/crispy@crispy-caesus.eu/
set mbox = ~/mail
set mbox_type = "maildir"
set move = ask-yes # TODO: check
set folder = ~/mail
set record = +sent
set trash = +trash
set postponed = +drafts
mailboxes -label cspool -notify -nopoll ~/mail/spool/crispy@crispy-caesus.eu \
-label jspool -notify -nopoll ~/mail/spool/jasper.bauerschaper@crispy-caesus.eu \
-label people -nonotify -nopoll +people \
-label chorepeople -nonotify -nopoll +chorepeople \
-label purchases -nonotify -nopoll +purchases \
-label me -nonotify -nopoll +me \
-label sent -nonotify -nopoll +sent
set mail_check = 10
set timeout = 30
set mail_check_stats = yes
set mail_check_stats_interval = 30
set new_mail_command = "notify-send \
--app-name=neomutt \
--icon'~/.config/neomutt/neomutt.png' \
'New Email in %D' &"
# accounts
folder-hook ~/.mail/spool/crispy@crispy-caesus.eu 'source ~/.config/neomutt/crispy@crispy-caesus.eu-neomuttrc'
folder-hook ~/.mail/spool/jasper.bauerschaper@crispy-caesus.eu 'source ~/.config/neomutt/jasper.bauerschaper@crispy-caesus.eu-neomuttrc'
|