diff mutt/muttrc @ 265:4e9cabd763b9

Add mutt config.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 24 Jan 2015 15:44:06 -0800
parents
children 386588661868
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mutt/muttrc	Sat Jan 24 15:44:06 2015 -0800
@@ -0,0 +1,52 @@
+
+# Connection
+set folder = "imaps://$my_imap"
+set imap_user = "$my_user"
+set imap_pass = "$my_pass"
+set smtp_url = "smtps://$my_user@$my_smtp:465"
+set smtp_pass = "$my_pass"
+set from = "$my_user"
+set realname = "Ludovic Chabant"
+
+set imap_check_subscribed
+set imap_idle
+
+
+# Folders
+set folder = "imaps://$my_url/$my_folder_inbox"
+set spoolfile = "imaps://$my_url/$my_folder_inbox"
+set record = "imaps://$my_url/$my_folder_sent"
+set postponed = "imaps://$my_url/$my_folder_drafts"
+
+
+# Basic config
+set editor = "vim"
+set hostname = "$my_hostname"
+set header_cache=~/.mutt/cache/headers
+set message_cachedir=~/.mutt/cache/bodies
+set certificate_file=~/.mutt/certificates
+set move = no
+set delete = yes
+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 
+
+
+# Gmail-style keyboard shortcuts
+#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,pager gi "<change-folder>=INBOX<enter>" "Go to inbox"
+#macro index,pager ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to all mail"
+#macro index,pager gs "<change-folder>=[Gmail]/Starred<enter>" "Go to starred messages"
+#macro index,pager gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to drafts"
+