4 .TH MH-FORMAT %manext5% "%nmhdate%" MH.6.8 [%nmhversion%]
6 mh-format \- format file for nmh message system
10 commands utilize either a
14 file during their execution. For example,
16 uses a format string which directs it how to generate the scan listing
19 uses a format file which directs it
20 how to generate the reply to a message, and so on.
22 There are a few alternate scan listing formats available
24 .IR nmh/etc/scan.time ,
25 .IR nmh/etc/scan.size ,
27 .IR nmh/etc/scan.timely .
34 format files which may have been written at your site.
36 It suffices to have your local
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
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.
50 .\" TALK ABOUT SYNTAX FIRST, THEN SEMANTICS
52 Format strings are built around
53 .IR "escape sequences" .
54 There are three types of escape sequences: header
60 Comments may be inserted in most places where a function argument is
61 not expected. A comment begins with `%;' and ends with a (non-escaped)
66 escape is specified as
69 exists for each header found in the message being processed. For example
71 refers to the \*(lqDate:\*(rq field of the appropriate message.
72 All component escapes have a string value. Normally, component values are
73 compressed by converting any control characters (tab and newline included)
74 to spaces, then eliding any leading or multiple spaces. However, commands
75 may give different interpretations to some component escapes; be sure
76 to refer to each command's manual entry for complete details. Some commands
81 use a special component
83 to refer to the text being processed; see their respective man pages for
88 escape is specified as
90 All functions are built-in, and most have a string or numeric value.
91 A function escape may have an
93 The argument follows the function escape: separating
94 whitespace is discarded:
95 .RI `%( function " " argument )'.
97 In addition to literal numbers or strings,
98 the argument to a function escape can be another function, a component,
99 or a control escape. When the argument is a function or a
100 component, they are listed without a leading `%'. When control escapes
101 are used as function arguments, they written as normally, with
104 .SS "Control escapes"
108 escape is one of: `%<', `%?', `%|', or `%>'.
109 These are combined into the conditional execution construct:
113 .RI "%< " condition " " "format-text"
114 .RI "%? " condition " " "format-text"
116 .RI "%| " "format-text"
121 Extra white space is shown here only for clarity. These
122 constructs may be nested without ambiguity. They form a general
123 .B if\-elseif\-else\-endif
124 block where only one of the
126 is interpreted. In other
127 words, `%<' is like the "if", `%?' is like the "elseif", `%|' is like
128 "else", and `%>' is like "endif".
130 A `%<' or `%?' control escape causes its condition to be evaluated.
135 For integer valued functions or components, the condition is true
136 if the function return or component value is non-zero, and false if zero.
137 For string valued functions or components, the condition is true
138 if the function return or component value is
139 a non-empty string, and false for an empty string.
142 The `%?' control escape is optional, and may there may be more
143 than one `%?' control escape in a conditional block.
144 The `%|' control escape
145 is also optional, but may be included at most once.
147 .SS "Function escapes"
148 Functions expecting an argument generally
149 require an argument of a particular type.
150 In addition to the number and string types,
155 .ta +\w'Argument 'u +\w'An optional component, 'u
156 .I "Argument Description Example Syntax"
157 literal A literal number %(\fIfunc\fR 1234)
158 or string %(\fIfunc\fR text string)
159 comp Any component %(\fIfunc\fR\^{\fIin-reply-to\fR\^})
160 date A date component %(\fIfunc\fR\^{\fIdate\fR\^})
161 addr An address component %(\fIfunc\fR\^{\fIfrom\fR\^})
162 expr Nothing %(\fIfunc\fR)
163 or a subexpression %(\fIfunc\fR\^(\fIfunc2\fR\^))
164 or control escape %(\fIfunc\fR %<{\fIreply-to\fR\^}%|%{\fIfrom\fR\^}%>)
172 have the same syntax as
174 but require that the header component be a date string, or address
175 string, respectively.
177 Most arguments not of type
180 When escapes are nested (via expr arguments), evaluation is done from inner-most to outer-most.
181 As noted above, for the
184 functions and components are written without a
186 Control escape arguments must use a leading `%', preceded by a space.
192 %<(mymbox{from}) To: %{to}%>
196 writes the value of the header component \*(lqFrom:\*(rq to the
197 internal register named str; then (\fImymbox\fR\^) reads str and
198 writes its result to the internal register named
200 then the control escape evaluates
205 string \*(lqTo:\*(rq is printed followed by the value of the
206 header component \*(lqTo:\*(rq.
208 The evaluation of format strings is performed
209 by a small virtual machine.
210 The machine is capable of evaluating nested expressions
211 as described above, and in addition
212 has an integer register
214 and a text string register
216 When a function escape that
217 accepts an optional argument is processed,
218 and the argument is not present, the current value of either
222 is used as the argument: which register is
223 used depends on the function, as listed below.
225 Component escapes write the value of their message header in
227 Function escapes write their return value in
229 for functions returning integer or boolean values, and in
231 for functions returning string values. (The boolean type is a subset
232 of integers with usual values 0=false and 1=true.) Control escapes
233 return a boolean value, setting
235 to 1 if the last explicit condition
236 evaluated by a `%<' or `%?' control
237 succeeded, and 0 otherwise.
239 All component escapes, and those function escapes which return an
240 integer or string value, evaluate to their value as well as setting
244 Outermost escape expressions in
245 these forms will print
246 their value, but outermost escapes which return a boolean value
247 do not result in printed output.
249 The function escapes may be roughly grouped into a few categories.
253 .ta \w'Fformataddr 'u +\w'Aboolean 'u +\w'Rboolean 'u
254 .I "Function Argument Result Description"
255 msg integer message number
256 cur integer message is current (0 or 1)
257 unseen integer message is unseen (0 or 1)
258 size integer size of message
259 strlen integer length of \fIstr\fR
260 width integer output buffer size in bytes
261 charleft integer bytes left in output buffer
262 timenow integer seconds since the UNIX epoch
263 me string the user's mailbox (username)
264 myhost string the user's local hostname
265 myname string the user's name
266 localmbox string the complete local mailbox
267 eq literal boolean \fInum\fR == \fIarg\fR
268 ne literal boolean \fInum\fR != \fIarg\fR
269 gt literal boolean \fInum\fR > \fIarg\fR
270 match literal boolean \fIstr\fR contains \fIarg\fR
271 amatch literal boolean \fIstr\fR starts with \fIarg\fR
272 plus literal integer \fIarg\fR plus \fInum\fR
273 minus literal integer \fIarg\fR minus \fInum\fR
274 divide literal integer \fInum\fR divided by \fIarg\fR
275 modulo literal integer \fInum\fR modulo \fIarg\fR
276 num literal integer Set \fInum\fR to \fIarg\fR.
277 num integer Set \fInum\fR to zero.
278 lit literal string Set \fIstr\fR to \fIarg\fR.
279 lit string Clear \fIstr\fR.
280 getenv literal string Set \fIstr\fR to environment value of \fIarg\fR
281 profile literal string Set \fIstr\fR to profile component \fIarg\fR
283 .\" dat literal int return value of dat[arg]
284 nonzero expr boolean \fInum\fR is non-zero
285 zero expr boolean \fInum\fR is zero
286 null expr boolean \fIstr\fR is empty
287 nonnull expr boolean \fIstr\fR is non-empty
288 void expr Set \fIstr\fR or \fInum\fR
289 comp comp string Set \fIstr\fR to component text
290 compval comp integer Set \fInum\fR to \*(lq\fBatoi\fR(\fIcomp\fR\^)\*(rq
291 .\" compflag comp integer Set \fInum\fR to component flags bits (internal)
292 .\" decodecomp comp string Set \fIstr\fR to RFC-2047 decoded component text
293 decode expr string decode \fIstr\fR as RFC-2047 (MIME-encoded)
295 unquote expr string remove RFC-2822 quotes from \fIstr\fR
296 trim expr trim trailing white-space from \fIstr\fR
297 putstr expr print \fIstr\fR
298 putstrf expr print \fIstr\fR in a fixed width
299 putnum expr print \fInum\fR
300 putnumf expr print \fInum\fR in a fixed width
301 .\" addtoseq literal add msg to sequence (LBL option)
302 putlit expr print \fIstr\fR without space compression
303 nodate string integer Argument not a date string (0 or 1)
304 formataddr expr append \fIarg\fR to \fIstr\fR as a
305 (comma separated) address list
306 concataddr expr append \fIarg\fR to \fIstr\fR as a
307 (comma separated) address list,
308 including duplicates,
310 putaddr literal print \fIstr\fR address list with
311 \fIarg\fR as optional label;
312 get line width from \fInum\fR
316 The (\fIme\fR\^) function returns the username of the current user. The
317 (\fImyhost\fR\^) function returns the
321 or the local hostname if
323 is not configured. The (\fImyname\fR\^) function will return the value of
326 environment variable if set, otherwise will return the passwd GECOS field for
327 the current user. The (\fIlocalmbox\fR\^) function will return the complete
328 form of the local mailbox, suitable for use in a \*(lqFrom\*(rq header.
330 .RI \*(lq Local-Mailbox \*(rq
331 profile entry if it is set; if it is not, it will be equivalent to:
335 %(myname) <%(me)@%(myhost)>
339 The following functions require a date component as an argument:
343 .ta \w'Fformataddr 'u +\w'Aboolean 'u +\w'Rboolean 'u
344 .I "Function Argument Return Description"
345 sec date integer seconds of the minute
346 min date integer minutes of the hour
347 hour date integer hours of the day (0-23)
348 wday date integer day of the week (Sun=0)
349 day date string day of the week (abbrev.)
350 weekday date string day of the week
351 sday date integer day of the week known?
352 (1=explicit,0=implicit,\-1=unknown)
353 mday date integer day of the month
354 yday date integer day of the year
355 mon date integer month of the year
356 month date string month of the year (abbrev.)
357 lmonth date string month of the year
358 year date integer year (may be > 100)
359 zone date integer timezone in hours
360 tzone date string timezone string
361 szone date integer timezone explicit?
362 (1=explicit,0=implicit,\-1=unknown)
363 date2local date coerce date to local timezone
364 date2gmt date coerce date to GMT
365 dst date integer daylight savings in effect? (0 or 1)
366 clock date integer seconds since the UNIX epoch
367 rclock date integer seconds prior to current time
368 tws date string official 822 rendering
369 pretty date string user-friendly rendering
373 These functions require an address component as an argument.
374 The return value of functions noted with `*' is computed from
375 the first address present in the header component.
379 .ta \w'Fformataddr 'u +\w'Aboolean 'u +\w'Rboolean 'u
380 .I "Function Argument Return Description"
381 proper addr string official 822 rendering
382 friendly addr string user-friendly rendering
383 addr addr string mbox@host or host!mbox rendering*
384 pers addr string the personal name*
385 note addr string commentary text*
386 mbox addr string the local mailbox*
387 mymbox addr integer List has the user's address? (0 or 1)
388 host addr string the host domain*
389 nohost addr integer no host was present (0 or 1)*
390 type addr integer host type* (0=local,1=network,
392 path addr string any leading host route*
393 ingrp addr integer address was inside a group (0 or 1)*
394 gname addr string name of group*
398 (A clarification on (\fImymbox\fR\^{\fIcomp\fR\^}) is in order.
399 This function checks each of the addresses in the header component
400 \*(lq\fIcomp\fR\*(rq against the user's mailbox name and any
401 .RI \*(lq Alternate-Mailboxes \*(rq.
402 It returns true if any address matches,
403 however, it also returns true if the \*(lq\fIcomp\fR\*(rq header is not
404 present in the message. If needed, the (\fInull\fR\^) function can be
405 used to explicitly test for this case.)
407 When a function or component escape is interpreted and the result will
408 be immediately printed, an optional field width can be specified to
409 print the field in exactly a given number of characters. For example, a
410 numeric escape like %4(\fIsize\fR\^) will print at most 4 digits of the
411 message size; overflow will be indicated by a `?' in the first position
412 (like `?234'). A string escape like %4(\fIme\fR\^) will print the first 4
413 characters and truncate at the end. Short fields are padded at the right
414 with the fill character (normally, a blank). If the field width argument
415 begins with a leading zero, then the fill character is set to a zero.
417 The functions (\fIputnumf\fR\^) and (\fIputstrf\fR\^)
418 print their result in exactly the number of characters
419 specified by their leading field width argument. For example,
420 %06(\fIputnumf\fR\^(\fIsize\fR\^)) will print the message
421 size in a field six characters wide filled with leading zeros;
422 %14(\fIputstrf\^\fR{\fIfrom\^\fR}) will print the \*(lqFrom:\*(rq header
423 component in fourteen characters with trailing spaces added as needed.
424 For \fIputstrf\fR, using a negative value for the field width causes
425 right-justification of the string within the field, with padding on
426 the left up to the field width.
427 The functions (\fIputnum\fR\^) and
428 (\fIputstr\fR\^) are somewhat special: they print their result in the minimum number of characters
429 required, and ignore any leading field width argument. The (\fIputlit\fR\^)
430 function outputs the exact contents of str register without any changes
431 such as duplicate space removal or control character conversion.
433 The available output width is kept in an internal register; any output
434 past this width will be truncated.
436 A few functions have different behavior depending on what command they are
441 the (\fIformataddr\fR\^) function stores all email addresses encountered into
442 an internal cache and will use this cache to suppress duplicate addresses.
443 If you need to create an address list that includes previously-seen
444 addresses you may use the (\fIconcataddr\fR\^) function, which is identical
445 to (\fIformataddr\fR\^) in all other respects. Note that (\fIconcataddr\fR\^)
446 will NOT add addresses to the duplicate-suppression cache.
447 .SS Other Hints and Tips
448 Sometimes to format function writers it is confusing as to why output is
449 duplicated. The general rule to remember is simple: If a function or
450 component escape is used where it starts with a %, then it will generate
451 text in the output file. Otherwise, it will not.
453 A good example is a simple attempt to generate a To: header based on
454 the From: and Reply-To: headers:
458 %(formataddr %<{reply-to}%|%{from})%(putaddr To: )
462 Unfortuantely if the Reply-to: header is NOT present, the output line that is
463 generated will be something like:
467 My From User <from@example.com>To: My From User <from@example.com>
471 What went wrong? When performing the test for the
473 clause (%<), the component is not output because it is considered an
476 statement (hence the rule about the lack of % applies). But the component
479 statement (everything after the `%|') is NOT an argument to anything; the
480 syntax is that it is written with a %, and thus the value of that component
481 is output. This also has the side effect of setting the
483 register, which is later picked up by the (\fIformataddr\fR\^) function
484 and then output by (\fIputaddr\fR\^). This format string has another bug
485 as well; there should always be a valid width value in the
487 register when (\fIputaddr\fR\^) is called, otherwise bad formatting can take
490 The solution is to use the (\fIvoid\fR\^) function; this will prevent the
491 function or component from outputting any text. With this in place (and
492 using (\fIwidth\fR\^) to set the
494 register for the width, a better implementation would look like:
498 %(formataddr %<{reply-to}%|%(void{from})%(void(width))%(putaddr To: )
502 It should be noted here that the side-effects of functions and component
503 escapes still are in force: as a result each component
505 .B if\-elseif\-else\-endif
510 As an additional note, the (\fIformataddr\fR\^) and (\fIconcataddr\fR\^)
511 functions have some behavior when it comes to the
513 register. The starting point of the register is saved and is used to
514 build up entries in the address list.
520 utilities invaluable in debugging problems with format strings.
522 With all this in mind,
523 here's the default format string for
525 It's been divided into several pieces for readability.
530 %4(msg)%<(cur)+%| %>%<{replied}\-%?{encrypted}E%| %>
534 which says that the message number should be printed in four digits.
535 If the message is the current message then a `+' else a space should
536 be printed; if a \*(lqReplied:\*(rq field is present then a `\-'
537 else if an \*(lqEncrypted:\*(rq field is present then an `E' otherwise
538 a space should be printed. Next:
542 %02(mon{date})/%02(mday{date})
546 the month and date are printed in two digits (zero filled) separated by
555 If a \*(lqDate:\*(rq field was present,
556 then a space is printed, otherwise a `*'.
561 %<(mymbox{from})%<{to}To:%14(decode(friendly{to}))%>%>
565 if the message is from me, and there is a \*(lqTo:\*(rq header,
566 print \*(lqTo:\*(rq followed by a \*(lquser-friendly\*(rq rendering of the
567 first address in the \*(lqTo:\*(rq field; any MIME-encoded
568 characters are decoded into the actual characters.
573 %<(zero)%17(decode(friendly{from}))%>
577 if either of the above two tests failed,
578 then the \*(lqFrom:\*(rq address is printed
579 in a mime-decoded, \*(lquser-friendly\*(rq format.
584 %(decode{subject})%<{body}<<%{body}>>%>
588 the mime-decoded subject and initial body (if any) are printed.
590 For a more complicated example, next consider
597 %(lit)%(formataddr %<{reply-to}
603 and formats the \*(lqReply-To:\*(rq header
604 if present. If not present, the else-if clause is executed.
608 %?{from}%?{sender}%?{return-path}%>)\\
613 \*(lqFrom:\*(rq, \*(lqSender:\*(rq and \*(lqReturn-Path:\*(rq
614 headers, stopping as soon as one of them is present. Next:
618 %<(nonnull)%(void(width))%(putaddr To: )\\n%>\\
622 If the \fIformataddr\fR result is non-null, it is printed as
623 an address (with line folding if needed) in a field \fIwidth\fR
624 wide with a leading label of \*(lqTo:\*(rq.
628 %(lit)%(formataddr{to})%(formataddr{cc})%(formataddr(me))\\
633 is cleared, and the \*(lqTo:\*(rq and \*(lqCc:\*(rq headers, along with the user's
634 address (depending on what was specified with
635 the \*(lq\-cc\*(rq switch to \fIrepl\fR\^) are formatted.
639 %<(nonnull)%(void(width))%(putaddr cc: )\\n%>\\
643 If the result is non-null, it is printed as above with a
644 leading label of \*(lqcc:\*(rq.
648 %<{fcc}Fcc: %{fcc}\\n%>\\
659 for more details about %{\fIfcc\fR\^}),
660 an \*(lqFcc:\*(rq header is output.
664 %<{subject}Subject: Re: %{subject}\\n%>\\
668 If a subject component was present,
669 a suitable reply subject is output.
673 %<{message-id}In-Reply-To: %{message-id}\\n%>\\
674 %<{message-id}References: %<{references} %{references}%>\\
680 If a message-id component was present, an \*(lqIn-Reply-To:\*(rq header is
681 output including the message-id, followed by a \*(lqReferences:\*(rq
682 header with references, if present, and the message-id.
684 plain-text, the row of dashes are output as-is.
686 This last part is a good example for a little more elaboration.
687 Here's that part again in pseudo-code:
692 if (comp_exists(message-id)) then
693 print (\*(lqIn-reply-to: \*(rq)
694 print (message-id.value)
695 print (\*(lq\\n\*(rq)
697 if (comp_exists(message-id)) then
698 print (\*(lqReferences: \*(rq)
699 if (comp_exists(references)) then
700 print(references.value);
702 print (message-id.value)
703 print (\*(lq\\n\*(rq)
708 .\" (Note that this pseudocode begs the question ``why not just
709 .\" support this syntax?'' MH has been hacked on for a long time...)
711 One more example: Currently,
714 large message numbers, and it is not uncommon for a folder
715 to have far more than 10000 messages.
716 .\" (Indeed, the original MH
717 .\" tutorial document by Rose and Romine is entitled "How to
718 .\" process 200 messages a day and still get some real work
719 .\" done." The authors apparently only planned to get
720 .\" real work done for about 50 days per folder.)
721 Nontheless (as noted above)
722 the various scan format strings are inherited
723 from older MH versions, and are generally hard-coded to 4
724 digits of message number before formatting problems
726 The nmh format strings can be modified to behave more sensibly with larger
731 %(void(msg))%<(gt 9999)%(msg)%|%4(msg)%>
735 The current message number is placed in \fInum\fP.
738 is an int function, not a component.)
742 is used to test whether the message number
745 If so, it is printed at full width: otherwise
748 scan(1), repl(1), ap(8), dp(8)