2 # FAQ -- frequently asked questions
9 nmh (new MH) is an electronic mail handling system. It is based on
10 version 6.8.3 of the MH message system originally developed by the
11 RAND Corporation and the University of California.
13 2) Is it nmh, Nmh, nMH, NMH?
15 It's nmh. Richard Coleman hates capital letters.
17 3) Who is developing nmh?
19 Richard Coleman (coleman@math.gatech.edu) started the nmh project.
20 After he grew too busy to continue maintaining it, it was handed off
21 to the net at large. Doug Morris (doug@mhost.com) is hosting the
22 mailing lists, web pages, and CVS repository for nmh now.
24 4) Why did Richard start the nmh project?
29 a) It's an interesting project.
30 b) I like using MH/nmh.
31 c) I wanted to increase the portability of MH.
32 d) I wanted to make MH easier to install (convert to autoconf).
33 e) I wanted to remove all the unnecessary junk from the
34 MH distribution (pop daemon, bulletin board support, etc...).
35 f) UCI seems to have abandoned MH, so someone needed to pick up
38 5) What is the copyright status of nmh?
40 nmh is distributed under a variant of the classical BSD copyright.
41 Check the COPYRIGHT file in the nmh distribution for the details.
42 There are some specific files which were contributed to the original
43 MH package that are copyrighted by their original author. We have
44 retained the copyright notices of these authors in these files.
46 Essentially, you can do anything you want with the nmh package as long
47 as you don't blame us if it trashes all your mail.
49 6) What is the difference between nmh and MH?
51 Check the file DIFFERENCES in the nmh distribution for the
52 (ever growing) list of differences between nmh and MH.
54 7) Where do I get nmh?
56 The latest version of nmh is available at
57 ftp://ftp.mhost.com/pub/nmh/nmh.tar.gz
59 8) Where is the nmh web page?
61 The nmh home page is located at
62 http://www.mhost.com/nmh/
64 9) Where is the nmh mailing list?
66 There is a mailing list for nmh development at:
69 To subscribe, send e-mail to the administrative address:
70 nmh-workers-request@mhost.com
72 with the subject "subscribe" (without the quotes).
74 10) Is there an archive of the nmh-workers mailing list?
76 There are, but they are only available if you are subscribed to
77 the mailing list as well. This is done to try to prevent
78 harvesting of email addresses for spam lists. For information on
79 how to use the archive, see the MAILING-LISTS file in the docs
80 subdirectory of the distribution.
82 11) Where do I report bugs in nmh?
84 Send bug reports and suggestions to
87 12) Which mail transfer agents (MTA's) are supported?
89 The default setup for nmh is to use SMTP, so nmh should work with
90 most MTA's that provide a standard SMTP connection on port 25.
91 Also you may configure nmh to use a sendmail interface (still
92 uses SMTP) by using the configure option --with-mts=sendmail.
93 There is also an option (--enable-pop) to include client-side
96 13) Why does `folder' and `flist' overlook some of my subfolders?
98 There was a bug in these commands which caused them to quit
99 searching a folder for subfolders too early, if the folder contained
100 subfolders which were symbolic links. This has been improved in
101 nmh-0.25, but `folder' and `flist' will still not recurse into
102 folders that contain only symbolic links.
104 14) Why doesn't the (X)Emacs package `mh-e' work with
107 In nmh, the default location of things have changed. Also the MH
108 lib directory has been split into a `etc' directory (containing
109 configuration files and components), and a `lib' directory
110 (containing support binaries). So sometimes mh-e has trouble
111 finding the components skeleton for composing new mail or replies.
112 Depending on the install location of nmh at your site, you will
113 need to add something similar to the following to your .emacs file.
114 The lines for `mh-comp-formfile' and `mh-repl-formfile' should point
115 to your personal copies of these files (if you have them) or else
116 point to the default nmh versions.
118 ;; set a few mh-e variables for nmh
119 (setq mh-progs "/usr/local/nmh/bin/")
120 (setq mh-lib "/usr/local/nmh/lib/")
121 (setq mh-comp-formfile "/usr/local/nmh/etc/components")
122 (setq mh-repl-formfile "/usr/local/nmh/etc/replcomps")