Created
May 2, 2010 17:20
-
-
Save mottram/387292 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A basic .muttrc for use with GMail | |
# NB: if you're in the UK, use this file instead: | |
# http://gist.github.com/387298 | |
# Change the following six lines to match your Gmail account details | |
set imap_user = "[email protected]" | |
set imap_pass = "PASSWORD" | |
set smtp_url = "smtp://[email protected]:587/" | |
set smtp_pass = "PASSWORD" | |
set from = "[email protected]" | |
set realname = "YOUR NAME" | |
# Basic config, you can leave this as is | |
set folder = "imaps://imap.gmail.com:993" | |
set spoolfile = "+INBOX" | |
set imap_check_subscribed | |
set hostname = gmail.com | |
set mail_check = 120 | |
set timeout = 300 | |
set imap_keepalive = 300 | |
set postponed = "+[GMail]/Drafts" | |
set record = "+[GMail]/Sent Mail" | |
set header_cache=~/.mutt/cache/headers | |
set message_cachedir=~/.mutt/cache/bodies | |
set certificate_file=~/.mutt/certificates | |
set move = no | |
set include | |
set sort = 'threads' | |
set sort_aux = 'reverse-last-date-received' | |
set auto_tag = yes | |
ignore "Authentication-Results:" | |
ignore "DomainKey-Signature:" | |
ignore "DKIM-Signature:" | |
hdr_order Date From To Cc | |
alternative_order text/plain text/html * | |
auto_view text/html | |
bind editor <Tab> complete-query | |
bind editor ^T complete | |
bind editor <space> noop | |
macro index,pager y "<enter-command>unset trash\n <delete-message>" "Gmail archive message" | |
macro index,pager d "<enter-command>set trash=\"imaps://imap.googlemail.com/[GMail]/Bin\"\n <delete-message>" "Gmail delete message" | |
macro index gi "<change-folder>=INBOX<enter>" "Go to inbox" | |
macro index ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to all mail" | |
macro index gs "<change-folder>=[Gmail]/Starred<enter>" "Go to starred messages" | |
macro index gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to drafts" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment