Automated #define of MAILGROUP and installation of inc as setgid mail when the
[mmh] / ChangeLog
1 Tue Aug 17 16:06:29 1999 Dan Harkless <dan-nmh@dilvish.speed.net>
2
3         * Automated #define of MAILGROUP and installation of inc as setgid mail
4         when the mail spool directory isn't world-writable.
5
6 Thu Jul 15 18:37:07 1999 Dan Harkless <dan-nmh@dilvish.speed.net>
7
8         * slocal -debug used to leave a file in /tmp for each message
9         processed.  Very bad for folks with slocal -debug in their .forward!
10
11         * Got rid of a ton of compilation warnings.  Most were "junk"
12         warnings due to the use of gcc -Wall (without -Wno-parentheses),
13         but a few represented real bugs.  There remain many warnings to be
14         tackled that are due to missing function prototypes (e.g. snprintf()).
15
16         * Default rcvdistcomps no longer puts a copy of all outgoing
17         messages in outbox.  Added an rcvdistcomps.outbox that does.
18
19 Sat Jun  9 12:22:47 1999 Doug Morris <doug@mhost.com>
20
21         * Updated configure to check for mkstemp (available on OpenBSD) and 
22         substitute it for mktemp if available. 
23
24 Thu May 13 16:40:19 1999  Doug Morris <doug@mhost.com>
25
26         * Added config.sub and config.guess and updated acconfig.h and
27         configure.in to automatically detect system type and set the
28         proper #defines.
29
30 Wed May 12 23:41:33 1999  Dan Winship  <danw@mit.edu>
31
32         * Released nmh-1.0.1.
33
34 Fri May  7 17:18:28 1999  Dan Winship  <danw@mit.edu>
35
36         * Fixed flist to properly deal with relative folder names.
37         Problem noted by Jerry Peek <jpeek@jpeek.com>.
38
39         * Fixed --with-krb4 to work with original Kerberos 4 libraries as
40         well as the Kerberos 5 compat libraries. Based on a patch from
41         Assar Westerlund <assar@sics.se>.
42
43         * Added a check in configure.in to test if modf is in libc and
44         link with libm if not. This is needed by at least Digital UNIX. 
45         Problem pointed out by Kevin Oberman <oberman@es.net>.
46
47         * Fix a bug from the "mhn -show" to "mhshow" renaming that
48         made the "list" command in whatnow not work for some users.
49         From Ruud de Rooij <r.c.m.derooij@twi.tudelft.nl>.
50
51         * Replaced "extern int errno" with "#include <errno.h>" in a
52         number of files. Suggested by Stephen Wilson Bailey
53         <swb@nconnect.net>.
54
55         * Fixed a problem in how "packf -mbox" translated "Return-Path:"
56         lines. From Kimmo Suominen <kim@tac.nyc.ny.us>.
57
58         * Fixed a segmentation fault in inc. Patch originally from Ruud de
59         Rooij <r.c.m.derooij@twi.tudelft.nl>.
60
61         * Allow display of 8bit encoded messages. From Kimmo Suominen
62         <kim@tac.nyc.ny.us>.
63
64         * Fixed repl to not add line breaks in the middle of long
65         addresses when building a reply. From Ruud de Rooij
66         <r.c.m.derooij@twi.tudelft.nl>.
67
68         * Added -library switch to spost so it can parse user aliases like
69         post does. From Ruud de Rooij <r.c.m.derooij@twi.tudelft.nl>.
70
71         * Changed configure.in's check for sigsetjmp to properly deal
72         with systems like Linux where it is a macro. From
73         <elleron@servtech.com>.
74
75         * Fixed a bug in whatnow that could cause it to sometimes exit
76         without prompting the user. Based on a patch by Richard Geiger
77         <rmg@netapp.com>.
78
79         * Added code to deal with SIGPIPE in mhl so it doesn't print
80         "Broken pipe" if you quit out of the moreproc.
81
82         * Documentation: Added a note to MACHINES about Irix make. Added a
83         pointer to the online copy of the MH book in INSTALL. Added
84         some additional information to the whatnow and packf man pages,
85         suggested by Jerry Peek <jpeek@jpeek.com>.
86
87         * Updated INSTALL, FAQ, etc to not refer to Richard as the
88         maintainer or math.gatech.edu as the home any more.
89
90 1999-02-06  Richard Coleman  <coleman@math.gatech.edu>
91
92         * Released nmh-1.0.
93
94         * Merged mbx_open and mbx_Xopen in dropsbr.c.  Fixed
95           mbx_open so that the mode of zero length maildrops
96           would not be changed.
97
98         * Replaced the substitute version of snprintf() with the
99           one from the Apache web server.
100
101         * Changed to default mode for creating new messages to 0600
102           (this should have been done a long time ago).
103
104         * Changed "flist" to handle searching for multiple sequences
105           for each folder.  Also flist will now correctly split
106           Unseen-Sequence if it consists of multiple sequences.
107
108         * Added new switches `-unlink' and `-nounlink' to "refile".
109
110         * Added new switches `-unlink' and `-nounlink' to "rmm".
111
112         * More cleanups of slocal output.  Changed adorn() to
113           send to stdout, instead of stderr (to match rest of
114           verbose printing).
115
116         * Merged mbx_create() into mbx_open, so that creating and
117           opening a nonexistent maildrop is done atomically.  This
118           removes a bad race condition.
119
120         * Fixed bug that caused slocal to be unable to save to MMDF
121           style drop file.
122
123         * Added new wrapper function usr_folder() to slocal.c to
124           handle adding message to folder (currently, it still uses
125           usr_pipe() to call rcvstore).
126
127         * seq_list() checks for empty folder before scanning for
128           sequence information.
129
130         * num_digits() in flist.c and folder.c now returns correct
131           value for 0.  Also added sanity check.
132
133         * folder_delmsgs() now correctly decrements internal message
134           count.
135
136         * Don't attempt to read sequence information if folder
137           is empty.
138
139         * Split seq_read into seq_public and seq_private.
140
141         * Small change to sigmsg.awk, since newer versions of gawk
142           interpret 034 as octal.
143
144         * In flist, don't scan for sequence information in empty folder.
145
146         * Updated mhn.defaults.sh to output profile entries for mhshow,
147           mhstore, and mhbuild.
148
149         * Changed configuration parameter "mhn-access-ftp" to
150           "nmh-access-ftp".  Updated man pages
151
152         * Moved the code in InitMultipart to reverse the order of the
153           parts in a multipart, into its own function "reverse_parts()".
154
155         * Changed code in mhbuildsbr.c to store unencoded content
156           in the c_cefile structure when building.
157
158         * Changed code in mhoutsbr.c to look for unencoded content
159           in the c_cefile structure when outputing message.
160
161         * Changed configuration parameter "mhn-cache" and
162           "mhn-private-cache", to "nmh-cache" and "nmh-private-cache",
163           since it is used in mhstore, mhlist, and mhshow.  Updated man pages
164
165         * Change configuration parameter "mhn-storage" to
166           "nmh-storage", since it is now used in mhstore, mhlist,
167           and mhshow.  Updated man pages
168
169         * Add autoconf support for KPOP (kerberized pop).
170
171         * Add autoconf support for Hesiod.
172
173         * Split routines to output a message given a Content structure
174           (output_message, output_content, write7Bit, etc..) to a new
175           file "mhoutsbr.c".
176
177         * Split output_content(), into output_content() and build_headers().
178
179         * Changed copy_some_headers() in mhstoresbr.c, to use the linked
180           list of header fields, rather than reopening the message.
181
182         * Added free_header() to mhfree.c to free structures containing
183           header field information.
184
185         * Changed get_content() to use the linked list of header fields
186           when parsing the various MIME headers (Content-XXX).
187
188         * Changed get_content() to store linked list of header field
189           values when parsing a content.
190
191         * Changed mhbuild, mhn, mhlist, mhshow, mhstore, to use the
192           routines in mhcachesbr.c to handle the content cache.
193
194         * Split various funtions (find_cache, find_cache_aux, find_cache_aux2,
195           cache_content) into new file mhcachesbr.c.
196
197         * More calls to sprintf/strcpy (primarily in mhparse.c
198           and mhbuildsbr.c) converted to snprintf/strncpy.
199
200         * When a message is displayed with `mhshow', it is now
201           removed from the "unseen" sequence.
202
203         * Change the default "showmimeproc" to "mhshow".
204
205         * Split "mhn -show" off into separate command "mhshow".
206
207         * Split "mhn -store" off into separate command "mhstore".
208
209         * Split "mhn -list" off into separate command "mhlist".
210
211         * Add sanity checks to context_find(), context_replace(),
212           and context_del(), to abort if context file hasn't been
213           read.
214
215         * Add calls to context_read(), to the beginning of all nmh
216           commands (instead of being called indirectly by context_find).
217
218         * Changes the "substitute" version of vsnprintf/snprintf for
219           operating systems without native versions, to just call the
220           native vsprintf(), and ignore the buffer length.   This is
221           faster, but less secure than the previous version that used
222           temporary files.  This should only be a problem for systems
223           which do not have a native snprintf(), and require `inc' to
224           be setuid/setgid.
225
226         * Lots more calls to sprintf/strcpy converted to snprintf/strncpy.
227
228         * Changes client() routine to take additional parameter, which is
229           the buffer length of the parameter "response".  Then added
230           buffer length checks for this parameter.
231
232         * Changed getws() to get_fields(), since that is apparently the
233           name of a wide character version of gets() on some archetitures.
234
235         * Lots of sprintf/strcpy calls converted to snprintf/strncpy.
236
237         * Change the code in most of the commands that take multiple
238           message names/sequences/ranges on the command, such that
239           the msgs array is expanded dynamically.  This removes most
240           of the limits on the length of command lines.
241
242         * Add additional parameter to copyip(), to specify the
243           maximum number of strings that can be copied (security
244           fix).
245
246         * Create new function getarguments(), to massage the argument
247           vector before parsing it (add any arguments from your
248           profile to the beginning of the argument vector).  This
249           also removed the general limit on the number of command line
250           arguments.
251
252 1998-07-04  Richard Coleman  <coleman@math.gatech.edu>
253
254         * Released nmh-0.27.
255
256         * Added a new command "delete", that is available during
257           a "whatnow" session.  It is equivalent to "quit -delete".
258
259         * Added another parameter to editfile (in whatnowsbr.c),
260           that controls whether editfile should remember the last
261           program that was exec'ed.  This way the whatnow command
262           "mime", will not be re-executed if "edit" is later given
263           with no arguments.
264
265         * Changed whatnowsbr.c, so that whatnow doesn't abort if
266           mhbuild returns an error.
267
268         * Added parameter to sendsbr(), so you may specify whether to
269           rename the draft file.
270
271         * Pass delay time to splitmsg() as a parameter, rather than
272           use a global variable.
273
274         * Moved code to rename draft file after sending message from
275           splitmsg and sendaux, to sendsbr.
276
277         * Removed all the code in viamail to split messages and then
278           mail them.  Replaced this with the standard sendsbr.c routines.
279
280         * Changed sendsbr(), so that when splitting messages into
281           messages of type "message/partial", the header fields that
282           are copied are more compliant with RFC-2046.
283
284         * Fixed mhbuild to track temporary files better.  They are
285           now correctly removed when mhbuild aborts.
286
287         * Created a new man page for "sendfiles".  The information
288           about "mhn -viamail" in the "mhn" man page was moved to
289           this new page.
290
291         * Changed the name of the "viamail" shell script to
292           "sendfiles".  Modified "sendfiles" to use the new
293           viamail program.
294
295         * Moved the functionality for "mhn -viamail" out of mhn,
296           and into a separate executable called "viamail".
297
298         * When storing MIME contents to a folder using mhn -store,
299           they are now accumulated in a temporary file, and then added
300           to the folder using folder_addmsg().
301
302         * Moved code to save content to a folder from store_content
303           to new function output_content_folder.
304
305         * Moved code to save content to file from store_content to
306           new function output_content_file.
307
308         * Moved code to parse storage format string from store_content
309           to new function parse_format_string.
310
311         * Fix copy_some_headers() in mhstoresbr.c, so that the
312           correct header fields in the first enclosing message/partial
313           will be copied (according to RFC2046), when using mhn -store
314           to reassemble messages of type message/partial.
315
316         * Fixed bug to openFTP() in mhparse.c, that caused the
317           tmp file to not be removed, when transferring a
318           message/external file from ftp.
319
320         * Moved the code in mhparse.c to process -auto switch (scan
321           contents for the attribute "name"), to a new function
322           "get_storeproc" in mhstoresbr.c.
323
324         * Moved routines to free data structures related to MIME
325           content from mhparse.c and mhbuildsbr.c, to new file
326           mhfree.c.
327
328         * Moved code to show/display MIME content into new
329           file mhshowsbr.c.
330
331         * Moved code to store MIME content from into
332           new file mhstoresbr.c
333
334         * Moved code to parse MIME content into new
335           file mhparse.c.
336
337         * Moved code to list information about MIME content
338           into new file mhlistsbr.c.
339
340         * Move part_ok(), type_ok(), content_error(), flush_errors(),
341           and set_endian() to new file mhmisc.c.
342
343         * Start to isolate the code to show, list, and store MIME
344           messages.  One side effect is that only one flag (-show,
345           -list, or -store) can be used at a time now.
346
347         * mhn -store -auto wasn't storing file in correct directory.
348
349         * Removed a few dead variables from sbr/ruserpass.c
350
351         * move code for creating tmp files, and renaming the
352           the composition draft in mhbuild, from build_mime()
353           to main().
354
355         * remove left-over code in mhbuild.c, mhbuildsbr.c, for
356           the -[no]auto switch (which isn't used in mhbuild).
357
358         * split mhn.c into mhn.c and mhnsbr.c (name later changed
359           to mhparse.c).
360
361         * split mhbuild.c into mhbuild.c and mhbuildsbr.c.
362
363 1998-05-25  Richard Coleman  <coleman@math.gatech.edu>
364
365         * Released nmh-0.26.
366
367         * Added (unlisted) options [no]dashstuffing to send, post,
368           and whatnow to determine whether to do RFC934 quoting
369           (dashstuffing) for encapsulated BCC messages.  The default
370           is still the same (dashstuffing).
371
372         * Changed the undocumented feature "nodashmunging" in forw
373           and mhl, into the documented feature "nodashstuffing".  The
374           default for forw, is still "dashstuffing" for backward
375           compatibility, although I don't believe that bursting
376           RFC934 digests is very common anymore.
377
378         * Added an option to define REALLYDUMB in the default config.h.
379           But it is not on by default.
380
381         * moved creation of config file mts.conf from zotnet/mts
382           to etc.  This simplified the Makefile in zotnet/mts.
383
384         * simplified directory support/general to etc.
385
386         * removed unneeded directory support/bboards.
387
388         * split getusername() into getusername() and getuserinfo().
389
390         * Changed getusr() routine to getusername().
391
392         * Slight cleanup in folder_pack.c on code that records the new
393           number of the "cur" message when packing.
394
395 1998-05-08  Richard Coleman  <coleman@math.gatech.edu>
396
397         * Released nmh-0.25.
398
399         * Change install process, so that hard linking the correct mts
400           library to libmts.a, is not necessary.  The final link process
401           uses the original name of the library.
402
403         * Fixed bug in flist.c and folder.c, so that symbolic links which
404           point to directories, will not decrement the number of directory
405           links remaining.
406
407         * Split the function list_content (in mhn.c and mhbuild.c) into
408           list_content and list_debug.
409
410         * Don't pack (folder -pack) an empty folder.
411
412         * Exit gracefully in flist.c, if no sequence is specified,
413           and no "Unseen-Sequence" is given in nmh profile.
414
415 1998-02-27  Richard Coleman  <coleman@math.gatech.edu>
416
417         * Released nmh-0.24.
418
419         * Small clarification to the man page for `ali'.
420
421         * Fix bug in inc.c so that if both flags `-file' and `-truncate'
422           are given, that order doesn't matter.
423
424         * Fix bug in seq_list.c when realloc'ing for
425           large sequence line.
426
427 1998-02-23  Richard Coleman  <coleman@math.gatech.edu>
428
429         * Released nmh-0.23.
430
431         * Add new section on "Transfer Encodings" to man page for mhbuild.
432
433         * In mhbuild.c, split compose_content into compose_content
434           (parse and execute composition string), and scan_content (scan content,
435           decided transfer encoding, check for clash with boundary string).
436           I did a good amount of rearranging of this code.
437
438         * Moved definitions for data structures for parsing MIME
439           messages from mhn.c and mhbuild.c to a new include
440           file h/mhnsbr.h.
441
442         * Small amount of rearranging in sendsbr.c
443
444         * Small changes to MAIL.FILTERING file.
445
446         * Add the file MAIL.FILTERING to nmh distribution.
447
448         * Add line to packf so that if message begins with
449           "X-Envelope-From:" field, it is converted to "From ".
450
451         * Fix packf to add "From " line to beginning of message,
452           even if Return-Path doesn't exist.
453
454         * Add note to MACHINES file that on Linux, configure
455           doesn't find the functions sigsetjmp/siglongjmp.
456
457         * Fix configuration for machines that don't have (or find)
458           sigsetjmp/siglongjmp.
459
460 1998-02-11  Richard Coleman  <coleman@math.gatech.edu>
461
462         * Released nmh-0.22.
463
464         * Add a configure check for sigsetjmp.  Add some conditional
465           #define's in h/signals.h in case it's not found.
466
467         * Added additional notes about -auto switch in mhn man page.
468
469         * Added note about MM_CHARSET environment variable to
470           mh-profile(5) man page.
471
472         * Fix signal problem in mhn.c (change setjmp/longjmp to
473           sigsetjmp/siglongjmp).
474
475 1998-02-09  Richard Coleman  <coleman@math.gatech.edu>
476
477         * Released nmh-0.22-pre1.
478
479         * Changed the first line in mhl.format from
480           " -- using template mhl.format -- " to a blank line.
481
482         * Added note about automimeproc to mh-profile man page.
483
484         * Reorganize the main entry point for parsing a MIME message
485           or file in mhn.  Add new function parse_file() as new main
486           entry point for parsing MIME files.
487
488         * Add note to mhn man page, that "mhn -file -" will accept the
489           source message on the standard input.
490
491         * Changed a sanity check in folder_realloc that was too strict.
492
493         * -norfc934mode is now the default for mhbuild,
494           rather than -rfc934mode.
495
496         * Fix mhbuild, so that Content-Description and RFC-822 comments
497           from #forw directive will be correctly included if there is
498           only one message.
499
500         * Change mhn to correctly default parts of multipart/digest to
501           message/rfc822 (leftover code from rfc934mode was removed).
502
503         * Restore HP specific code to zotnet/tws/lexstring.c.  Apparently
504           it is still needed.
505
506 1998-02-06  Richard Coleman  <coleman@math.gatech.edu>
507
508         * Released nmh-0.21.
509
510         * If the file given to mhbuild is "-", then accept the draft on
511           standard input, and output the MIME message to standard output.
512
513         * Cleaned up code in mhbuild.c that decides what transfer
514           encoding to use.
515
516         * Cleaned up code in mhbuild.c that decides what character set
517           to use for text contents.
518
519         * Removed old hpux specific code from zotnet/tws/lexstring.c
520
521 1998-02-02  Richard Coleman  <coleman@math.gatech.edu>
522
523         * Released nmh-0.21-pre2.
524
525         * Added the "decode" variable to mhl.format and mhl.header.
526
527         * Added new variable "decode" to mhlsbr.c to decode text in
528           header fields as per RFC-2047.
529
530         * Make sure that when decoding RFC-2047 header fields, that any
531           spaces at the ends of the encoded text are not ignored, but the
532           spaces between encoded word are.
533
534         * Removed #ifdef's for MIME.  MIME support is always compiled in.
535
536         * scan/inc will now decode both Subject and From lines as
537           RFC-2047 encoded header fields.
538
539         * Added new function write_charset_8bit() to sbr.  It returns
540           the character set to use for 8bit text in composition draft.
541           Changed mhbuild to use this function.
542
543         * Split mhn man page into man pages for mhn and mhbuild.
544
545         * mhn -show will only now only use default method for content
546           of type plain, if it is NOT a part of a multipart/alternative.
547
548         * Split mhn -build into mhbuild.  Did some code cleanup.
549
550         * Added support for %(decode) to fmtdump.c.
551
552         * check_charset() now accepts US-ASCII as a subset of any
553           ISO-8859-X character set.
554
555         * Changed the default "showproc" to mhl, instead of the
556           pager more.
557
558         * When reading file into mhn composition file, only need read
559           permissions, not write permissions.
560
561         * Added own version of strcasecmp to distribution, since
562           nmh calls it frequently with NULL pointers (ughh).
563
564         * Replaced uleq.c with strcasecmp.  Removed uleq.c from
565           distribution.
566
567 1998-01-22  Richard Coleman  <coleman@math.gatech.edu>
568
569         * Released nmh-0.21-pre1.
570
571         * If a message is missing charset parameter to text/plain, show
572           will assume US-ASCII, rather than just calling showmimeproc.
573
574         * Change show.c and mshcmds.c to use check_charset to see if text
575           message contains valid character set.
576
577         * Added new scan format file "scan.nomime" to support/general
578           that doesn't do any RFC-2047 decoding.
579
580         * Modified all the scan format files in support/general to do
581           RFC-2047 decoding of Subject field.
582
583         * Did more work on sbr/fmt_rfc2047.c, so that it will correctly
584           ignore whitespace between two valid encoded words, but not
585           between an encoded word and normal text.
586
587         * Created new file sbr/check_charset.c.  Moved code from
588           fmt_rfc2047.c to check for valid character set to this file.
589
590         * Added format escape %(decode) to decode contents of "str" register
591           as a RFC-2047 header field.
592
593         * The command install-mh now recognizes the switches -version
594           and -help.
595
596         * Added a new argument to print_help.c to decide whether to
597           print profile entries (needed for install-mh to prevent weird
598           loops).
599
600         * Changed folder_read.c and folder_realloc.c so that mp->lowoff
601           is initialize to max (mp->lowmsg, 1) rather than always 1.
602
603         * Changed macros for sequence/attribute manipulation so that
604           message status array doesn't need to always start at 1.
605
606         * Small cleanups in folder_realloc().
607
608 1998-01-09  Richard Coleman  <coleman@math.gatech.edu>
609
610         * Released nmh-0.20.
611
612         * Added configure option --with-pager=PAGER.
613
614         * Added configure option --with-editor=EDITOR.
615
616         * Changed the default format file for mhl (mhl.format) to
617           also ignore (not display) the header fields Content-Type,
618           Content-Transfer-Encoding, and Content-ID
619
620         * Fixed core dump in addrsbr.c when using %(proper) format function
621           and the To: line was missing.
622
623         * Added the file ZSH.COMPLETION to the distribution.
624
625 1998-01-04  Richard Coleman  <coleman@math.gatech.edu>
626
627         * Released nmh-0.20-pre2.
628
629         * Added new switch -snoop to both `msgchk' and `inc', so you can
630           watch the POP transaction.
631
632         * Changed "replgroupcomps" to check for Mail-Followup-To header
633           first, and use it if available.
634
635         * Changed "replcomps" to check for Mail-Reply-To header
636           first, and use it if available.
637
638 1998-01-03  Richard Coleman  <coleman@math.gatech.edu>
639
640         * Released nmh-0.20-pre1.
641
642         * Changed seq_list.c to dynamically enlarge the buffer for
643           collecting the message ranges in a long sequence line.
644           This should remove the last hard limit on the size of a
645           sequence line.
646
647         * Changed seq_read.c so that can read long sequence lines.
648           It will use multiple calls to m_getfld() when m_getfld()
649           returns the state FLDPLUS.
650
651         * Changed brkstring.c to dynamically add more space for pointers
652           if necessary.  This is needed when splitting up large sequence
653           lines.
654
655         * Did some small cleanups in seq_save.c.
656
657         * Added new switches `-[no]unseen' to rcvstore, to control
658           whether new messages are added to Unseen-Sequence.
659
660         * Moved locking routines (zotnet/mts/lock.c) to sbr/lock_file.c
661
662         * Changed the internal UNSEEN flag to SELECT_UNSEEN which is
663           more appropriate.  Changed the MHPATH flag to ALLOW_NEW.
664
665         * Changed "replcomps" to not include CC and TO lines so that
666           that reply message is only directed at the author of the
667           message to which you are replying.
668
669         * Added new switch `-group' to command repl, which causes repl
670           to use new forms file "replgroupcomps".  This is intended for
671           making group replies.
672
673         * Removed #ifdef for ATHENA.
674
675 1997-12-28  Richard Coleman  <coleman@math.gatech.edu>
676
677         * Released nmh-0.19.
678
679         * Fix repl,forw so that switch `-form file' will not abort
680           as ambiguious (silly mistake on my part).
681
682         * Cleaned up the mhn man page.  Added info about a few escapes
683           for the formatting/display strings that were not documented
684           (%%, %t).  Moved the BNF grammar for the mime composition file,
685           to the end of the man page.
686
687         * Added the options -[no]format to the command repl.  The
688           switch `-format' will filter the message to which you are
689           replying with the standard message filter "mhl.reply", which
690           is now included in the distribution.  The `-noformat' option
691           will negate the use of -format or -filter and not include
692           the message to which you are replying in the draft.
693
694         * Did some cleaning and reorganization on many of the man
695           pages.
696
697         * Added debugging switch `-debug' to mhparam, which displays
698           the values of all `procs' (and some other misc configuration
699           info) that nmh keeps in global variables.
700
701         * When using `refile -preserve', if a conflict occurs, then use
702           the next available number above the message number you wish
703           to preserve.
704
705         * In forw.c, split the code for creating MIME style forwarding
706           out of copy_draft, and into copy_mime_draft.
707
708         * Move routines in mark.c to print sequences, into new
709           file sbr/seq_print.c
710
711         * flist will now update the current folder.
712
713         * Added the switches -[no]fast to flist, to replace
714           -[no]total.  The previous switches are still accepted
715           but now undocumented.
716
717         * More reorganization in flist of the code for
718           traversing folders.
719
720         * The command "flist +foo -all" will now scan the folder
721           "foo" and all its 1st level children.
722
723         * Add missing include file <h/mh.h> to sbr/snprintf.c
724
725         * Fix alarm bug in rcvtty, so that when it calls external
726           process, the alarm is never longer than 30 minutes.
727
728 1997-12-17  Richard Coleman  <coleman@math.gatech.edu>
729
730         * Released nmh-0.18.
731
732         * Fixed bug in mark, so that "mark -list -seq foo" will
733           correctly indicate if "foo" is a private sequence.  I found
734           this bug mentioned in Jerry Peek's book.
735
736         * Simplified the code in seq_setcur(), since seq_addmsg() now
737           retains the public/private status of sequences.
738
739         * Changed sequence handling so that if the switches -public
740           or -nopublic, are not specified for the commands mark, pick,
741           or rcvstore, then existing sequences will retain their
742           previous public/private status.
743
744         * mhparam now handles the mh-sequences profile entry
745           correctly.
746
747         * flist -all will now also check readonly folders (for
748           private sequences).
749
750         * Improve the leaf optimization for folder command.
751           It will now track the number of directories in a folder,
752           and stop stat'ing files once it has hit all the subfolders.
753
754         * Renamed m_getfolder to getfolder.  Changed getfolder to
755           take option to determine whether it should get current
756           folder, or just default folder (Inbox).  Changed rcvstore,
757           inc, and rmf to use the new getfolder.
758
759         * flist now indicates if a sequence is private.
760
761         * Change WUNTRACED to 0, in pidwait.c, so that commands will
762           wait for stopped processes.
763
764         * conflict will dynamically allocate space for group names,
765           so it can now handle system with more than 100 groups.
766
767 1997-12-09  Richard Coleman  <coleman@math.gatech.edu>
768
769         * Released nmh-0.18-pre4.
770
771         * Check if we have enough message status space, before we
772           call folder_realloc() in burst, mhpath, and m_draft().
773
774         * mhn will now correctly identify a formatting string of "-"
775           for the option -store, and send content to stdout.
776
777         * Change the way that memory for message status is
778           allocated.  It is dynamcially allocated separately from
779           the folder/message structure.  This required changing
780           folder_read.c, folder_realloc.c, folder_free.c.
781
782         * Removed all the MTR code (experimental code for message
783           status allocation).
784
785         * Renamed m_readfolder.c to folder_read.c and simplified
786           the code.
787
788         * Renamed m_freefolder.c to folder_free.c.
789
790         * Add function trim() to slocal.c to pretty print
791           the debugging output.
792
793         * Changed the name of m_packfolder() to folder_pack().
794           Changed the name of m_remsg() to folder_realloc().
795
796 Wed Dec  3 23:33:38 1997  Richard Coleman  <coleman@math.gatech.edu>
797
798         * Released nmh-0.18-pre3.
799
800         * Changed installation to add `flists' which is hard linked
801           to `flist'.  This is a equivalent to `flist -all'.
802
803         * For flist, -showzero is on by default.
804
805         * Major changes to flist.  Default is now for flist to search
806           current folder.  The switch `-all' is now used to specify
807           searching all top level folders.  The new switch `-showzero'
808           is used to print out folders that don't contain any messages
809           in the given sequence.
810
811         * Split BuildFolderList in flist.c into 2 functions
812           (BuildFolderList, BuildFolderListR).  Changed these functions
813           so that flist now does better leaf optimization, and will stop
814           stat'ing directory entries when it knows it has hit all the
815           subdirectories of a given directory.
816
817         * Reorganized code in folder.c, so that all relevant folders
818           are scanned first and information recorded.  Then all the
819           folder summaries at printed out at one time.
820
821         * Made the options of folder(s) more orthogonal.  Now
822           "folder -all -noheader -nototal" will do the right thing.
823
824         * Added `-noall' switch to folder, for completeness.
825
826         * Changed the default mode for creation of new folders
827           to 0700 (was 0711).
828
829         * Slightly changed the format for flist.  It now indicates
830           if a folder is current.  Also the width of the various
831           fields are now calculated at runtime.
832
833         * Changed the format for folder(s).  Folder names
834           are now left justified.  The width of the various fields
835           are calculated at runtime.
836
837 Sun Nov 30 19:14:53 1997  Richard Coleman  <coleman@math.gatech.edu>
838
839         * Released nmh-0.18-pre2.
840
841         * Add paragraph to man page for install-mh and to INSTALL file
842           about checking for global mh.profile.
843
844         * Renamed m_find() to context_find().
845           Renamed m_replace() to context_replace().
846           Renamed m_delete() to context_del().
847           Renamed m_update() to context_save().
848           Renamed m_getdefs() to context_read().
849           Renamed m_foil() to context_foil().
850
851         * Change rcvstore to use routine folder_addmsg(), instead of
852           adding message to folder itself.
853
854         * Changed refile, so that if the switch -preserve is used,
855           and a conflict occurs for a particular folder, then folder_addmsg()
856           will just use next highest available number for that folder,
857           instead of exiting.
858
859         * Make folder_addmsg() more robust.  It will make repeated
860           attempts to link file into folder if link returns with
861           the error EEXIST.
862
863         * Fix bug, so that that if forking sendmail, HELO will be sent
864           unless clientname: option is defined but empty (so now it
865           is the same as the direct smtp code).
866
867         * Changed sprintb to snprintb (now we pass the buffer length
868           to new routine).  Changed code to use new function.
869
870         * Added snprintf to sbr. Added configure check to build it
871           if you don't have a native version (but haven't changed much
872           code to use it yet).
873
874 Thu Nov 13 18:42:18 1997  Richard Coleman  <coleman@math.gatech.edu>
875
876         * Released nmh-0.18-pre1.
877
878         * Fixed alarm bug in slocal, so that alarm is never
879           called with a value larger than 30 mintues.
880
881         * Fixed race condition in rmm and refile, so that
882           context is updated before external rmmproc is called.
883
884         * Removed all the OVERHEAD code.
885
886         * Move code to add message to folder from refile.c
887           to folder_addmsg.c
888
889 Fri Jul 25 19:39:29 1997  Richard Coleman  <coleman@math.gatech.edu>
890
891         * Did some rearranging of the internals of inc.c.
892
893         * Make -inplace the default for anno, forw, dist, and repl.
894
895         * Changed --enable-smtp to --with-mts={smtp,sendmail}
896
897         * Created new directory mts/sendmail for direct sendmail
898           interface (although it currently still uses SMTP).
899
900         * Removed all the TMA (trusted mail agent) code
901
902         * Removed all the TTYD (terminal access daemon) code
903
904         * Removed all the MF (uucp filtering) code.
905
906         * Removed all the code for BERK.
907
908         * Removed all the code for stand-alone delivery (MHMTS).
909
910         * Split the file mts/sendmail/smail.c into sendmail.c and
911           smtp.c.  Changed the name of the directory to mts/smtp.
912
913         * Changed autoconf to use @sysconfdir@ for location of
914           configuration files.
915
916         * Changed #define in mhn.c from FTP to BUILTIN_FTP.
917
918 Mon Jul 21 03:22:34 1997  Richard Coleman  <coleman@math.gatech.edu>
919
920         * Released nmh-0.17.
921
922         * MAKEDEFS weren't passed down to recursive makes correctly.
923
924         * slocal.c now checks for UTMP_FILE and _PATH_UTMP instead
925           of hard-coding "/etc/utmp".
926
927         * rcvtty.c check for _PATH_UTMP if UTMP_FILE is not
928           defined.
929
930         * Remove configure checks for ulong and ushort.  Changed
931           code to just use unsigned {short, long}.
932
933         * Change addmsg function in refile.c to return new
934           number of refiled message.
935
936         * Added check in get_returnpath for empty unixbuf.
937
938         * Cleanup of sbr/pidstatus to use more POSIX macros
939           for return value of wait().
940
941         * Change configure to also check /bin for "more".
942
943 Sat Jul 12 00:02:23 1997  Richard Coleman  <coleman@math.gatech.edu>
944
945         * Released nmh-0.16.
946
947 Mon Jun 23 20:13:24 1997  Richard Coleman  <coleman@math.gatech.edu>
948
949         * Added automimeproc, which should replace automhnproc.
950
951         * multipart messages will no longer abort for messages
952           of type 8bit or binary (although we still can't really
953           deal with binary messages, yet).
954
955         * Fix double free of c_storage.  From John MacMillan.
956
957         * mhn now treats unknown subtypes of "text" as text/plain.
958
959         * mhn changed so that specifying mhn-show-multipart, or
960           mhn-show-multipart/{mixed, alternate, etc...) will override
961           the use of the internal method for displaying these types.
962           Previously mhn would always use the internal method for subtypes
963           mixed, alternate, digest, and parallel (even if an alternate
964           method was specified in mhn.defaults).
965
966         * mhn show treats unknown subtypes of multipart, as type
967           multipart/mixed (as specified RFC2046).
968
969         * mhn checks for the parameter "name" rather than "x-name".
970           From MH-6.8.4 patch.
971
972         * Fix double free of ctinfo in user_content when using
973           #forw with single message.  From John MacMillan (and
974           MH-6.8.4 patch).
975
976         * Changed -mhnproc switch for show, to -showmimeproc.
977
978         * Changed profile entry "mhnproc" to "showmimeproc".
979
980         * Added "mime" option to "whatnow", which calls the program
981           "buildmimeproc" (default is mhn -build) to process MIME
982            composition files.
983
984         * Added -build switch to mhn, to process MIME composition
985           files.
986
987         * Did some reorganizing of mhn.c.
988
989         * Changed casting in mts/sendmail/smail.c from (char) to
990           (signed char) so SMTP reply codes work correctly for machines
991           which used unsigned chars by default.
992
993 Sat Jun 21 01:21:47 1997  Richard Coleman  <coleman@math.gatech.edu>
994
995         * Released nmh-0.15.
996
997         * Added new form "scan.unseen" to distribution.  It marks messages
998           which are in any sequence in Unseen-Sequence.
999
1000         * Do some rearranging of date/time code in zotnet/tws/dtime.c
1001
1002         * Fix sign extension bugs in fmt_scan.c.
1003
1004         * Fix m_atoi.c so that strings ending in non-digit characters
1005           return 0.
1006
1007         * Split code in burst.c so that finding delimiters of digested
1008           messages and bursting a message into multiple messages are
1009           two separate functions (find_delim and burst).
1010
1011         * Add workaround fo AC_PATH_PROG in configure.in, so
1012           that BSD4.4 machines can find sendmail, vi, more.
1013
1014         * Added "-width" option to rcvtty.
1015
1016         * Change a few variable names in zotnet/mts/client.c since
1017           they conflict with defines on AIX.
1018
1019         * Makefile in zotnet/tws assumes lexing of dtimep.lex was
1020           unsuccessful if resulting file is less than 500 lines long
1021           (rather than 10, which was previous value), since AIX
1022           sed gives mangled file of about 200 lines.
1023
1024         * Extract code in rcvstore.c to link message into folder,
1025           and put in own subroutine.
1026
1027         * Extract code in refile.c to link message into folder,
1028           and put in own subroutine.
1029
1030         * Moved code to remove messages from folder into own
1031           routine "folder_delmsgs" in sbr.  Changed rmm.c and
1032           refile.c to use new routine.
1033
1034 Fri May 16 06:09:31 1997  Richard Coleman  <coleman@math.gatech.edu>
1035
1036         * Renamed m_seqok to seq_nameok.
1037
1038         * Changed m_setunseen, msh, mshcmds, flist, and scan to use
1039           seq_getnum.
1040
1041         * Changed m_seqflag to return the number of a sequence rather
1042           than its bit flag.  Changed its name to seq_getnum and renamed
1043           file to sbr/seq_getnum.c.
1044
1045         * Removed function m_seqnew and file sbr/m_seqnew.c since it is
1046           no longer used.
1047
1048         * Added zero switch to m_seqadd function to zero out bits before
1049           adding message to sequence.
1050
1051         * Renamed function m_setvis to m_setunseen, and renamed
1052           corresponding file in sbr.
1053
1054         * Renamed function m_setseq to m_setprev, and renamed corresponding
1055           file in sbr.
1056
1057         * Changed mark.c and pick.c to use m_seqaddsel and m_seqdelsel.
1058
1059         * Added new function m_seqdelsel to m_seqdel.c, which deletes
1060           all selected messages from a sequence.
1061
1062         * Added new function m_seqaddsel to m_seqadd.c, which adds all
1063           selected messages to a sequence.
1064
1065         * Split sbr/m_seqnew.c into m_seqadd.c, m_seqdel.c, m_seqnew.c,
1066           and m_seqok.c.
1067
1068 Thu May 15 00:53:17 1997  Richard Coleman  <coleman@math.gatech.edu>
1069
1070         * Renamed function pack_folder to m_packfolder, and moved it
1071           from uip/folder.c into its own file sbr/m_packfolder.c
1072
1073 Wed May 14 23:38:00 1997  Richard Coleman  <coleman@math.gatech.edu>
1074
1075         * Changed function m_gmsg to m_readfolder.  Renamed file
1076           sbr/m_gmsg.c to sbr/m_readfolder.c.
1077
1078 Mon May  5 19:57:11 1997  Richard Coleman  <coleman@math.gatech.edu>
1079
1080         * Expanded rcvtty man page, and added small patch from
1081           MH-6.8.4 distribution.
1082
1083 Fri May  2 15:24:34 1997  Richard Coleman  <coleman@math.gatech.edu>
1084
1085         * Released nmh-0.14.
1086
1087         * Comment out configure test and code for tgetent to allocate its
1088           own termcap buffer when passed a NULL argument.
1089
1090 Sat Apr 26 03:46:38 1997  Richard Coleman  <coleman@math.gatech.edu>
1091
1092         * Added new options `-checkmime', `-nocheckmime', and `-mhnproc'
1093           to show.  Restructured code to handle options to various
1094           `procs' better.  Deprecated `-noshowproc' option and NOMHNPROC
1095           environment variable.
1096
1097         * Added new man page `mh-draft' which documents the
1098           draft folder facility in nmh.
1099
1100         * Renamed fmtsbr.h to fmt_scan.h.  Renamed fmtcompile.h
1101           to fmt_compile.h.
1102
1103         * split fmtsbr.c into fmt_scan.c and fmt_new.c.  Renamed
1104           fmtcompile.c to fmt_compile.c, and formataddr.c to
1105           fmt_addr.c.
1106
1107         * `send -help' wasn't showing the -(no)mime and -split
1108           options.
1109
1110 Fri Apr 25 02:50:36 1997  Richard Coleman  <coleman@math.gatech.edu>
1111
1112         * Released nmh-0.13.
1113
1114         * Changed mhpath so it doesn't abort if a message sequence
1115           such as "mhpath all" expands to more than 1000 messages.
1116           Also mhpath now dynamically reallocated space for message
1117           names (The number of command line arguments is still limited
1118           to MAXARGS).
1119
1120         * Did some general restructuring of the code in folder.c
1121           that checks for folder information, and prints it.
1122
1123 Thu Apr 24 01:04:37 1997  Richard Coleman  <coleman@math.gatech.edu>
1124
1125         * Changed `folder' to reallocate space for folder names if
1126           necessary.  So `folders' can now handle more than 300 folders.
1127
1128 Tue Apr 22 14:01:26 1997  Richard Coleman  <coleman@math.gatech.edu>
1129
1130         * Change configure to use a compile check to see if the tm struct
1131           has tm_gmtoff, rather than using egrep.
1132
1133 Mon Apr 21 02:19:17 1997  Richard Coleman  <coleman@math.gatech.edu>
1134
1135         * Released nmh-0.12.
1136
1137         * Had set_exists and unset_exists macros backwards.
1138
1139         * Released nmh-0.11.
1140
1141 Thu Apr 10 02:39:53 1997  Richard Coleman  <coleman@math.gatech.edu>
1142
1143         * Added documentation to mh-profile.man about the various
1144           `procs' (mhlproc, showproc, lproc, etc...).
1145
1146         * Replace the bit twiddling for SELECTED, UNSEEN, and
1147           mp->attrstats with macros.
1148
1149         * If system doesn't have SIGEMT (like Linux), then use SIGTERM
1150           in msh.c instead.
1151
1152         * Change fstat to stat in m_gmsg.c since Linux wants
1153           to hide dd->dd_fd.
1154
1155         * Merge Linux patch sent in by Michel Oosterhof (original
1156           patch from bsa@kf8nh.wariat.org).
1157
1158         * Document an undocumented MH feature.  mhn -form mhl.null
1159           will suppress the display of the message header.
1160
1161         * mhparam will now return "mhparam etcdir".
1162
1163         * Add catproc to /config/config.c and use that in show.c
1164           and mshcmds.c, rather than hard coding in /bin/cat.
1165
1166         * Add mhnproc to the list of `procs' in mh-profile.man.
1167
1168         * Add configure test for lorder and tsort commands.
1169
1170         * Commented out the padding in the `msgs` struct in h/mh.h
1171
1172         * Change m_gmsg.c to allocate elements to the `info' array by
1173           500 elements at a time (rather than MAXFOLDERS / 5).
1174
1175         * Add note to man page for mhmail that zero length messages are
1176           not sent.  Need to use -body "" to send empty messages.
1177
1178         * zotnet/mts/mts.c : compare character with '\0', not NULL.
1179
1180         * sbr/getcpy.c : assign '\0' to character, not NULL.
1181
1182         * add m_fmsg to most programs in uip so that they explicitly free
1183           folder/message structure when done with folder.
1184
1185         * uip/slocal.c : cleanup processing of sender.  Make sure it is
1186           defined even if message is missing "From " line.
1187
1188 Mon Mar 31 03:37:35 1997  Richard Coleman  <coleman@math.gatech.edu>
1189
1190         * Released nmh-0.10.
1191
1192 Sun Mar 30 21:46:17 1997  Richard Coleman  <coleman@math.gatech.edu>
1193
1194         * Add configure check for <locale.h>.  Turn on LOCALE support
1195           by default.
1196
1197 Thu Mar 20 03:21:24 1997  Richard Coleman  <coleman@math.gatech.edu>
1198
1199         * Reversed previous decision to retain "From " lines in slocal.
1200           The "From " line is now removed from all messages.
1201
1202         * inc now saves the date from the "From " envelope in the
1203           Delivery-Date header for all messages.
1204
1205         * sbr/m_getfld.c: Clean up processing of Return-Path and
1206           Delivery-Date from the "From " envelope.
1207
1208 Mon Mar 17 19:03:36 1997  Richard Coleman  <coleman@math.gatech.edu>
1209
1210         * client.c: cast iaddr to int before comparing return value
1211           of inet_addr with NOTOK.
1212
1213 Tue Mar 11 04:38:10 1997  Richard Coleman  <coleman@math.gatech.edu>
1214
1215         * Grep test for signal names was failing on some OS'es because
1216           of missing tabs in regex.
1217
1218 Sat Mar  8 01:58:22 1997  Richard Coleman  <coleman@math.gatech.edu>
1219
1220         * Released nmh-0.09.
1221
1222         * Move config files and format files to *.old before installing.
1223
1224         * Add configure check for killpg.
1225
1226         * msh.c: include <termios.h> instead of <termio.h> and
1227           <sys/ioctl.h>.
1228
1229         * prompter.c: don't include <sys/ioctl.h> anymore.
1230
1231 Thu Mar  6 04:03:24 1997  Richard Coleman  <coleman@math.gatech.edu>
1232
1233         * Added `-mime' and `-nomime' options to `repl'.
1234           From MH-6.8.4 diff.
1235
1236 Tue Mar  4 03:10:37 1997  Richard Coleman  <coleman@math.gatech.edu>
1237
1238         * ruserpass.c : removed conflicting prototypes.
1239
1240         * rcvtty.c : Fixed rcvtty to obey terminal permissions granted
1241           by `mesg' command.  Previously only worked on BSD machines.
1242
1243 Mon Mar  3 00:18:59 1997  Richard Coleman  <coleman@math.gatech.edu>
1244
1245         * rcvtty.c : Changed to use #define UTMP_FILE (if exists) rather
1246           than hard coded "/etc/utmp".
1247
1248         * Released nmh-0.08.
1249
1250         * Changed slocal to lock .maildelivery (or file given by -maildelivery)
1251           when accessing ndbm/db file for duplicate suppression, instead of
1252           locking database itself.
1253
1254 Thu Feb 27 05:28:09 1997  Richard Coleman  <coleman@math.gatech.edu>
1255
1256         * Added slocal action `mmdf' to deliver to a file in mmdf format.
1257
1258         * Changed the slocal actions `file' and `>' to always deliver in
1259           mbox (uucp) format rather than be determined by RPATHS config
1260           option.
1261
1262         * Changed the slocal action `mbox' to deliver in mbox (uucp) format
1263           rather than mmdf format.
1264
1265         * slocal now adds Delivery-Date field to all messages (previously it
1266           only added it to messages when delivering them to a file). The
1267           "From " line is now retained on all messages if compiling with
1268           RPATHS, rather than being discarded.
1269
1270         * rcvpack no longer adds the Delivery-Date field to messages.
1271
1272 Sun Feb 23 22:03:54 1997  Richard Coleman  <coleman@math.gatech.edu>
1273
1274         * Removed the script packmbox, since it's functionality has been
1275           added to packf.
1276
1277         * Changed packf so that it uses mbox (uucp) format by default
1278           rather than mmdf format.  Added options -mbox and -mmdf to
1279           packf so you can choose the preferred format.
1280
1281         * Changed rcvpack so that it uses mbox (uucp) format by default
1282           rather than mmdf format.  Added options -mbox and -mmdf to
1283           rcvpack so you can choose the preferred format.
1284
1285 Tue Feb 18 00:01:05 1997  Richard Coleman  <coleman@math.gatech.edu>
1286
1287         * Changed nmh to use dot locking by default (although you
1288           can still easily change this in config.h).
1289
1290         * Simplified locking code.  Removed code allowing setting of
1291           locking type in mts.conf.  Now the locking type and locking
1292           directory (if any) can only be set at compile time.
1293
1294 Fri Feb 14 02:49:18 1997  Richard Coleman  <coleman@math.gatech.edu>
1295
1296         * Prefer getting timezone information from tm->gmtoff rather
1297           than tzset and external timezone variable.
1298
1299 Thu Feb 13 00:35:45 1997  Richard Coleman  <coleman@math.gatech.edu>
1300
1301         * Fixed typo in ruserpass.c in the variable toktabs.
1302
1303         * When ruserpass was added to LIBOBJS, it was missing
1304           the suffix.
1305
1306         * Released nmh-0.07.
1307
1308 Tue Feb 11 01:29:47 1997  Richard Coleman  <coleman@math.gatech.edu>
1309
1310         * Add check to configure, so that if ruserpass, or _ruserpass
1311           is not found, build version of ruserpass in sbr.
1312
1313         * Added define's to discard.c, m_getfld.c, and scansbr.c so
1314           the code that manipulates internals of stdio, will build
1315           on SCO 5.x.
1316
1317         * Added #define to control whether to compile the simple
1318           built-in FTP client in mhn.
1319
1320         * Added configure check for ushort and ulong.  Change code
1321           to use ushort/ulong rather than u_short/u_long.
1322
1323         * A couple of small cleanups in locking code.
1324
1325         * Added configure check for gmtoff element in struct tm.
1326
1327         * Added configure check for tzset.
1328
1329 Fri Feb  7 03:01:57 1997  Richard Coleman  <coleman@math.gatech.edu>
1330
1331         * Released nmh-0.06.
1332
1333         * Removed code for machines that don't have socket
1334           interface (how could they get mail anyway?).
1335
1336         * Removed code for BSD41 machines.  I don't think there are
1337           many such machines around anymore.
1338
1339         * Add configure check for function uname, and prefer it
1340           over gethostname.  General cleanup of zotnet/mts/mts.c.
1341
1342         * Change all `lseek' calls to use POSIX symbolic constants
1343           SEEK_SET, SEEK_CUR, SEEK_END.
1344
1345 Thu Feb  6 01:16:30 1997  Richard Coleman  <coleman@math.gatech.edu>
1346
1347         * Check lex generated file in zotnet/tws and use
1348           pre-generated version if necessary.
1349
1350         * Released nmh-0.05.
1351
1352         * Change to use reliable signals on all platforms that have
1353           sigaction.  Change so that interrupted system calls are
1354           restarted for all signals except SIGALRM.  This fixes alarm
1355           handling code in smail.c for BSD based systems.
1356
1357         * Added lorder and tsort commands so that created libs can
1358           be linked in one pass.
1359
1360 Tue Feb  4 01:33:00 1997  Richard Coleman  <coleman@math.gatech.edu>
1361
1362         * Changed pidwait so that while it is waiting for a child,
1363           it should block signals rather than ignore them.
1364
1365 Mon Feb  3 21:05:30 1997  Richard Coleman  <coleman@math.gatech.edu>
1366
1367         * Add checks to configure for dbm_open and -lndbm.
1368
1369 Thu Jan 30 05:15:42 1997  Richard Coleman  <coleman@math.gatech.edu>
1370
1371         * folder -pop and folder -push were freeing some memory too
1372           quickly, which caused the entry popped from the stack to not
1373           become the current folder.
1374
1375 Wed Jan 29 01:28:02 1997  Richard Coleman  <coleman@math.gatech.edu>
1376
1377         * Released nmh-0.04.
1378
1379         * Define ospeed and PC in termsbr.c is OS doesn't have
1380           it.
1381
1382 Sun Jan 26 20:25:10 1997  Richard Coleman  <coleman@math.gatech.edu>
1383
1384         * editfile will create a symbolic link to the altmsg if it
1385           can't make a link, on any machine supporting lstat.  Formerly
1386           this would happen only on BSD42 based machines.
1387
1388 Sat Jan 25 22:54:26 1997  Richard Coleman  <coleman@math.gatech.edu>
1389
1390         * traverse (in popsbr.c) wasn't calling va_start before using
1391           variable argument list.  Fixes core dump in inc when using POP.
1392
1393 Fri Jan 24 03:27:59 1997  Richard Coleman  <coleman@math.gatech.edu>
1394
1395         * The variable pass in remotemail needed to be set to
1396           NULL.  (From MH-6.8.4 diff).  Fixes core dump of msgchk when
1397           using POP.
1398
1399         * inc and msgchk were using -rpop by default when configured
1400           with POP support.  Default is now -norpop.
1401
1402 Thu Jan 23 02:01:17 1997  Richard Coleman  <coleman@math.gatech.edu>
1403
1404         * By default, post will now give the SMTP HELO command with
1405           the local hostname.  If you specify a hostname with the
1406           clientname: option in mts.conf file, post will give the
1407           HELO command with that name instead.  If the argument to the
1408           clientname: option is empty, no HELO command is given.
1409           (From the MH-6.8.4 diff)
1410
1411 Wed Jan 22 01:55:45 1997  Richard Coleman  <coleman@math.gatech.edu>
1412
1413         * When using `-help' for a command, it will also print its
1414           profile compents from .mh_profile. (From MH-6.8.4 diff)
1415
1416         * "slocal -file" will now correctly takes its input from
1417           a file (currently need to specify full path).
1418
1419 Sun Jan 19 20:37:21 1997  Richard Coleman  <coleman@math.gatech.edu>
1420
1421         * "slocal -debug" will now issue a warning if a non-blank
1422           line in the .maildelivery file has less than 5 fields.
1423
1424 Sat Jan 18 02:26:41 1997  Richard Coleman  <coleman@math.gatech.edu>
1425
1426         * Changed slocal so that code for duplicate suppression
1427           (MH config was MSGID) is always built. Added the options
1428           -[no]suppressdup to slocal to turn this on/off.
1429
1430 Thu Jan 16 00:26:34 1997  Richard Coleman  <coleman@math.gatech.edu>
1431
1432         * Released nmh-0.03.
1433
1434         * Fixed problem where mark would core dump if no
1435           .mh_sequence file existed.
1436
1437         * Fixed problem where slocal would core dump if -debug
1438           option was given, and certain headers were missing.
1439
1440         * Added patch to slocal to add `folder' (+) action, which
1441           is shorthand for piping message to rcvstore.  Updated
1442           man page.
1443
1444 Wed Jan 15 21:30:17 1997  Richard Coleman  <coleman@math.gatech.edu>
1445
1446         * Changed flist option -unseen to -[no]all.  Cleaned up
1447           flist man page.
1448
1449 Fri Jan 10 20:36:33 1997  Richard Coleman  <coleman@math.gatech.edu>
1450
1451         * Fixed flist.  Changed the profile component `Folder-Order'
1452           to `Flist-Order.  Added option `-sequence' to flist, so
1453           you can specify the name of the sequence to search for.
1454
1455 Thu Jan  9 00:20:48 1997  Richard Coleman  <coleman@math.gatech.edu>
1456
1457         * A few minor portability cleanups.  Changed to use PATH_MAX
1458           rather than MAXPATHLEN.  Don't assume ospeed variable exists
1459           in termsbr.c.  Removed some conflicting prototypes.
1460
1461 Wed Jan  8 11:05:02 1997  Richard Coleman  <coleman@math.gatech.edu>
1462
1463         * Add configure test to check if tgetent will accept NULL
1464           and allocate its own buffer.  Borrowed from zsh.
1465
1466         * Changed libpath to etcpath.
1467
1468 Mon Jan  6 04:15:35 1997  Richard Coleman  <coleman@math.gatech.edu>
1469
1470         * Cleaned up source code and Makefiles, so that if your `make'
1471           supports the VPATH option, you can build nmh in a different
1472           directory from where the source code is located.
1473
1474 Fri Jan  3 05:05:18 1997  Richard Coleman  <coleman@math.gatech.edu>
1475
1476         * Released nmh-0.02.
1477
1478 Wed Jan  1 17:41:52 1997  Richard Coleman  <coleman@math.gatech.edu>
1479
1480         * Split mhook man page into man pages for rcvdist, rcvpack,
1481           and rcvtty.
1482
1483 Tue Dec 31 03:07:48 1996  Richard Coleman  <coleman@math.gatech.edu>
1484
1485         * Changed code to use strerror, rather than using sys_errlist
1486           and sys_nerr directly.
1487
1488 Mon Dec 30 02:15:25 1996  Richard Coleman  <coleman@math.gatech.edu>
1489
1490         * -compat switch from install-mh removed.
1491
1492         * Changed the default POP port from "pop" to "pop3".
1493
1494 Sat Dec 28 13:25:05 1996  Richard Coleman  <coleman@math.gatech.edu>
1495
1496         * Changed mhn_defaults to mhn.defaults.  Changed create_mhn_defaults
1497           (again) to mhn.defaults.sh.  Changed find_program (again) to
1498           mhn.find.sh.  mhn.defaults.sh now takes the search path
1499           as an argument.  Default search path is now specified in Makefile
1500           rather than in script.
1501
1502 Fri Dec 27 16:34:01 1996  Richard Coleman  <coleman@math.gatech.edu>
1503
1504         * Changed mtstailor file to mts.conf.  Updated man pages.
1505
1506         * Changed si_value to si_val in mhn.c, since it conflicts with
1507           macro defined on Solaris.
1508
1509 Thu Dec 26 02:50:15 1996  Richard Coleman  <coleman@math.gatech.edu>
1510
1511         * Added --enable-nmh-mhe (and --disable-nmh-mhe) to enable/disable
1512           support for Emacs front-end mhe.  It is on by default.
1513
1514         * Added the following configure options: --enable-nmh-pop to
1515           enable client side pop support, --enable-nmh-smtp to enable
1516           SMTP support.  Client-side pop support now compiles.  Man
1517           pages for inc, msgchk, mh-chart now correctly added pop
1518           options if enabled.
1519
1520 Tue Dec 24 14:33:20 1996  Richard Coleman  <coleman@math.gatech.edu>
1521
1522         * Added configure test for bug in C libraries where linker
1523           can't find ruserpass, but can find _ruserpass.
1524
1525         * Fixed configure test so that termcap variable ospeed is
1526           correctly found.
1527
1528 Mon Dec 23 19:40:17 1996  Richard Coleman  <coleman@math.gatech.edu>
1529
1530         * Source files converted to ANSI C.
1531         
1532         * md5 now compiled separately rather than being included
1533           in mhn.c.  Changed md5 to use memset and memcpy.
1534
1535 Fri Dec 20 02:29:37 1996  Richard Coleman  <coleman@math.gatech.edu>
1536
1537         * Collected the error routines adios, advise, admonish, and advertise
1538           into one file (error.c), and did some rearranging of the code.
1539
1540 Thu Dec 19 19:05:29 1996  Richard Coleman  <coleman@math.gatech.edu>
1541
1542         * Added awk script sigmsg.awk (originally written by
1543           Geoff Wing <mason@werple.apana.org.au> for zsh) to
1544           automatically generate signal messages for pidstatus.c.
1545           Added files sbr/signals.c, h/signals.h.  Code now uses
1546           sigprocmask to block signals (if available).  Code now uses
1547           signal blocking on non-BSD machines.
1548
1549 Wed Dec 18 01:55:17 1996  Richard Coleman  <coleman@math.gatech.edu>
1550
1551         * Add configure check for ATTVIBUG.  From Soren's mh autoconf work.
1552
1553         * Released nmh-0.01.
1554
1555         * Added configure code to check for type of signals functions
1556           you have (POSIX or BSD style signals).  Added function
1557           SIGPROCMASK to simulate sigprocmask on machines that don't
1558           have POSIX signals.
1559
1560 Fri Dec 13 19:40:48 1996  Richard Coleman  <coleman@math.gatech.edu>
1561
1562         * Added -version switch to all commands.  Also added to
1563           their man pages.
1564
1565 Mon Dec  9 16:36:54 1996  Richard Coleman  <coleman@math.gatech.edu>
1566
1567         * Renamed uip/trmsbr.c to termsbr.c and changed it to use
1568           POSIX termios.h style functions if present.
1569
1570 Tue Dec  3 16:18:39 1996  Richard Coleman  <coleman@math.gatech.edu>
1571
1572         * Changed support/general/bootmhn.sh to output new mhn_defaults
1573           file to standard output by default (makes it easier for testing).
1574           Changed name of script to create_mhn_defaults.  Changed bootmhn.findit
1575           script to find_program.
1576
1577 Sun Dec  1 10:00:00 1996  Richard Coleman  <coleman@math.gatech.edu>
1578
1579         * Added patch to uip/folder.c from exmh distribution to
1580           speed up -recurse option.
1581
1582         * Added flist command from exmh distribution.  It doesn't work
1583           yet, but it compiles :-)
1584
1585         * Changed default location for install to /usr/local/nmh/{bin,etc,lib,man}.
1586           Split files so that format and configuration files go in nmh/etc, and
1587           support binaries go in nmh/lib.  Of course, all this can now be changed
1588           in the top level Makefile.
1589
1590         * Started with mh-6.8.3 as based and converted to autoconf.
1591           Rewrote all the Makefiles.  Currently only works with sendmail/smtp.
1592           Pop support and plenty of other things, are now broken.