Skip to content

Instantly share code, notes, and snippets.

@kitchen
Created August 23, 2012 04:25
Show Gist options
  • Save kitchen/3432326 to your computer and use it in GitHub Desktop.
Save kitchen/3432326 to your computer and use it in GitHub Desktop.
sample mutt configuration
# me
set realname = "Jeremy Kitchen"
set from = "kitchen@example.org"
set envelope_from = yes
# personal account info
set imap_user = "kitchen@example.org"
set imap_pass = "REDACTED"
set folder = imaps://imap.gmail.com/
set smtp_url = smtps://kitchen@example.org@smtp.gmail.com/
set smtp_pass = $imap_pass
# default mailboxes
## this is google apps, these are the places to store bits
set spoolfile = "=INBOX"
set record = "=[Gmail]/Sent Mail"
set postponed = "=[Gmail]/Drafts"
# bring in the shared
source ~/.mutt/shared.rc
# vim: ft=muttrc:
## save copies of sent mail to $record
set copy=yes
# color scheme
source ~/.mutt/solarized/mutt-colors-solarized-dark-16.muttrc
# things I can't live without
set sort = threads
# vim-ish keybindings for going to the bottom of things
bind pager "G" bottom
bind index "G" bottom
bind browser "G" bottom
# if you have more than a few emails, you *really* want this
set header_cache = ~/.mutt/headercache
set message_cachedir = ~/.mutt/messagecache
# vim: ft=muttrc:
# me
set realname = "Jeremy Kitchen"
set from = "jeremy.kitchen@example.com"
set envelope_from = yes
# work account info
set imap_user = "jeremy.kitchen"
set imap_pass = "REDACTED"
set folder = imaps://mail.example.com/
set smtp_url = smtps://jeremy.kitchen@mail.example.com/
set smtp_pass = $imap_pass
# default mailboxes
## this is an exchange server, so this is where Outlook puts its stuff
set spoolfile = "=INBOX"
set record = "=Sent Items"
set postponed = "=Drafts"
# bring in the shared!
source ~/.mutt/shared.rc
# vim: ft=muttrc:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment