jaromail

a commandline tool to easily and privately handle your e-mail
git clone git://parazyd.org/jaromail.git
Log | Files | Refs | Submodules | README

general (2870B)


      1 # Postino's generic config settings for Mutt
      2 # originally used by Jaromil
      3 
      4 ###############
      5 ## SMTP options
      6 unset use_8bitmime
      7 #set sendmail_wait = 0
      8 
      9 
     10 ## Alias options TODO
     11 #set alias_file = ~/.mutt/aliases
     12 #source ~/.mutt/aliases
     13 
     14 ##################
     15 ## General options
     16 #set locale = "C"
     17 unset suspend
     18 unset wait_key
     19 
     20 set send_charset = utf-8
     21 set assumed_charset = utf-8
     22 # assumed was us-ascii
     23 
     24 #set charset = iso-8859-1
     25 #set send_charset = us-ascii
     26 set charset = utf-8
     27 #set shell = retrieved from passwd file
     28 #set simple_search = "~f %s | ~s %s"
     29 
     30 
     31 
     32 ############
     33 ## Main menu
     34 set collapse_unread
     35 set arrow_cursor
     36 set ascii_chars
     37 set auto_tag
     38 unset beep
     39 unset help
     40 set mark_old = no
     41 unset markers
     42 #set resolve
     43 unset sort_re
     44 set wrap_search = yes
     45 #set mail_check = 5
     46 set timeout = 300
     47 set delete = yes
     48 #set reply_regexp = "^(re|aw):[ \t]*"
     49 #set status_chars = "-*%A"
     50 #set to_chars = " +TCF"
     51 set pipe_decode = "yes"
     52 set pipe_split = "no"
     53 set pipe_sep = "#+++JAROMAIL_PIPE_SEPARATOR\n"
     54 
     55 ##########
     56 ## Sorting
     57 set sort=threads
     58 set sort_browser=reverse-date
     59 set sort_aux=reverse-date
     60 
     61 ################
     62 ## Pager options
     63 #set prompt_after
     64 unset smart_wrap
     65 set tilde
     66 set pager_stop
     67 # set pager_format = "-%S- %C/%m: %-20.20n   %s"
     68 set quote_regexp="^ *[a-zA-Z]*[]>|}=][]>|}:=]*"
     69 auto_view text/html
     70 # also text/plain to convert charset
     71 # auto_view text/plain
     72 
     73 ##################
     74 ## Compose options
     75 set weed = no
     76 
     77 ################
     78 ## Reply options
     79 set reply_to = ask-yes
     80 set askcc = yes
     81 
     82 
     83 ##################
     84 ## Sending options
     85 set allow_8bit = yes
     86 set allow_ansi = yes
     87 #set bounce_delivered
     88 set followup_to = yes
     89 set honor_followup_to = yes
     90 #unset force_name
     91 #unset save_name
     92 #set use_from
     93 set abort_nosubject = no
     94 set abort_unmodified = no
     95 set copy = yes
     96 # mutt is not going to copy sent messages
     97 # fcc-hook . "=sent"
     98 set record = ""
     99 
    100 ##################
    101 ## Forward options
    102 # set forward_decode = yes
    103 #set forward_format = "[Fwd] %s"
    104 set mime_forward = ask-yes
    105 
    106 ######################
    107 ## Folders and mailbox
    108 set noconfirmappend
    109 #set confirmcreate
    110 #unset mh_purge
    111 #unset save_address
    112 set save_empty
    113 #set folder_format = "%N %F %2l %-8.8u %-8.8g %8s %d %f"
    114 set move = no
    115 # deactivate imap idle, there is a broken implementation of it in mutt
    116 set imap_idle = no
    117 # set mbox_type = mbox
    118 # bug for when a folder has a period in the name
    119 # http://lists.df7cb.de/mutt/message/20090601.013609.d402c3aa.en.html
    120 set imap_delim_chars = '/'
    121 
    122 #######################################
    123 ## Attaching documents and MIME options
    124 #set attach_sep = newline
    125 #set attach_split
    126 #set fcc_attach
    127 set fcc_clear = no
    128 #set attach_format = "%u%D%t%2n %T%.40d%> [%.7m/%.10M, %.6e, %s] "
    129 #set message_format = "%s"
    130 
    131 ###################
    132 ## mailcap and MIME
    133 set mailcap_sanitize
    134 
    135 ###################
    136 ## Printing options
    137 set print_command = lpr
    138 #set print = ask-no
    139 
    140 ## end of general muttrc
    141 ########################