Bump S-nail v14.7.8
[s-mailx.git] / nail.rc
blobbb1ef9a48408493cf93fa37b79efd5c5c4377213
1 #--MKRC-START--
2 # /etc/s-nail.rc - configuration file for S-nail(1)
3 #--MKRC-END--
4 # S-nail(1): v14.7.8 / 2014-09-29
6 ## The standard POSIX 2008/Cor 1-2013 mandates the following initial settings:
7 # (Keep in sync: ./main.c:_startup(), ./nail.rc, ./nail.1:"Initial settings"!)
8 # [a]   noallnet, noappend, asksub, noaskbcc, noaskcc, noautoprint,
9 # [b-e] nobang, nocmd, nocrt, nodebug, nodot, escape="~",
10 # [f-i] noflipr, nofolder, header, nohold, noignore, noignoreeof,
11 # [j-o] nokeep, nokeepsave, nometoo, nooutfolder,
12 # [p-r] nopage, prompt="? ", noquiet, norecord,
13 # [s]   save, nosendwait, noshowto, nosign, noSign,
14 # [t-z] toplines="5"
15 # Notes:
16 # - *noonehop* doesn't exist in this implementation.
17 #   (To pass options through to an MTA, either add them after a '--' separator
18 #   on the command line or by setting the *sendmail-arguments* variable.)
19 # - *prompt* is "\\& " by default, which will act POSIX-compliant
20 #   unless the user would set *bsdcompat*
22 ## The remaining content adjusts the standard-imposed default settings.
23 # Note that some of the following flags are specific to S-nail(1) and may thus
24 # not work with other Mail(1) / mailx(1) programs.
25 # Entries are marked [OPTION] if their availability is compile-time dependent
27 # If threaded mode is activated, automatically collapse thread
28 set autocollapse
30 # Enter threaded mode automatically
31 #set autothread autosort=thread
33 # Append rather than prepend when writing to mbox automatically.
34 # This has no effect unless *hold* is unset (it is set below)
35 set append
37 # Ask for a message subject.
38 set ask
40 # *bsdannounce* prints a header summary on folder change and thus complements
41 # *header* on a per-folder basis (it is meaningless unless *header* is set)
42 set bsdannounce
44 # Uncomment this in order to get coloured output in $PAGER.
45 # (Coloured output is only used if $TERM is either found in *colour-terms*
46 # or includes the string "color")
47 #set colour-pager
49 # Assume a CRT-like terminal and invoke a $PAGER
50 set crt
52 # Define date display in header summary
53 #set datefield="%R %m-%d" datefield-markout-older="   %g-%m-%d"
55 # When composing messages a line consisting of `.' finalizes a message
56 set dot
58 # Immediately start $EDITOR (or $VISUAL) when composing a message
59 #set editalong
61 # Do not remove empty private mail folders
62 set emptybox
64 # Startup into interactive mode even if the (given) mailbox is empty
65 #set emptystart
67 # [OPTION] Add more entries to the history as is done by default
68 set history-gabby
70 # Do not forward to mbox by default since this is likely to be
71 # irritating for most users today
72 set hold
74 # Quote the original message in replies by "> " as usual on the Internet
75 set indentprefix="> "
77 # Mark messages that have been answered
78 set markanswered
80 # Try to circumvent false or missing MIME Content-Type descriptions
81 # (Can be set to values for extended behaviour, please see the manual.)
82 set mime-counter-evidence
84 # Control loading of mime.types(5) file: the value may be a combination of the
85 # letters "s" and "u": if "u" is seen ~/.mime.types will be loaded if possible;
86 # "s" adds /etc/mime.types, if available; setting this without any value uses
87 # only a set of builtin mimetypes; the default behaviour equals "us".
88 #set mimetypes-load-control
90 # Do not remove empty mail folders in the spool directory.
91 # This may be relevant for privacy since other users could otherwise create
92 # them with different permissions
93 set keep
95 # When writing mailbox files we strip Content-Length: and Lines: header fields
96 # from edited / changed messages, because S-nail doesn't deal with these
97 # (non-standard) fields -- and since other MUAs may rely on their content, if
98 # present, it seems more useful to strip them than to keep them, now that they
99 # became invalid; set this to include them nonetheless
100 #set keep-content-length
102 # A nice prompt for ISO 6429/ECMA-48 terminals
103 #set prompt="\033[31m?\?[\$ \@]\& \033[0m"
105 # Automatically quote the text of the message that is responded to
106 set quote
108 # On group replies, specify only the sender of the original mail in  To: and
109 # mention it's other recipients in the secondary Cc: instead of placing them
110 # all together in To:
111 set recipients-in-cc
113 # When responding to a message, try to answer in the same character set
114 #set reply-in-same-charset
116 # [OPTION] Outgoing messages are sent in UTF-8 if possible, otherwise LATIN1.
117 # Note: it is highly advisable to read the section "Character sets" of the
118 # manual in order to understand all the possibilities that exist to fine-tune
119 # charset usage (variables also of interest: *ttycharset*, *charset-8bit*,
120 # *sendcharsets-else-ttycharset*; and of course we inherit the $LC_CTYPE /
121 # $LC_ALL / $LANG environment variables and react upon them)
122 set sendcharsets=utf-8,iso-8859-1
124 # Display real sender names in header summaries instead of only addresses
125 set showname
127 # Show recipients of messages sent by the user himself in header summaries
128 set showto
130 # Hide some header fields which are uninteresting for most human readers
131 ignore received in-reply-to message-id references
132 ignore mime-version content-transfer-encoding
134 # Only include selected header fields when forwarding messages.
135 fwdretain subject date from to
137 # Unfortunately some mime.types(5) that are really text were assigned to
138 # `application/xy' rather than to `text/xy'.
139 # The special pipe command `@' will force treatment of an attachment as plain
140 # text, so add some rather useful of those
141 set pipe-application/javascript=@
142 set pipe-application/json=@
143 set pipe-application/mbox=@
144 set pipe-application/pgp-signature=@
145 set pipe-application/x-csh=@
146 set pipe-application/x-latex=@
147 set pipe-application/x-perl=@
148 set pipe-application/x-sh=@
149 set pipe-application/x-shar=@
150 set pipe-application/x-tex=@
151 set pipe-application/x-texinfo=@
152 set pipe-application/x-xfig=@
153 set pipe-application/xhtml+xml=@
154 set pipe-application/xml=@
155 set pipe-application/xml-dtd=@
156 set pipe-application/xslt+xml=@
157 set pipe-image/svg+xml=@
159 # Other pipe-CONTENT/SUBCONTENT entries
160 #set pipe-text/html="lynx -stdin -dump -force_html"
162 # s-it-mode