updated INSTALL directions
[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 1) Run the command
18
19    sh configure [options]
20
21    This will check the configuration of your OS, and create
22    the include file config.h, as well as the various Makefiles.
23
24    The configure script accepts various options.  The options of
25    most interest are listed below.  To see the list of all available
26    options, you can run
27
28    sh configure --help
29
30 2) Look through the user configuration section at the beginning
31    of the generated include file `config.h'.  All system-specific
32    definitions should be sensed automatically now, but you may
33    want to customize some #defines for your environment.
34
35 3) make
36
37 4) make install
38
39 5) Edit the file `mts.conf' (installed in the nmh `etc' directory)
40    and make any necessary changes for the mail transport interface
41    you are using.
42
43    The default `mts.conf' file assumes you retrieve new mail from
44    a local (or NFS mounted) maildrop, and send outgoing mail by
45    injecting the message to a mail transfer agent (such as sendmail)
46    on the local machine via SMTP.
47
48    If you have enabled POP support and you want this to be the
49    default method of accessing new mail, you will need to change
50    the values of the variables "servers", "pophost", "localname",
51    and possibly "mmailid".
52
53    a) "servers" defines the server to which you send outgoing SMTP
54       traffic.
55
56    b) "pophost" defines the server that runs the POP daemon, and to
57       which `inc' and `msgchk' will query for new mail.
58
59    c) "localname" defines the hostname that nmh considers local.
60       If not set, then nmh queries your OS for this value.  You may
61       want to change this if you wish your e-mail to appear as if it
62       originated on the POP server.
63
64    d) "mmailid" is checked to see if nmh should do username
65       masquerading.  If the value of this field is non-zero, then
66       nmh will check if the pw_gecos field in the password file
67       has the form
68
69           Full Name <fakeusername>
70
71       If the pw_gecos field has this form, then the internal nmh
72       routines that find the username and full name of a user will
73       return "fakeusername" and "Full Name" respectively.  This is
74       useful if you wish messages that you send to appear to come
75       from the username of your POP account, rather than your username
76       on the local machine.
77
78    If you compile with POP support, but only want to use it occasionally,
79    then you can always use the `-host' and `-user' options to `inc'
80    and `msgchk' instead of changing `mts.conf'.
81
82    Check the `mh-tailor' man page for a list of all the available
83    options for this file.
84
85 6) If you have enabled POP support, make sure that `pop3' (or more
86    precisely the value of the define POPSERVICE in config.h) is defined
87    in the /etc/services file (or its NIS/NIS+ equivalent) on the client
88    machine.  It should be something equivalent to "110/tcp".  This might
89    have already been done when the pop daemon was installed.
90
91 7) Edit the file `mhn.defaults' (installed in the nmh `etc' directory).
92    This file contains the default profile entries for the nmh command
93    `mhn' and is created by the script `mhn.defaults.sh'.  This script
94    will search a generic path (essentially your $PATH) for programs to
95    handle various content types (for example, xv to display images).
96    You can re-run this script and give it a more tailored path.  You may
97    want to re-run this script later if you install new programs to
98    display content.  An example of this is:
99
100    cd support/general
101    ./mhn.defaults.sh /usr/local/bin:/usr/X11/bin:/usr/ucb > mhn.defaults
102
103    and then move `mhn.defaults' into the nmh `etc' directory.
104
105    The `mhn.defaults.sh' script only searches for a simple set of programs.
106    If you have specialized programs to handle various types, you will need
107    to edit the `mhn.defaults' file manually.  The syntax of this file is
108    described in the man page for `mhn', and in section 9.4 of the book
109    "MH & xmh: Email for Users and Programmers", 3rd edition, by Jerry Peek,
110    on the Internet at <http://www.ics.uci.edu/~mh/book/mh/confmhn.htm>.
111
112 9) Add an optional global mh.profile, if desired.  This profile should be
113    placed in the nmh `etc' directory with the name `mh.profile'.  This
114    file will be used to construct the initial .mh_profile of a new nmh
115    user, but will not be consulted after that.
116
117 -----------------------------------------------
118 Compiler options, or using a different compiler
119 -----------------------------------------------
120 By default, configure will use the "gcc" compiler if found.  You can use a
121 different compiler, or add unusual options for compiling or linking that
122 the "configure" script does not know about, by either editing the user
123 configuration section of the top level Makefile (after running configure)
124 or giving "configure" initial values for these variables by setting them
125 in the environment.  Using a Bourne-compatible shell (such as sh,ksh,zsh),
126  
127 you can do that on the command line like this:
128     CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
129  
130 Or on systems that have the "env" program, you can do it like this:
131     env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
132
133 ----------------------------------------
134 Building nmh on additional architectures
135 ----------------------------------------
136 To build nmh on additional architectures, you can do a "make distclean".
137 This should restore the nmh source distribution back to its original
138 state.  You can then configure nmh as above on other architectures in
139 which you wish to build nmh.  Or alternatively, you can use a different
140 build directory for each architecture.
141  
142 ---------------------------------
143 Using a different build directory
144 ---------------------------------
145 You can compile the nmh in a different directory from the one containing
146 the source code.  Doing so allows you to compile it on more than one
147 architecture at the same time.  To do this, you must use a version of
148 "make" that supports the "VPATH" variable, such as GNU "make".  "cd" to
149 the directory where you want the object files and executables to go and
150 run the "configure" script.  "configure" automatically checks for the
151 source code in the directory that "configure" is in.  For example,
152  
153     cd /usr/local/solaris/nmh
154     /usr/local/src/nmh-1.0/configure
155     make
156
157 ---------------------
158 Options for configure
159 ---------------------
160 --prefix=DIR     (DEFAULT is /usr/local/nmh)
161      This will change the base prefix for the installation location
162      for the various parts of nmh.  Unless overridden, nmh is installed
163      in ${prefix}/bin, ${prefix}/etc, ${prefix}/lib, ${prefix}/man.
164
165 --bindir=DIR     (DEFAULT is ${prefix}/bin)
166      nmh's binaries (show, inc, comp, ...) are installed here.
167
168 --libdir=DIR     (DEFAULT is ${prefix}/lib)
169      nmh's support binaries (post, slocal, mhl, ...) are installed here.
170
171 --sysconfdir=DIR     (DEFAULT is ${prefix}/etc)
172      nmh's config files (mts.conf, mhn.defaults, ...) are installed here.
173
174 --mandir=DIR     (DEFAULT is ${prefix}/man)
175      nmh's man pages are installed here.
176
177 --with-mts=MTS   (DEFAULT is smtp)
178      specify the mail transport system you want to use.  The two
179      acceptable options are "smtp" (which is the default), and
180      "sendmail".
181
182      If you use "smtp", this will enable a direct SMTP (simple
183      mail transport protocol) interface in nmh.  When sending
184      mail, instead of passing the message to the mail transport
185      agent, `post' will open a socket connection to the mail
186      port on the machine specified in the `mts.conf' file
187      (default is localhost), and speak SMTP directly.
188
189      If you use "sendmail", then `post' will send messages by
190      passing forking a local copy of sendmail.  Currently it
191      will still speak SMTP with this local copy of sendmail.
192
193      If you wish to use a transport agent other than sendmail, you will
194      need to use a `sendmail wrapper'.
195
196 --with-editor=EDITOR  (DEFAULT is vi)
197      specify the full path of the default editor to use.  If this
198      option is not given, then the configuration process will search
199      for the `vi' command and use it as the default.  If you wish to
200      specify an interface which is compatible with MH, then use the
201      nmh command `prompter'.  If you specify `prompter', then you don't
202      need to give the full pathname.
203
204 --with-pager=PAGER    (DEFAULT is more)
205      specify the default pager (file lister) to use.  If this option
206      is not given, then the configuration process will search for the
207      command `more' and use it as the default.
208
209 --enable-nmh-mhe    (DEFAULT)
210      Add support for the Emacs front-end `mhe'.
211
212 --enable-nmh-pop
213     Enable client-side support for pop.
214
215 --with-krb4=PREFIX
216     Specify the location of Kerberos V4 for KPOP support.  You will
217     also need to specify the option `--enable-nmh-pop'.  After running
218     configure, you will probably need to change the POPSERVICE define
219     in config.h.  See the comments inside config.h for details.
220
221 --with-hesiod=PREFIX
222     Specify the location of Hesiod.
223
224 --enable-nmh-debug
225     Enable debugging support.
226
227 --
228 The nmh team
229 nmh-workers@mhost.com