Last active 6 months ago

muttrc sample

scusi revised this gist 6 months ago. Go to revision

No changes

scusi revised this gist 6 months ago. Go to revision

No changes

Simon Andersson revised this gist 12 years ago. Go to revision

1 file changed, 0 insertions, 0 deletions

gistfile1.sh renamed to .muttrc

File renamed without changes

ramn revised this gist 14 years ago. Go to revision

1 file changed, 0 insertions, 0 deletions

Muttrc renamed to gistfile1.sh

File renamed without changes

ramn revised this gist 14 years ago. Go to revision

1 file changed, 0 insertions, 0 deletions

.muttrc renamed to Muttrc

File renamed without changes

ramn revised this gist 14 years ago. Go to revision

1 file changed, 56 insertions

.muttrc(file created)

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