f3b3d1caaae90908bb85b9a59be6342a5d92e853
[grml-etc.git] / etc / skel / .muttngrc
1 # Filename:      .muttngrc
2 # Purpose:       minimal setup file for mail program muttng
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 # Latest change: Die Mai 10 00:24:29 CEST 2005 [mika]
7 ################################################################################
8 # Thanks to Sven Guckes for his template!
9 ################################################################################
10
11     set allow_8bit           # send data as it is.  no conversion.
12   unset arrow_cursor         #  Show current mail with an inverse bar.
13     set ascii_chars          # set: use ASCII characters to build the thread tree
14     set autoedit             # call editor without prompting for To: and Subject:
15   unset confirmappend        # set: prompt for confirmation on appending mail to folder
16     set confirmcreate        # set: prompt for confirmation on creation of folders
17     set copy                 # Always keep a copy of my mails!
18     set delete=ask-yes       # ask before deleting any messages
19     set edit_headers         # edit all headers lines in the editor
20     set editor=vim           # use Vim as the editor (Vi IMproved www.vim.org)
21     set folder=~/Mail        # directory with all mail folders
22   unset followup_to          # do not generate a Followup-To header
23     set force_name           # set: save outbound mail by username
24     set hidden_host          # do not use a hostname in the address - PROBLEMATIC!
25     set history=100          # number of input lines for prompts to remember
26     set include              # set: include mail as quoted text in replies
27   unset mark_old             # set: make distinction between New mail and Old mail.
28     set mime_forward=ask-yes # ask: attach message - or just quote it?
29   unset move                 # do not move read mails from mailbox to $mbox (was: "set hold")
30     set pager_context=1      # number of lines that overlap on paging
31 #   set pager_index_lines=0  # number of lines to see from the index
32     set pager_stop           # "next_page" won't jump to next message at end of messages
33 #   set print_command="mp|lpr" # pipe message to "mp" for formattting - then on to "lpr"
34   unset prompt_after         # set: gives you a prompt when pager exits
35     set quote_regexp="^>"    # some people just use '>' - *sigh*
36     set read_inc=10          # '10': show count number for every tenth mail
37     set recall=ask-yes       # do not prompt for recalling postponed mails with 'm'
38     set reply_to=ask-yes     # "reply":          set:  Use address in Reply-To?
39     set reverse_alias        # show the name of sender as set with my alias for him
40     set reverse_name         # reply as the user to whom the mail was sent to
41     set save_name            # set: save outbound mail to =username if it exists
42 #   set shell=zsh            # use the zsh for shell commands
43     set sort=threads         # sorting method - I definitely like "threads" best
44     set status_on_top        # set: present the status bar at top, ie before the index
45     set strict_threads       # set: use references: for threading only, ie do not
46                              # thread by subject or in-reply-to
47     set tilde                # show non-existant lines of text with a tilde at begin-of-line
48     set tmpdir="/tmp"        # directory where temporary files are to be placed
49     set to_chars="X+TCF"     # message flags: non-personal,personal,To:,Cc:,From:
50     set write_inc=10         # update number after each tenth read mail
51
52 # Options with a long value:
53 #   set alternates=...
54     set attribution="* %n <%a> [%(%y%m%d %H:%M)]:"              # how to cite the author
55     set reply_regexp="^((aw|antw.?|antwort|re|r e|r?f|sv):[ \t]*)*"
56
57 # Format Options
58     set forward_format="(forw) %s"
59     set index_format="%4C %Z %[!%y%m%d] %-17.17F (%3l) %s"
60     set pager_format="%S [%C/%T] %n (%l) %s"
61     set status_format="%v: %f (%s) [%M/%m] [N=%n,*=%t,new=%b]"
62
63 # Show the "text/plain" part *before* the "text/html" part:
64   alternative_order text/plain text/html
65   auto_view text/html
66
67 # KEY BINDINGS
68   bind index zt current-top
69   bind index zz current-middle
70   bind index zb current-bottom
71
72 # HEADER DISPLAY
73   ignore *
74   unignore from: date: subject: to: cc: reply-to:
75   unignore sender:
76   unignore priority: importance:
77   unignore organization organisation
78   unignore mail-followup-to:
79   unignore resent- x-resent
80 # unignore user-agent: x-agent: x-mailer: x-newsreader: x-mailing-list:
81 # unignore x-editor
82 # unignore message-id: newsgroups: posted-to: posted-and-mailed:
83 # unignore x-also-posted-to: x-newsgroups:
84 # unignore delivered-to x-envelope-to:
85 # unignore x-accept-language
86   unhdr_order *
87   hdr_order Sender: From From: Reply-To: Subject: Organization: Date: Message-Id: User-Agent: X-Editor: X-Mailer: X-Newsreader: X-Agent: To: Cc: Newsgroups: X-Resent Followup-To: Mail-Followup-To:
88
89 ## END OF FILE #################################################################