summaryrefslogtreecommitdiff
path: root/muttrc
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2018-07-02 09:12:18 -0700
committerBen Sima <ben@bsima.me>2018-07-02 09:26:38 -0700
commitc6bb5f5fb1de3c26350cf0a740040df249cfc3ec (patch)
treeb63e0b200c823903c5343298c39f483a5c9a1e89 /muttrc
parenta5f8f838e2f4362d0a720739c75ff6ce958a0782 (diff)
Add and configure (neo)mutt
Diffstat (limited to 'muttrc')
-rw-r--r--muttrc73
1 files changed, 73 insertions, 0 deletions
diff --git a/muttrc b/muttrc
new file mode 100644
index 0000000..451c88a
--- /dev/null
+++ b/muttrc
@@ -0,0 +1,73 @@
+# vim: filetype=muttrc
+
+set realname = "Ben Sima"
+set mbox_type = Maildir
+
+my_hdr X-URL: https://www.bsima.me
+
+set editor = "vim -f"
+set mail_check = 60
+set timeout = 60
+set header_cache = ~/.mutt/cache/headers
+set message_cachedir = ~/.mutt/cache/bodies
+set certificate_file =~/.mutt/certificates
+
+set move = no
+set include
+set auto_tag = yes
+alternative_order text/plain text/html *
+auto_view text/html
+bind editor ^T complete
+set pager_index_lines = 10
+set implicit_autoview = yes
+
+set sort_aux = 'last-date-received'
+set index_format = "[%Z] %D %-20.20F %s"
+set date_format = "%m.%d..%H.%M"
+set nostrict_threads
+set sort = 'threads'
+set markers = no # hide line-wrap markers
+
+# Ignore all headers
+ignore *
+
+# Then un-ignore the ones I want to see
+unignore From:
+unignore To:
+unignore Reply-To:
+unignore Subject:
+unignore Date:
+unignore Organization:
+unignore Newsgroups:
+unignore CC:
+unignore BCC:
+unignore User-Agent:
+
+# Now order the visable header lines
+hdr_order Date: From: To: CC: BCC: Reply-To: Subject: Organization: User-Agent:
+
+set forward_format = "Fwd: %s"
+set fast_reply=yes
+set forward_decode # decode when forwarding
+set reply_to # reply to Reply to: field
+set use_envelope_from = yes
+set text_flowed = yes
+
+set my_pw = "`pass bnet/helium/mail/ben`"
+
+set imap_user = "ben@bsima.me"
+set imap_pass = $my_pw
+
+set from = "ben@bsima.me"
+set smtp_url = "smtp://ben@bsima.me@mail.bsima.me:587"
+set smtp_pass = $my_pw
+
+set ssl_starttls = "yes"
+
+set folder = "~/Mail/ben@bsima.me"
+set spoolfile = "+INBOX"
+set postponed = "+Drafts"
+set record = "+Sent"
+set imap_pipeline_depth = 0
+
+