fe3135244c63c8a337d7a7b6edcfb9160b4a74b4
[mmh] / docs / README.developers
1 #
2 # README.developers
3 #
4 # $Id$
5 #
6
7 This file is intended to provide a few tips for anyone doing development on nmh.
8 Developers who learn things "the hard way" about the nmh codebase (as opposed to
9 local info best encoded in a comment) are encouraged to share their wisdom here.
10
11 The topics are organized alphabetically.
12
13
14 --------------
15 autoconf files
16 --------------
17
18 If you wish to change the `configure' script or its related files, you'll need
19 to first install GNU m4, available from <ftp://ftp.gnu.org/pub/gnu/m4/> and then
20 GNU autoconf (<ftp://ftp.gnu.org/pub/gnu/autoconf/>).
21
22 Most of the configure-related files are automatically generated.  The only files
23 you should need to manually edit are acconfig.h and configure.in.  Don't, for
24 instance, edit config.h.in.  Though it is an input file from the point of view
25 of the users (and the configure script) it is an output file from the point of
26 view of the developers (and the autoconf script).
27
28 If you do change acconfig.h or configure.in and want to `cvs commit' them, be
29 sure to regenerate the output files and commit them as well.  The easiest way to
30 regenerate the files is to simply run `make' -- it'll do the necessary calls of
31 autoconf and autoheader and will do a `./config.status --recheck', which will
32 exercise your new configure script.
33
34 When you commit the configure-related files, it's very important to commit them
35 in the right order.  The timestamps on the files in the CVS archive are based on
36 the current time at the moment they were committed -- the timestamps from the
37 local files you commit are not copied over.  If you commit the files in the
38 wrong order, you'll cause unnecessary calls of `autoconf' to occur when people
39 try to `make' their copies of the latest CVS source.  These people may be
40 end-users who don't have any interest in changing the configure-related files
41 and don't have autoconf installed.  They'll be unable to make without playing
42 around with `touch'.
43
44 The correct procedure to commit the configure-related files is:
45
46     % cvs commit acconfig.h aclocal.m4 configure.in
47     % autoheader; autoconf; \date > stamp-h.in
48     % cvs commit config.h.in configure stamp-h.in
49
50 The reason for the three-step commit is that configure.in contains the RCS $Id
51 keyword, so when you commit it, a new version is written locally.  Therefore,
52 the autoconf regeneration should be held off until after the commit, or your
53 local stamp-h.in will become out-of-sync with the CVS version (granted, not that
54 big a deal).  For the second step, you're doing the same commands as a 
55 `make reset' would do, but using that command would require extra configure runs
56 to make Makefile be up-to-date.  The reason for the backslash on `date' is in
57 case you have `date' aliased in your shell to use a nonstandard format.
58
59 If you haven't changed all the files noted above, just commit the ones you have
60 changed, in the stated order (for instance, configure.in, then configure and
61 stamp-h.in).
62
63
64 -------------------
65 directory structure
66 -------------------
67
68 Following is a list of nmh's directories along with a brief description of the
69 purpose of each one.  Meanings are given for the abbreviations, but note that
70 these meanings are just informed guesses as to what the MH developers were
71 thinking. 
72
73 ./
74     The top-level directory.  Contains files like README and INSTALL.
75
76 config/
77     Contains utility files for the `configure' process.  Ordinarily nothing in
78     here needs to be messed with.
79
80 doc/
81     Contains more specialized documentation, such as this file and
82     the FAQ.
83
84 etc/
85     Contains files, file templates, and scripts to generate files that will be
86     installed in the ${prefix}/etc directory.  Stuff like replcomps.
87
88 h/
89     Most of nmh's header (.h) files are kept not in the individual source
90     directories, but in this central location.
91
92 man/
93     Contains all the input files that are processed to generate nmh's manual
94     pages.
95
96 mts/
97     "mts" stands for "Message Transfer Service".  Source files specific to the
98     different MTSs go in the subdirectories.
99
100 mts/mmdf/ (deprecated)
101     "mmdf" stands for "Multichannel Memorandum Distribution Facility".  It is an
102     alternative to sendmail used primarily on SCO UNIX.
103
104 mts/sendmail/ (deprecated: handled by mts.conf)
105     When nmh is configured --with-mts=sendmail, the files in this directory are
106     used. 
107
108 mts/smtp/
109     When nmh is configured to just talk to an SMTP server over TCP/IP, the
110     source in this directory is compiled.
111
112 sbr/
113     "sbr" stands for "subroutine(s)".  For the most part, each source file in
114     this directory contains a single function with the same name as the source
115     file.  These functions are of general use and are called from throughout
116     nmh.  
117
118 uip/
119     "uip" stands for "User Interface Programs".  Most nmh commands have a file
120     in this directory named <command>.c containing the code for that command
121     (e.g. repl.c).  In some cases there is also an auxiliary file called
122     <command>sbr.c which contains additional subroutines called from <command>.c
123     (which would contain not much else besides main()).
124
125 zotnet/ (deprecated)
126     Files in this hierarchy were either written by or moved here by UCI
127     (University of California, Irvine) after they took over MH from the Rand
128     Corporation.  "Zot!" is the sound effect made by the anteater in the "B.C."
129     comic strip when its tongue lashes out at ants.  The anteater is UCI's
130     official mascot.  Not sure whether UCInet was once called ZotNet...
131
132 zotnet/bboards/ (deprecated)
133     UCI added Bulletin Board functionality to MH with the `bbc' command.  This
134     functionality has been removed from nmh but apparently files in this
135     directory are still needed for other purposes.
136
137 zotnet/mf/ (deprecated, now in sbr/)
138     "mf" stands for "Mail Filter".  The filtering in this case apparently refers
139     to translation between different address and mailbox formats.
140
141 zotnet/mts/ (deprecated, now in sbr/)
142     MTS code not specific to any single MTS apparently goes here.
143
144 zotnet/tws/ (deprecated, now in sbr/)
145     "tws" apparently stands for "time with structure", a rather odd phrase.
146     This directory used to be the place for date and time manipulation code, but
147     currently nothing in here is compiled.  There are new, more portable
148     versions of the key files in h/ and sbr/, and this directory will soon go
149     away completely.
150
151
152 -------------------------------------------------------
153 nmh-local functions to use in preference to OS versions
154 -------------------------------------------------------
155
156 For some system functions whose availability or behavior varies from OS to OS,
157 nmh conditionally uses a local definition with the same name as the OS function
158 (e.g. snprintf()).  For other functions, developers need to avoid the OS
159 versions and always use the nmh-supplied function.  Here is a list of such
160 functions: 
161
162 OS function  nmh-local version to use instead
163 ===========  ================================
164 getpass()    nmh_getpass()
165
166
167 -------------
168 releasing nmh
169 -------------
170
171 To make a public release of nmh (we'll use version 1.0.4 and my mhost.com
172 account, danh, as examples here):
173
174  1. % echo 1.0.4 > VERSION
175     % date +"%e %B %Y" > DATE
176     (DATE should contain something like "30 December 2000")
177
178  2. Put a comment like "Released nmh-1.0.4." in the ChangeLog.
179
180  3. % cvs commit ChangeLog VERSION DATE
181
182  4. % cvs tag nmh-1_0_4
183     (cvs treats dots specially, so underscores are substituted here.)
184
185  5. % make nmhdist
186
187  6. Untar nmh-1.0.4.tar.gz and `diff -r' it vs. your CVS tree.  Make sure no
188     files got left out of the distribution that should be in it (due to someone
189     forgetting to update the DIST variables in the Makefiles).
190
191  7. If you have root access on your machine, it's good at this point to do:
192
193     % chown -R 0:0 nmh-1.0.4
194     % tar cvf nmh-1.0.4.tar nmh-1.0.4
195     % gzip nmh-1.0.4.tar
196
197     If you leave the files in the archive as being owned by yourself, your UID
198     may coincide with one of a user on a machine where nmh is being installed,
199     making it possible for that user to Trojan the nmh code before the system
200     administrator finishes installing it.
201
202  8. Make sure your new tarball uncompresses and untars with no problem.  Make
203     sure you can configure, make, and install nmh from it.
204
205  9. If all is well and your tarball is final, go back to your CVS tree and do:
206
207     % echo 1.0.4+dev > VERSION
208
209 10. Put a comment like "Upped the version number to 1.0.4+dev until the next nmh
210     release." in the ChangeLog.
211
212 11. % cvs commit ChangeLog VERSION
213
214 12. If possible, make an MD5 hash and/or a PGP signature of nmh-1.0.4.tar.gz.
215
216 13. % scp -p nmh-1.0.4.tar.gz* danh@mhost.com:/var/ftp/pub/nmh
217
218 14. Send an announcement to exmh-users@redhat.com, exmh-workers@redhat.com,
219     mh-users@ics.uci.edu, and nmh-announce@mhost.com.  If the release fixes
220     significant security holes, also send an announcement to
221     bugtraq@securityfocus.com.  The exmh lists require you to be subscribed in
222     order to post.  Note that you don't need to post separately to comp.mail.mh,
223     as the mh-users mailing list is apparently bidirectionally gatewayed to it.
224
225     Preferably, the announcement should contain the MD5 hash generated above,
226     and should be PGP-signed.  It should include the FTP URL for the tarball as
227     well as the URL of the website.  It should contain a brief summary of
228     visible changes, as well as the URL of the cvsweb diff page that would show
229     a detailed list of changes.  The changes between 1.0.3 and 1.0.4 would be
230     shown by:
231
232         http://www.mhost.com/cgi-bin/cvsweb/nmh/ChangeLog?r1=1.40&r2=1.71