Created
February 22, 2011 14:43
-
-
Save xee5ch/838762 to your computer and use it in GitHub Desktop.
Mutt Config for Georgetown Mirapoint IMAP
This file contains 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
# Maildir settings | |
set mbox_type=Maildir | |
set folder=$HOME/Mail/company.tld/bf4411b6-577d-4467-8fc8-fa9d887c36af/ | |
set spoolfile=+"INBOX" | |
set record="+Sent" | |
set postponed="+Drafts" | |
# Client caching | |
set header_cache =$HOME/Mail/cache/headers | |
set message_cachedir =$HOME/Mail/cache/bodies | |
set certificate_file =$HOME/Mail/cache/certs | |
# Sort order | |
set sort=threads | |
set sort_aux=reverse-last-date-received | |
# Received header config | |
hdr_order Date From To Cc | |
ignore "Authentication-Results:" | |
ignore "DomainKey-Signature:" | |
ignore "DKIM-Signature:" | |
ignore * | |
unignore from: date subject to cc | |
unignore x-mailing-list: posted-to: | |
unignore x-mailer: | |
# My Editor | |
set editor='vim + -c "set textwidth=72" -c "set wrap" -c "set nocp" -c "?^$"' | |
# Convert HTML emails to text | |
# | |
# See here for additional ~/.mailcap changes: | |
# http://www.debian-administration.org/articles/75 | |
auto_view text/html | |
# Signature configs | |
# Set the standard text signature | |
set signature=$HOME/Mail/sigs/work.sig | |
# Attach vCard when interactively sending message. | |
macro compose y '<attach-file>\$HOME/Mail/sigs/account.vcf<enter><send-message>' | |
# SMTP settings | |
set sendmail="/usr/bin/msmtp" | |
# Sent header config | |
set use_from=yes | |
set realname="My Name" | |
set [email protected] | |
set envelope_from=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment