Last active 6 months ago

muttrc sample

.muttrc Raw
1##
2## IMAP CREDENTIALS
3##
4set smtp_url = "smtp://some_user@smtp.gmail.com:587/"
5#set smtp_pass = "password"
6set from = "someuser@example.com"
7set realname = "Some User"
8
9##
10## IMAP SETTINGS
11##
12# activate TLS if available on the server
13set ssl_starttls=yes
14# always use SSL when connecting to a server
15set ssl_force_tls=yes
16# Don't wait to enter mailbox manually
17unset imap_passive
18# Automatically poll subscribed mailboxes for new mail (new in 1.5.11)
19set imap_check_subscribed
20
21
22##
23## GMAIL SPECIFIC
24##
25set folder = "imaps://imap.gmail.com:993"
26set spoolfile = "+INBOX"
27set postponed="+[Gmail]/Drafts"
28#set record="+[Gmail]/Sent Mail" # Causes duplicates in Gmail
29#set trash="+[Gmail]/Bin" # If disabled, mail will be archived (in Gmail)
30
31##
32## GENERIC
33##
34set header_cache=~/.mutt/cache/headers
35set message_cachedir=~/.mutt/cache/bodies
36set certificate_file=~/.mutt/certificates
37# Move read messages from your spool mailbox to your $mbox mailbox
38set move = no
39# Reduce polling frequency to a sane level
40set mail_check=60
41# And poll the current mailbox more often (not needed with IDLE in post 1.5.11)
42set timeout=10
43# keep a cache of headers for faster loading (1.5.9+?)
44set header_cache=~/.hcache
45# Display download progress every 5K
46set net_inc=5
47# Don't switch to next mail when paging down in a mail and hitting bottom
48set pager_stop=yes
49# Confirm quit
50set quit=ask-yes
51# Date format in index view. Standard strftime syntax.
52set date_format="!%a, %b %d, %Y at %I:%M:%S%p %Z"
53# Default index format
54#set index_format="%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"
55set index_format="%4C %Z %{%b %d %H:%M} %-15.15L (%?l?%4l&%4c?) %s"
56
57