I've set up mutt on my tilde.pink account
I can see the incoming Mailspool and my home folder
mbox, and the SENT folder in ~/Mail
macros to move between them:
gi = Inbox (spool)
gm = mbox
gs = SENT
on quitting mutt will ask to save any spool
messages into the ~/mbox
muttrc:
========================================
set user_agent=yes
set editor='vim +1 -c "set textwidth=72" -c "set wrap"'
set my_name = "John Pumford-Green"
set sort = threads
bind index g noop
bind index n next-unread
bind index N next-unread-mailbox
mailboxes $MAIL mbox =SENT
set move = ask-yes
set mail_check_stats
#set index_format="%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"
#set index_format = "%4C %Z %{%Y %b %e %H:%M} %?X?(%X)& ? %-22.22F %.100s "
set index_format = "%4C %Z %(%Y %b %e %H:%M) %?X?(%X)& ? %-25.25F %.100s "
macro index gi "<change-folder>$MAIL<enter>"
macro index gs "<change-folder>=SENT<enter>"
macro index gm "<change-folder>mbox<enter>"
macro pager b "<enter-command>toggle sidebar_visible <enter><redraw-screen>"
macro index b "<enter-command>toggle sidebar_visible <enter><redraw-screen>"
set sidebar_visible = yes
set sidebar_width = 25
set sidebar_short_path = yes
#set sidebar_folder_indent=yes
#set sidebar_indent_string=".."
#set sidebar_sort_method = path
set sidebar_format="%B%?F? [%F]?%* %?N?%N/?%S"
#color sidebar_new yellow default
bind index k what-key
bind index,pager <Esc>j sidebar-prev
bind index,pager <C-Up> sidebar-prev
bind index,pager <Esc>k sidebar-next
bind index,pager <C-Down> sidebar-next
bind index,pager <Esc>n sidebar-next-new
bind index,pager <Esc>o sidebar-open
bind index,pager <C-Right> sidebar-open
color tree red default
color header brightyellow default ^(From|Subject):
color header brightcyan default ^To:
color header cyan default ^Cc:
color quoted red default
color quoted1 green default
color quoted2 blue default
color quoted3 cyan default
color normal white default
color indicator black cyan
color status black cyan
color index brightyellow default ~N # New
color index magenta default ~O # Old
color index red default ~F
color index blue default ~T
color index red default ~D
color signature red default
set reverse_alias=yes
auto_view text/html
alternative_order text/plain text/html
alias w2w John Pumford-Green <
[email protected]>
alias gm7afe Tony Erwood <
[email protected]>
alias andrew Andrew Archer <
[email protected]>
=========================================================