Added format support for zputlit function escape. It requires
[mmh] / man / mh-format.man
1 .TH MH-FORMAT %manext5% "November 4, 2012" "%nmhversion%"
2 .\"
3 .\" %nmhwarning%
4 .\"
5 .SH NAME
6 mh-format \- format file for nmh message system
7 .SH DESCRIPTION
8 Several
9 .B nmh
10 commands utilize either a
11 .I format
12 string or a
13 .I format
14 file during their execution.  For example,
15 .B scan
16 uses a format string which directs it how to generate the scan listing
17 for each message;
18 .B repl
19 uses a format file which directs it
20 how to generate the reply to a message, and so on.
21 .PP
22 There are a few alternate scan listing formats available
23 in
24 .IR nmh/etc/scan.time ,
25 .IR nmh/etc/scan.size ,
26 and
27 .IR nmh/etc/scan.timely .
28 Look in
29 .I nmh/etc
30 for other
31 .B scan
32 and
33 .B repl
34 format files which may have been written at your site.
35 .PP
36 It suffices to have your local
37 .B nmh
38 expert actually write new format
39 commands or modify existing ones.  This manual section explains how to
40 do that.  Note: familiarity with the C
41 .B printf
42 routine is assumed.
43 .PP
44 A format string consists of ordinary text, and special multi-character
45 escape sequences which begin with `%'.  When specifying a format
46 string, the usual C backslash characters are honored: `\\b', `\\f',
47 `\\n', `\\r', and `\\t'.  Continuation lines in format files end with
48 `\\' followed by the newline character.
49 .\" TALK ABOUT SYNTAX FIRST, THEN SEMANTICS
50 .SS SYNTAX
51 Format strings are built around
52 .IR "escape sequences" .
53 There are three types of escape sequences: header
54 .IR components ,
55 built-in
56 .IR functions ,
57 and flow
58 .IR control .
59 Comments may be inserted in most places where a function argument is
60 not expected.  A comment begins with `%;' and ends with a (non-escaped)
61 newline.
62 .PP
63 A
64 .I component
65 escape is specified as
66 .RI `%{ component }',
67 and
68 exists for each header found in the message being processed.  For example
69 .RI `%{ date }'
70 refers to the \*(lqDate:\*(rq field of the appropriate message.
71 All component escapes have a string value.  Normally, component values are
72 compressed by converting any control characters (tab and newline included)
73 to spaces, then eliding any leading or multiple spaces.  However, commands
74 may give different interpretations to some component escapes; be sure
75 to refer to each command's manual entry for complete details.  Some commands
76 (such as
77 .B ap
78 and
79 .BR mhl )
80 use a special component
81 .RI `%{ text }'
82 to refer to the text being processed; see their respective man pages for
83 details and examples.
84 .PP
85 A
86 .I function
87 escape is specified as
88 .RI `%( function )'.
89 All functions are built-in, and most have a string or numeric value.
90 A function escape may have an
91 .IR argument .
92 The argument follows the function escape: separating
93 whitespace is discarded:
94 .RI `%( function " " argument )'.
95 .PP
96 In addition to literal numbers or strings, 
97 the argument to a function escape can be another function, a component,
98 or a control escape.  When the argument is a function or a
99 component, they are listed without a leading `%'.  When control escapes
100 are used as function arguments, they written as normally, with
101 a leading `%';
102 .SS "Control escapes"
103 .PP
104 A
105 .I control
106 escape is one of: `%<', `%?', `%|', or `%>'. 
107 These are combined into the conditional execution construct:
108 .PP
109 .RS 5
110 .nf
111 .RI "%< " condition " " "format-text"
112 .RI "%? " condition " " "format-text"
113     \&...
114 .RI "%| " "format-text"
115 %>
116 .fi
117 .RE
118 .PP
119 Extra white space is shown here only for clarity.  These
120 constructs may be nested without ambiguity.  They form a general
121 .B if\-elseif\-else\-endif
122 block where only one of the
123 format-texts
124 is interpreted.  In other 
125 words, `%<' is like the "if", `%?' is like the "elseif", `%|' is like 
126 "else", and `%>' is like "endif".
127 .PP
128 A `%<' or `%?' control escape causes its condition to be evaluated.  
129 This condition is a
130 .I component
131 or
132 .IR function .
133 For integer valued functions or components, the condition is true
134 if the function return or component value is non-zero, and false if zero.
135 For string valued functions or components, the condition is true
136 if the function return or component value is 
137 a non-empty string, and false for an empty string.
138 .PP
139 The `%?' control escape is optional, and may there may be more
140 than one `%?' control escape in a conditional block.
141 The `%|' control escape
142 is also optional, but may be included at most once.
143 .SS "Function escapes"
144 Functions expecting an argument generally
145 require an argument of a particular type.
146 In addition to the number and string types,
147 these include:
148 .PP
149 .RS 5
150 .nf
151 .ta +\w'Argument 'u +\w'An optional component, 'u
152 .I "Argument    Description     Example Syntax"
153 literal A literal number        %(\fIfunc\fR 1234)
154         or string               %(\fIfunc\fR text string)
155 comp    Any component           %(\fIfunc\fR\^{\fIin-reply-to\fR\^})
156 date    A date component        %(\fIfunc\fR\^{\fIdate\fR\^})
157 addr    An address component    %(\fIfunc\fR\^{\fIfrom\fR\^})
158 expr    Nothing %(\fIfunc\fR)
159         or a subexpression      %(\fIfunc\fR\^(\fIfunc2\fR\^))
160         or control escape       %(\fIfunc\fR %<{\fIreply-to\fR\^}%|%{\fIfrom\fR\^}%>)
161 .fi
162 .RE
163 .PP
164 The types
165 .I date
166 and
167 .I addr
168 have the same syntax as
169 .IR comp ,
170 but require that the header component be a date string, or address
171 string, respectively.
172 .PP
173 Most arguments not of type
174 .IR expr
175 are required.
176 When escapes are nested (via expr arguments), evaluation is done from inner-most to outer-most.
177 As noted above, for the
178 expr
179 argument type, 
180 functions and components are written without a
181 leading `%'.
182 Control escape arguments must use a leading `%', preceded by a space.
183 .PP
184 For example,
185 .PP
186 .RS 5
187 .nf
188 %<(mymbox{from}) To: %{to}%>
189 .fi
190 .RE
191 .PP
192 writes  the  value of the header component \*(lqFrom:\*(rq to the
193 internal register named str; then (\fImymbox\fR\^) reads str and
194 writes its result to the internal register named 
195 .IR num ; 
196 then the control escape evaluates 
197 .IR num .  
198 If
199 .IR num
200 is non-zero, the
201 string \*(lqTo:\*(rq is printed  followed  by  the  value  of  the
202 header component \*(lqTo:\*(rq.
203 .SS Evaluation
204 The evaluation of format strings is performed
205 by a small virtual machine.
206 The machine is capable of evaluating nested expressions
207 as described above, and in addition
208 has an integer register
209 .IR num ,
210 and a text string register
211 .IR str .
212 When a function escape that
213 accepts an optional argument is processed,
214 and the argument is not present, the current value of either
215 .I num
216 or
217 .I str
218 is used as the argument: which register is
219 used depends on the function, as listed below.
220 .PP
221 Component escapes write the value of their message header in
222 .IR str .
223 Function escapes write their return value in
224 .I num
225 for functions returning integer or boolean values, and in
226 .I str
227 for functions returning string values.  (The boolean type is a subset
228 of integers with usual values 0=false and 1=true.)  Control escapes
229 return a boolean value, setting
230 .I num
231 to 1 if the last explicit condition
232 evaluated by a `%<' or `%?' control
233 succeeded, and 0 otherwise.
234 .PP
235 All component escapes, and those function escapes which return an
236 integer or string value, evaluate to their value as well as setting
237 .I str
238 or
239 .IR num .
240 Outermost escape expressions in
241 these forms will print
242 their value, but outermost escapes which return a boolean value
243 do not result in printed output.
244 .SS Functions
245 The function escapes may be roughly grouped into a few categories.
246 .PP
247 .RS 5
248 .nf
249 .ta \w'Fformataddr 'u +\w'Aboolean 'u +\w'Rboolean 'u
250 .I "Function    Argument   Result       Description"
251 msg             integer message number
252 cur             integer message is current (0 or 1)
253 unseen          integer message is unseen (0 or 1)
254 size            integer size of message
255 strlen          integer length of \fIstr\fR
256 width           integer output buffer size in bytes
257 charleft                integer bytes left in output buffer
258 timenow         integer seconds since the UNIX epoch
259 me              string  the user's mailbox (username)
260 myhost          string  the user's local hostname
261 myname          string  the user's name
262 localmbox               string  the complete local mailbox
263 eq      literal boolean \fInum\fR == \fIarg\fR
264 ne      literal boolean \fInum\fR != \fIarg\fR
265 gt      literal boolean \fInum\fR > \fIarg\fR
266 match   literal boolean \fIstr\fR contains \fIarg\fR
267 amatch  literal boolean \fIstr\fR starts with \fIarg\fR
268 plus    literal integer \fIarg\fR plus \fInum\fR
269 minus   literal integer \fIarg\fR minus \fInum\fR
270 divide  literal integer \fInum\fR divided by \fIarg\fR
271 modulo  literal integer \fInum\fR modulo \fIarg\fR
272 num     literal integer Set \fInum\fR to \fIarg\fR.
273 num             integer Set \fInum\fR to zero.
274 lit     literal string  Set \fIstr\fR to \fIarg\fR.
275 lit             string  Clear \fIstr\fR.
276 getenv  literal string  Set \fIstr\fR to environment value of \fIarg\fR
277 profile literal string  Set \fIstr\fR to profile component \fIarg\fR 
278                         value
279 .\" dat literal int     return value of dat[arg]
280 nonzero expr    boolean \fInum\fR is non-zero
281 zero    expr    boolean \fInum\fR is zero
282 null    expr    boolean \fIstr\fR is empty
283 nonnull expr    boolean \fIstr\fR is non-empty
284 void    expr            Set \fIstr\fR or \fInum\fR
285 comp    comp    string  Set \fIstr\fR to component text
286 compval comp    integer Set \fInum\fR to \*(lq\fBatoi\fR(\fIcomp\fR\^)\*(rq
287 .\" compflag    comp    integer Set \fInum\fR to component flags bits (internal)
288 .\" decodecomp  comp    string  Set \fIstr\fR to RFC-2047 decoded component text
289 decode  expr    string  decode \fIstr\fR as RFC-2047 (MIME-encoded) 
290                         component
291 unquote expr    string  remove RFC-2822 quotes from \fIstr\fR
292 trim    expr            trim trailing white-space from \fIstr\fR
293 putstr  expr            print \fIstr\fR
294 putstrf expr            print \fIstr\fR in a fixed width
295 putnum  expr            print \fInum\fR
296 putnumf expr            print \fInum\fR in a fixed width
297 .\" addtoseq literal    add msg to sequence (LBL option)
298 putlit  expr            print \fIstr\fR without space compression
299 zputlit expr            print \fIstr\fR without space compression;
300                         \fIstr\fR must occupy no width on display
301 formataddr      expr            append \fIarg\fR to \fIstr\fR as a
302                         (comma separated) address list
303 concataddr      expr            append \fIarg\fR to \fIstr\fR as a
304                         (comma separated) address list,
305                         including duplicates,
306                         see Special Handling
307 putaddr literal         print \fIstr\fR address list with
308                         \fIarg\fR as optional label;
309                         get line width from \fInum\fR
310 .fi
311 .RE
312 .PP
313 The (\fIme\fR\^) function returns the username of the current user.  The
314 (\fImyhost\fR\^) function returns the
315 .B localname
316 entry in
317 .IR mts.conf ,
318 or the local hostname if
319 .B localname
320 is not configured.  The (\fImyname\fR\^) function will return the value of
321 the
322 .B SIGNATURE
323 environment variable if set, otherwise will return the passwd GECOS field
324 (truncated at the first comma if it contains one) for
325 the current user.  The (\fIlocalmbox\fR\^) function will return the complete
326 form of the local mailbox, suitable for use in a \*(lqFrom\*(rq header.
327 It will return the
328 .RI \*(lq Local-Mailbox \*(rq
329 profile entry if it is set; if it is not, it will be equivalent to:
330 .PP
331 .RS 5
332 .nf
333 %(myname) <%(me)@%(myhost)>
334 .fi
335 .RE
336 .PP
337 The following functions require a date component as an argument:
338 .PP
339 .RS 5
340 .nf
341 .ta \w'Fformataddr 'u +\w'Aboolean 'u +\w'Rboolean 'u
342 .I "Function    Argument        Return  Description"
343 sec     date    integer seconds of the minute
344 min     date    integer minutes of the hour
345 hour    date    integer hours of the day (0-23)
346 wday    date    integer day of the week (Sun=0)
347 day     date    string  day of the week (abbrev.)
348 weekday date    string  day of the week
349 sday    date    integer day of the week known?
350                         (1=explicit,0=implicit,\-1=unknown)
351 mday    date    integer day of the month
352 yday    date    integer day of the year
353 mon     date    integer month of the year
354 month   date    string  month of the year (abbrev.)
355 lmonth  date    string  month of the year
356 year    date    integer year (may be > 100)
357 zone    date    integer timezone in hours
358 tzone   date    string  timezone string
359 szone   date    integer timezone explicit?
360                         (1=explicit,0=implicit,\-1=unknown)
361 date2local      date            coerce date to local timezone
362 date2gmt        date            coerce date to GMT
363 dst     date    integer daylight savings in effect? (0 or 1)
364 clock   date    integer seconds since the UNIX epoch
365 rclock  date    integer seconds prior to current time
366 tws     date    string  official 822 rendering
367 pretty  date    string  user-friendly rendering
368 .fi
369 .RE
370 .PP
371 These functions require an address component as an argument.  
372 The return value of functions noted with `*' is computed from
373 the first address present in the header component.
374 .PP
375 .RS 5
376 .nf
377 .ta \w'Fformataddr 'u +\w'Aboolean 'u +\w'Rboolean 'u
378 .I "Function    Argument        Return  Description"
379 proper  addr    string  official 822 rendering
380 friendly        addr    string  user-friendly rendering
381 addr    addr    string  mbox@host or host!mbox rendering*
382 pers    addr    string  the personal name*
383 note    addr    string  commentary text*
384 mbox    addr    string  the local mailbox*
385 mymbox  addr    integer List has the user's address? (0 or 1)
386 host    addr    string  the host domain*
387 nohost  addr    integer no host was present (0 or 1)*
388 type    addr    integer host type* (0=local,1=network,
389                         \-1=uucp,2=unknown)
390 path    addr    string  any leading host route*
391 ingrp   addr    integer address was inside a group (0 or 1)*
392 gname   addr    string  name of group*
393 .fi
394 .RE
395 .PP
396 (A clarification on (\fImymbox\fR\^{\fIcomp\fR\^}) is in order.
397 This function checks each of the addresses in the header component
398 \*(lq\fIcomp\fR\*(rq against the user's mailbox name and any
399 .RI \*(lq Alternate-Mailboxes \*(rq.
400 It returns true if any address matches,
401 however, it also returns true if the \*(lq\fIcomp\fR\*(rq header is not
402 present in the message.  If needed, the (\fInull\fR\^) function can be
403 used to explicitly test for this case.)
404 .SS Formatting
405 When a function or component escape is interpreted and the result will
406 be immediately printed, an optional field width can be specified to
407 print the field in exactly a given number of characters.  For example, a
408 numeric escape like %4(\fIsize\fR\^) will print at most 4 digits of the
409 message size; overflow will be indicated by a `?' in the first position
410 (like `?234').  A string escape like %4(\fIme\fR\^) will print the first 4
411 characters and truncate at the end.  Short fields are padded at the right
412 with the fill character (normally, a blank).  If the field width argument
413 begins with a leading zero, then the fill character is set to a zero.
414 .PP
415 The functions (\fIputnumf\fR\^) and (\fIputstrf\fR\^)
416 print their result in exactly the number of characters
417 specified by their leading field width argument.  For example,
418 %06(\fIputnumf\fR\^(\fIsize\fR\^)) will print the message
419 size in a field six characters wide filled with leading zeros;
420 %14(\fIputstrf\^\fR{\fIfrom\^\fR}) will print the \*(lqFrom:\*(rq header
421 component in fourteen characters with trailing spaces added as needed.
422 For \fIputstrf\fR, using a negative value for the field width causes
423 right-justification of the string within the field, with padding on
424 the left up to the field width.
425 The functions (\fIputnum\fR\^) and
426 (\fIputstr\fR\^) are somewhat special: they print their result in the minimum number of characters
427 required, and ignore any leading field width argument.  The (\fIputlit\fR\^)
428 function outputs the exact contents of the str register without any changes
429 such as duplicate space removal or control character conversion.
430 The (\fIzputlit\fR\^) similarly outputs the exact contents of the str
431 register, but requires that those contents not occupy any output width.
432 It can therefore be used for outputting terminal escape sequences.
433 .PP
434 The available output width is kept in an internal register; any output
435 past this width will be truncated.
436 .SS Special Handling
437 A few functions have different behavior depending on what command they are
438 being invoked from.
439 .PP
440 In
441 .BR repl
442 the (\fIformataddr\fR\^) function stores all email addresses encountered into
443 an internal cache and will use this cache to suppress duplicate addresses.
444 If you need to create an address list that includes previously-seen
445 addresses you may use the (\fIconcataddr\fR\^) function, which is identical
446 to (\fIformataddr\fR\^) in all other respects.  Note that (\fIconcataddr\fR\^)
447 will NOT add addresses to the duplicate-suppression cache.
448 .SS Other Hints and Tips
449 Sometimes to format function writers it is confusing as to why output is
450 duplicated.  The general rule to remember is simple: If a function or
451 component escape is used where it starts with a %, then it will generate
452 text in the output file.  Otherwise, it will not.
453 .PP
454 A good example is a simple attempt to generate a To: header based on
455 the From: and Reply-To: headers:
456 .PP
457 .RS 5
458 .nf
459 %(formataddr %<{reply-to}%|%{from})%(putaddr To: )
460 .fi
461 .RE
462 .PP
463 Unfortuantely if the Reply-to: header is NOT present, the output line that is
464 generated will be something like:
465 .PP
466 .RS 5
467 .nf
468 My From User <from@example.com>To: My From User <from@example.com>
469 .fi
470 .RE
471 .PP
472 What went wrong?  When performing the test for the
473 .B if
474 clause (%<), the component is not output because it is considered an
475 argument to the
476 .B if
477 statement (hence the rule about the lack of % applies).  But the component
478 escape in our
479 .B else
480 statement (everything after the `%|') is NOT an argument to anything; the
481 syntax is that it is written with a %, and thus the value of that component
482 is output.  This also has the side effect of setting the 
483 .I str
484 register, which is later picked up by the (\fIformataddr\fR\^) function
485 and then output by (\fIputaddr\fR\^).  This format string has another bug
486 as well; there should always be a valid width value in the
487 .I num
488 register when (\fIputaddr\fR\^) is called, otherwise bad formatting can take
489 place.
490 .PP
491 The solution is to use the (\fIvoid\fR\^) function; this will prevent the
492 function or component from outputting any text.  With this in place (and
493 using (\fIwidth\fR\^) to set the
494 .I num
495 register for the width, a better implementation would look like:
496 .PP
497 .RS 3
498 .nf
499 %(formataddr %<{reply-to}%|%(void{from})%(void(width))%(putaddr To: )
500 .fi
501 .RE
502 .PP
503 It should be noted here that the side-effects of functions and component
504 escapes still are in force: as a result each component
505 test in the 
506 .B if\-elseif\-else\-endif
507 clause sets the
508 .I str
509 register.
510 .PP
511 As an additional note, the (\fIformataddr\fR\^) and (\fIconcataddr\fR\^)
512 functions have some behavior when it comes to the
513 .I str
514 register.  The starting point of the register is saved and is used to
515 build up entries in the address list.
516 .PP
517 You will find the
518 .B ap
519 and
520 .B fmtdump
521 utilities invaluable in debugging problems with format strings.
522 .SS Examples
523 With all this in mind,
524 here's the default format string for
525 .BR scan .
526 It's been divided into several pieces for readability.
527 The first part is:
528 .PP
529 .RS
530 .nf
531 %4(msg)%<(cur)+%| %>%<{replied}\-%?{encrypted}E%| %>
532 .fi
533 .RE
534 .PP
535 which says that the message number should be printed in four digits.
536 If the message is the current message then a `+' else a space should
537 be printed; if a \*(lqReplied:\*(rq field is present then a `\-'
538 else if an \*(lqEncrypted:\*(rq field is present then an `E' otherwise
539 a space should be printed.  Next:
540 .PP
541 .RS
542 .nf
543 %02(mon{date})/%02(mday{date})
544 .fi
545 .RE
546 .PP
547 the month and date are printed in two digits (zero filled) separated by
548 a slash. Next,
549 .PP
550 .RS 5
551 .nf
552 %<{date} %|*%>
553 .fi
554 .RE
555 .PP
556 If a \*(lqDate:\*(rq field was present,
557 then a space is printed, otherwise a `*'.
558 Next,
559 .PP
560 .RS 5
561 .nf
562 %<(mymbox{from})%<{to}To:%14(decode(friendly{to}))%>%>
563 .fi
564 .RE
565 .PP
566 if the message is from me, and there is a \*(lqTo:\*(rq header,
567 print \*(lqTo:\*(rq followed by a \*(lquser-friendly\*(rq rendering of the
568 first address in the \*(lqTo:\*(rq field; any MIME-encoded
569 characters are decoded into the actual characters.
570 Continuing,
571 .PP
572 .RS 5
573 .nf
574 %<(zero)%17(decode(friendly{from}))%>
575 .fi
576 .RE
577 .PP
578 if either of the above two tests failed,
579 then the \*(lqFrom:\*(rq address is printed
580 in a mime-decoded, \*(lquser-friendly\*(rq format.
581 And finally,
582 .PP
583 .RS 5
584 .nf
585 %(decode{subject})%<{body}<<%{body}>>%>
586 .fi
587 .RE
588 .PP
589 the mime-decoded subject and initial body (if any) are printed.
590 .PP
591 For a more complicated example, next consider
592 a possible
593 .I replcomps
594 format file.
595 .PP
596 .RS 5
597 .nf
598 %(lit)%(formataddr %<{reply-to}
599 .fi
600 .RE
601 .PP
602 This clears
603 .I str
604 and formats the \*(lqReply-To:\*(rq header 
605 if present.  If not present, the else-if clause is executed.
606 .PP
607 .RS 5
608 .nf
609 %?{from}%?{sender}%?{return-path}%>)\\
610 .fi
611 .RE
612 .PP
613 This formats the 
614 \*(lqFrom:\*(rq, \*(lqSender:\*(rq and \*(lqReturn-Path:\*(rq
615 headers, stopping as soon as one of them is present.  Next:
616 .PP
617 .RS 5
618 .nf
619 %<(nonnull)%(void(width))%(putaddr To: )\\n%>\\
620 .fi
621 .RE
622 .PP
623 If the \fIformataddr\fR result is non-null, it is printed as
624 an address (with line folding if needed) in a field \fIwidth\fR
625 wide with a leading label of \*(lqTo:\*(rq.
626 .PP
627 .RS 5
628 .nf
629 %(lit)%(formataddr{to})%(formataddr{cc})%(formataddr(me))\\
630 .fi
631 .RE
632 .PP
633 .I str
634 is cleared, and the \*(lqTo:\*(rq and \*(lqCc:\*(rq headers, along with the user's
635 address (depending on what was specified with
636 the \*(lq\-cc\*(rq switch to \fIrepl\fR\^) are formatted.
637 .PP
638 .RS 5
639 .nf
640 %<(nonnull)%(void(width))%(putaddr cc: )\\n%>\\
641 .fi
642 .RE
643 .PP
644 If the result is non-null, it is printed as above with a
645 leading label of \*(lqcc:\*(rq.
646 .PP
647 .RS 5
648 .nf
649 %<{fcc}Fcc: %{fcc}\\n%>\\
650 .fi
651 .RE
652 .PP
653 If a
654 .B \-fcc
655 .I folder
656 switch was given to
657 .B repl
658 (see
659 .IR repl (1)
660 for more details about %{\fIfcc\fR\^}),
661 an \*(lqFcc:\*(rq header is output.
662 .PP
663 .RS 5
664 .nf
665 %<{subject}Subject: Re: %{subject}\\n%>\\
666 .fi
667 .RE
668 .PP
669 If a subject component was present,
670 a suitable reply subject is output.
671 .PP
672 .RS 5
673 .nf
674 %<{message-id}In-Reply-To: %{message-id}\\n%>\\
675 %<{message-id}References: %<{references} %{references}%>\\
676 %{message-id}\\n%>
677 \-\-\-\-\-\-\-\-
678 .fi
679 .RE
680 .PP
681 If a message-id component was present, an \*(lqIn-Reply-To:\*(rq header is
682 output including the message-id, followed by a \*(lqReferences:\*(rq
683 header with references, if present, and the message-id.
684 As with all
685 plain-text, the row of dashes are output as-is.
686 .PP
687 This last part is a good example for a little more elaboration.
688 Here's that part again in pseudo-code:
689 .PP
690 .RS 5
691 .nf
692 .ta .5i 1i 1.5i 2i
693 if (comp_exists(message-id))  then
694         print (\*(lqIn-reply-to: \*(rq)
695         print (message-id.value)
696         print (\*(lq\\n\*(rq)
697 endif
698 if (comp_exists(message-id)) then
699         print (\*(lqReferences: \*(rq)
700         if (comp_exists(references)) then
701               print(references.value);
702         endif
703         print (message-id.value)
704         print (\*(lq\\n\*(rq)
705 endif
706 .fi
707 .RE
708 .PP
709 .\" (Note that this pseudocode begs the question ``why not just
710 .\" support this syntax?''  MH has been hacked on for a long time...)
711 .\".PP
712 One more example: Currently,
713 .B nmh
714 supports very
715 large message numbers, and it is not uncommon for a folder
716 to have far more than 10000 messages.
717 .\" (Indeed, the original MH
718 .\" tutorial document by Rose and Romine is entitled "How to
719 .\" process 200 messages a day and still get some real work
720 .\" done."  The authors apparently only planned to get
721 .\" real work done for about 50 days per folder.)
722 Nontheless (as noted above)
723 the various scan format strings are inherited
724 from older MH versions, and are generally hard-coded to 4
725 digits of message number before formatting problems
726 start to occur.  
727 The nmh format strings can be modified to behave more sensibly with larger
728 message numbers:
729 .PP
730 .RS
731 .nf
732 %(void(msg))%<(gt 9999)%(msg)%|%4(msg)%>
733 .fi
734 .RE
735 .PP
736 The current message number is placed in \fInum\fP.
737 (Note that
738 .RI ( msg )
739 is an int function, not a component.)
740 The
741 .RI ( gt )
742 conditional
743 is used to test whether the message number
744 has 5
745 or more digits.
746 If so, it is printed at full width, otherwise
747 at 4 digits.
748 .SH "SEE ALSO"
749 .IR scan (1),
750 .IR repl (1),
751 .IR ap (8),
752 .IR dp (8)
753 .SH CONTEXT
754 None