3 mdfrm is a simple mail reporting program inspired by elm's frm
4 program. Whereas elm's frm operates on Berkeley mbox files, mdfrm
5 operates on maildirs. It prints one line for each message in
6 Maildir/new, first the From header and then the Subject header.
8 mdfrm makes use of fgetln(3), which as far as i can tell is only
9 available on BSD. To make this easy to use on other UNIX-like
10 platforms, i have copied Marc Espie's portable implementation from
11 OpenBSD make(1). See fgetln.c for details.
13 Note that mdfrm.c was written and is maintained by Eric Gillespie, and
14 is public domain software. fgetln.c, however, is code from OpenBSD
15 make(1), some of which appears to be covered by the original
16 four-clause Berkeley license and some of which is covered by the
17 two-clause BSD variant.