dotfiles

dotfiles.git
git clone git://git.lenczewski.org/dotfiles.git
Log | Files | Refs

muttrc (2074B)


      1 # vim: filetype=muttrc
      2 
      3 # viewing and attachments
      4 auto_view application/pgp-encrypted
      5 auto_view text/html
      6 alternative_order text/plain text/enriched text/html
      7 bind attach <return> view-mailcap
      8 
      9 # general settings
     10 set charset = "utf-8"
     11 set send_charset = "utf-8"
     12 set assumed_charset = "iso-8859-1"
     13 
     14 set editor = "vim -c 'set syntax=mail ft=mail enc=utf-8'"
     15 
     16 set rfc2047_parameters = yes
     17 
     18 set wait_key = no # dont ask "Press key to continue"
     19 set sleep_time = 0 # dont pause to show informational messages
     20 set markers = no # dont wrap long links with +
     21 set mark_old = no # unread email stays unread until opened
     22 set mime_forward = yes # attachments are forwarded with email body
     23 set fast_reply = yes # skip to composing a reply
     24 set fcc_attach = yes # save attachments with email body
     25 set forward_format = "Fwd: %s" # set the subject format for forwarded emails
     26 set forward_quote = yes # include message in forwarded emails
     27 set reverse_name = yes # include the senders name in replies
     28 set reverse_realname = yes # include the senders real name in replies
     29 set include = yes # include the original message in replies
     30 
     31 set sort = threads
     32 set sort_aux = reverse-last-date-received
     33 set strict_threads = yes
     34 
     35 set header_cache = ~/.cache/mutt
     36 set message_cachedir = "~/.cache/mutt"
     37 
     38 # accounts
     39 # ============================================================================
     40 
     41 set ssl_client_cert = "/path/to/client/cert"
     42 set ssl_force_tls
     43 
     44 # IMAP
     45 # ============================================================================
     46 
     47 set folder      = imaps://mail.server.com/
     48 
     49 set spoolfile	= +INBOX
     50 set postponed	= +Drafts
     51 set record	= +Sent
     52 
     53 mailboxes 	= +INBOX +Drafts +Sent
     54 
     55 set imap_user   = user
     56 
     57 set imap_idle
     58 set imap_check_subscribed
     59 unset imap_passive
     60 unset imap_peek
     61 
     62 set mail_check = 120
     63 set timeout = 15
     64 
     65 # SMTP
     66 # ============================================================================
     67 
     68 set smtp_authenticators = "login"
     69 
     70 set smtp_url	= smtps://$imap_user@mail.server.com/
     71 
     72 set realname	= "Firstname Lastname"
     73 set from	= "firlas@server.com"
     74 
     75 set signature   = "~/.signature"