autogen.sh (new file): add script for running the GNU autotools in the
[mmh] / INSTALL
1 #
2 # INSTALL -- installation instructions
3 #
4 # $Id$
5 #
6
7 --------------
8 Installing nmh
9 --------------
10 Please read all of the following instructions before you begin
11 building nmh.
12
13 You should check the MACHINES file to see if there are any specific
14 build instructions for your operating system.  To build nmh, you will
15 need an ANSI C compiler such as gcc.
16
17 0) If you have obtained nmh by checking it out of CVS, you will
18    need to run the GNU autotools to regenerate some files.
19    (If your directory already contains a file 'config.h.in'
20    then this has already been done and you do not need to do it.)
21    You can regenerate the files by running the command
22
23    ./autogen.sh
24
25 1) From the top-level source directory, run the command
26
27    ./configure [options]
28
29    This will check the configuration of your OS, and create the 
30    include file config.h, as well as the various Makefiles.
31
32    The configure script accepts various options.  The options of 
33    most interest are listed in a section below.  To see the list 
34    of all available options, you can run
35
36    ./configure --help
37
38 2) Look through the user configuration section at the beginning
39    of the generated include file `config.h'. You may
40    want to customize some #defines for your environment.
41
42 3) make
43
44 4) make install
45
46    Note that if you have [n]mh files in your install directories with
47    the same names as the files being installed, the old ones will get
48    overwritten without any warning.  The only directory that isn't
49    true for is the `etc' directory -- in that directory, the previous
50    copy of each <file> will be backed up as <file>.prev if it differs
51    from the newly-installed copy.  Watch for any diff output while
52    make is processing that directory to see if you need to merge
53    changes from *.prev files into the new versions.
54
55 5) Edit the file `mts.conf' (installed in the nmh `etc' directory)
56    and make any necessary changes for the mail transport interface
57    you are using.
58
59    The default `mts.conf' file assumes you retrieve new mail from
60    a local (or NFS mounted) maildrop, and send outgoing mail by
61    injecting the message to a mail transfer agent (such as sendmail)
62    on the local machine via SMTP.
63
64    If, instead, all your mail sending and receiving occurs on a 
65    remote POP/SMTP server, you will need to look at the values of the 
66    variables "localname", "pophost", and "servers":
67
68     a) "localname" defines the hostname that nmh considers local.
69        If not set, then nmh queries your OS for this value.  You will
70        want to change this if you wish your e-mail to appear as if it
71        originated on the POP server.
72
73     b) "pophost" defines the server that runs the POP daemon, and to
74        which `inc' and `msgchk' will always query for new mail.
75
76     c) "servers" defines the server to which you send outgoing SMTP
77        traffic.
78
79    If you compile with POP support, but don't want to use it exclusively,
80    you can use the `-host' and `-user' options to `inc' and `msgchk'
81    rather than hardcoding pophost in `mts.conf'.
82
83    Check the `mh-tailor' man page for a list of all the available options
84    for this file ("masquerade" may be of particular interest).
85
86 6) If you have enabled POP support, make sure that `pop3' (or more
87    precisely the value of the define POPSERVICE in config.h) is defined
88    in the /etc/services file (or its NIS/NIS+ equivalent) on the client
89    machine.  It should be something equivalent to "110/tcp".  This might
90    have already been done when the POP daemon was installed.
91
92 7) Edit the file `mhn.defaults' (installed in the nmh `etc' directory).
93    This file contains the default profile entries for the nmh command
94    `mhn' and is created by the script `mhn.defaults.sh'.  This script
95    will search a generic path (essentially your $PATH) for programs to
96    handle various content types (for example, xv to display images).
97    You can re-run this script and give it a more tailored path.  You may
98    want to re-run this script later if you install new programs to
99    display content.  An example of this is:
100
101     % cd support/general
102     % ./mhn.defaults.sh /usr/local/bin:/usr/X11/bin:/usr/ucb > mhn.defaults
103
104    and then move `mhn.defaults' into the nmh `etc' directory.
105
106    The `mhn.defaults.sh' script only searches for a simple set of programs.
107    If you have specialized programs to handle various types, you will need
108    to edit the `mhn.defaults' file manually.  The syntax of this file is
109    described in the man page for `mhn', and in section 9.4 of the book
110    "MH & xmh: Email for Users and Programmers", 3rd edition, by Jerry Peek,
111    on the Internet at <http://www.ics.uci.edu/~mh/book/mh/confmhn.htm>.
112
113 9) Add an optional global mh.profile, if desired.  This profile should be
114    placed in the nmh `etc' directory with the name `mh.profile'.  This
115    file will be used to construct the initial .mh_profile of a new nmh
116    user, but will not be consulted after that.
117
118 -----------------------------------------------
119 Compiler options, or using a different compiler
120 -----------------------------------------------
121 By default, configure will use the "gcc" compiler if found.  You can use a
122 different compiler, or add unusual options for compiling or linking that
123 the "configure" script does not know about, by either editing the user
124 configuration section of the top level Makefile (after running configure)
125 or giving "configure" initial values for these variables by setting them
126 in the environment.  Using a Bourne-compatible shell (such as sh,ksh,zsh),
127  
128 you can do that on the command line like this:
129     CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
130  
131 Or on systems that have the "env" program, you can do it like this:
132     env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
133
134 ----------------------------------------
135 Building nmh on additional architectures
136 ----------------------------------------
137 To build nmh on additional architectures, you can do a "make distclean".
138 This should restore the nmh source distribution back to its original
139 state.  You can then configure nmh as above on other architectures in
140 which you wish to build nmh.  Or alternatively, you can use a different
141 build directory for each architecture.
142  
143 ---------------------------------
144 Using a different build directory
145 ---------------------------------
146 You can compile the nmh in a different directory from the one containing
147 the source code.  Doing so allows you to compile it on more than one
148 architecture at the same time.  To do this, you must use a version of
149 "make" that supports the "VPATH" variable, such as GNU "make".  "cd" to
150 the directory where you want the object files and executables to go and
151 run the "configure" script.  "configure" automatically checks for the
152 source code in the directory that "configure" is in.  For example,
153  
154     cd /usr/local/solaris/nmh
155     /usr/local/src/nmh-1.0/configure
156     make
157
158 ---------------------
159 Options for configure
160 ---------------------
161 --prefix=DIR     (DEFAULT is /usr/local/nmh)
162      This will change the base prefix for the installation location
163      for the various parts of nmh.  Unless overridden, nmh is installed
164      in ${prefix}/bin, ${prefix}/etc, ${prefix}/lib, ${prefix}/man.
165
166 --bindir=DIR     (DEFAULT is ${prefix}/bin)
167      nmh's binaries (show, inc, comp, ...) are installed here.
168
169 --libdir=DIR     (DEFAULT is ${prefix}/lib)
170      nmh's support binaries (post, slocal, mhl, ...) are installed here.
171
172 --sysconfdir=DIR     (DEFAULT is ${prefix}/etc)
173      nmh's config files (mts.conf, mhn.defaults, ...) are installed here.
174
175 --mandir=DIR     (DEFAULT is ${prefix}/man)
176      nmh's man pages are installed here.
177
178 --enable-debug
179      Enable debugging support.
180
181 --enable-masquerade[='draft_from mmailid username_extension']    
182      If this option is disabled, the mts.conf file will contain the
183      line "masquerade: " (with no value), which may be manually edited
184      later.  You may find it convenient to specify a value at
185      configure-time, however, so that each time nmh is reinstalled,
186      the right value will be there.  By default, it is enabled.
187
188      The above usage shows the default, with all three masquerade
189      options being specified.  Any subset of the three may be
190      specified.
191
192      See the mh-tailor(5) man page for full documentation of "masquerade:".
193
194 --enable-mhe    (DEFAULT)
195      Add support for the Emacs front-end `mhe'.
196
197 --enable-pop
198      Enable client-side support for pop.
199
200 --enable-apop
201      Enable client-side support for apop (Authenticated POP).
202
203 --with-editor=EDITOR  (DEFAULT is vi)
204      specify the full path of the default editor to use.  If this
205      option is not given, then the configuration process will search
206      for the `vi' command and use it as the default.  If you wish to
207      specify an interface which is compatible with MH, then use the
208      nmh command `prompter'.  If you specify `prompter', then you don't
209      need to give the full pathname.
210
211 --with-hesiod=PREFIX
212      Specify the location of Hesiod.
213
214 --with-krb4=PREFIX
215      Specify the location of Kerberos V4 for KPOP support. After
216      running configure, you will need to change the POPSERVICE #define in
217      config.h if you want to use KPOP exclusively (rather than being able
218      to switch between KPOP and normal POP3).  See the comments inside
219      config.h for details.
220
221 --with-locking=LOCKTYPE    (DEFAULT is dot)
222      Specify the locking mechanism when attempting to "inc" or
223      "msgchk" a local mail spool. Valid options are "dot",
224      "fcntl", "flock", and "lockf". Of the four, dot-locking
225      requires no special kernel or filesystem support, and simply
226      creates a file called "FILE.lock" to indicate that "FILE" is
227      locked.
228
229      In order to be effective, you should contact the site
230      administrator to find out what locking mechanisms other
231      mail delivery and user programs respect. The most common
232      reason not to use dot-locking is if the mail spool directory
233      is not world- or user-writeable, and thus a lock file cannot
234      be created.
235
236 --with-mts=MTS   (DEFAULT is smtp)
237      Specify the default mail transport system you want to use.  The two
238      acceptable options are "smtp" (which is the default), and
239      "sendmail".  This value will be put into the mts.conf file.  You
240      may find it convenient to specify a value at configure-time,
241      however, so that each time nmh is reinstalled, the right value will
242      be there.
243
244      If you use "smtp", this will enable a direct SMTP (simple mail
245      transport protocol) interface in nmh.  When sending mail, instead
246      of passing the message to the mail transport agent, `post' will
247      open a socket connection to the mail port on the machine specified
248      in the `mts.conf' file (default is localhost), and speak SMTP
249      directly.
250
251      If you use "sendmail", then `post' will send messages by forking a
252      local copy of sendmail.  Currently it will still speak SMTP with
253      this local copy of sendmail.
254
255      If you wish to use a transport agent other than sendmail, you will
256      need to use a `sendmail wrapper'.
257
258 --with-ndbm=LIB    (DEFAULT is to autodetect)
259 --with-ndbmheader=HEADER     (DEFAULT is to autodetect)
260      Specify the header file (eg ndbm.h) and library (eg ndbm) to use
261      to compile against the ndbm database library. By default, configure
262      will try various possibilities until it finds one that works; this
263      option only needs to be specified if the autodetection fails or
264      makes the wrong choice.
265
266      If either of these options is given then the other must also be
267      specified.
268
269 --with-pager=PAGER    (DEFAULT is more)
270      Specify the default pager (file lister) to use.  If this option
271      is not given, then the configuration process will search for the
272      command `more' and use it as the default.
273
274 --with-smtpservers='SMTPSERVER1[ SMTPSERVER2...]'    (DEFAULT is localhost)
275      If this option is not specified, the mts.conf file will contain
276      the line "servers: localhost", which may be manually edited later.
277      You may find it convenient to specify a value at configure-time,
278      however, so that each time nmh is reinstalled, the right value will be
279      there.
280
281      See the mh-tailor(5) man page for full documentation of "servers:".
282
283 --
284 The nmh team
285 nmh-workers@nongnu.org