]> diplodocus.org Git - nmh/blob - docs/contrib/replaliases
In expand_pseudoheader(), set Content-Type to 7-bit for ASCII text.
[nmh] / docs / contrib / replaliases
1 #### replaliases
2 ####
3 #### convenience functions for various repl(1) commands
4
5 #### If using par (see mhn.defaults), it helps to have its PARINIT
6 #### environment variable set. If you really want it to be null,
7 #### either comment this out or set it to, e.g., ' '.
8 #### Removed "R" from PARINIT recommendation in par(1) man page so
9 #### that it doesn't consider words that are too long to be an error.
10 if [ -z "$PARINIT" ]; then
11 PARINIT='rTbgq B=.,?_A_a Q=_s>|'
12 export PARINIT
13 fi
14
15 #### Reply, including text/html (converted to text/plain) and text/plain parts.
16 #### To ease editing at the What now? prompt, add a line like this to your
17 #### .mh_profile:
18 #### mhbuild-next: $EDITOR
19 #### assuming that your EDTIOR environment variable is set; if not, replace
20 #### $EDITOR above with the name of your editor. Without that profile entry,
21 #### enter "e[dit] $EDITOR" at the What now? prompt.
22 rt() {
23 repl -filter mhl.replywithoutbody -editor mhbuild \
24 -convertargs text/html '' -convertargs text/plain '' "$@"
25 }
26
27
28 # Local Variables:
29 # mode: sh
30 # End: