README
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:67k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. # Copyright (c) 1998, 1999 Sendmail, Inc. and its suppliers.
  2. # All rights reserved.
  3. # Copyright (c) 1983, 1995-1997 Eric P. Allman.  All rights reserved.
  4. # Copyright (c) 1988
  5. # The Regents of the University of California.  All rights reserved.
  6. #
  7. # By using this file, you agree to the terms and conditions set
  8. # forth in the LICENSE file which can be found at the top level of
  9. # the sendmail distribution.
  10. #
  11. #
  12. # $Id: README,v 8.248 1999/12/02 23:05:54 ca Exp $
  13. #
  14. This directory contains the source files for sendmail(TM).
  15. *********************
  16. !! DO NOT USE MAKE !!  in this directory to compile sendmail --
  17. *********************  instead, use the "Build" script located in
  18. the sendmail directory.  It will build an appropriate Makefile, and
  19. create an appropriate obj.* subdirectory so that multiplatform
  20. support works easily.
  21. **********************************************************
  22. **  Read below for more details on building sendmail. **
  23. **********************************************************
  24. **************************************************************************
  25. **  IMPORTANT:  Read the appropriate paragraphs in the section on **
  26. **  ``Operating System and Compile Quirks''. **
  27. **************************************************************************
  28. For detailed instructions, please read the document ../doc/op/op.me:
  29. eqn ../doc/op/op.me | pic | ditroff -me
  30. Sendmail is a trademark of Sendmail, Inc.
  31. +-------------------+
  32. | BUILDING SENDMAIL |
  33. +-------------------+
  34. By far, the easiest way to compile sendmail is to use the "Build"
  35. script:
  36. sh Build
  37. This uses the "uname" command to figure out what architecture you are
  38. on and creates a proper Makefile accordingly.  It also creates a
  39. subdirectory per object format, so that multiarchitecture support is
  40. easy.  In general this should be all you need.  IRIX 6.x users should
  41. read the note below in the OPERATING SYSTEM AND COMPILE QUIRKS section.
  42. If you need to look at other include or library directories, use the
  43. -I or -L flags on the command line, e.g.,
  44. sh Build -I/usr/sww/include -L/usr/sww/lib
  45. It's also possible to create local site configuration in the file
  46. site.config.m4 (or another file settable with the -f flag).  This
  47. file contains M4 definitions for various compilation values; the
  48. most useful are:
  49. confMAPDEF -D flags to specify database types to be included
  50. (see below)
  51. confENVDEF -D flags to specify other environment information
  52. confINCDIRS -I flags for finding include files during compilation
  53. confLIBDIRS -L flags for finding libraries during linking
  54. confLIBS -l flags for selecting libraries during linking
  55. confLDOPTS other ld(1) linker options
  56. Others can be found by examining Makefile.m4.  Please read
  57. ../devtools/README for more information about the site.config.m4
  58. file.
  59. You can recompile from scratch using the -c flag with the Build
  60. command.  This removes the existing compilation directory for the
  61. current platform and builds a new one.
  62. Porting to a new Unix-based system should be a matter of creating
  63. an appropriate configuration file in the devtools/OS/ directory.
  64. +----------------------+
  65. | DATABASE DEFINITIONS |
  66. +----------------------+
  67. There are several database formats that can be used for the alias files
  68. and for general maps.  When used for alias files they interact in an
  69. attempt to be backward compatible.
  70. The options are:
  71. NEWDB The new Berkeley DB package.  Some systems (e.g., BSD/OS and
  72. Digital UNIX 4.0) have some version of this package
  73. pre-installed.  If your system does not have Berkeley DB
  74. pre-installed, or the version installed is not version 2.0
  75. or greater (e.g., is Berkeley DB 1.85 or 1.86), get the
  76. current version from http://www.sleepycat.com/.  DO NOT
  77. use a version from any of the University of California,
  78. Berkeley "Net" or other distributions.  If you are still
  79. running BSD/386 1.x, you will need to upgrade the included
  80. Berkeley DB library to a current version.  NEWDB is included
  81. automatically if the Build script can find a library named
  82. libdb.a or libdb.so.
  83. NDBM The older NDBM implementation -- the very old V7 DBM
  84. implementation is no longer supported.
  85. NIS Network Information Services.  To use this you must have
  86. NIS support on your system.
  87. NISPLUS NIS+ (the revised NIS released with Solaris 2).  You must
  88. have NIS+ support on your system to use this flag.
  89. HESIOD Support for Hesiod (from the DEC/Athena distribution).  You
  90. must already have Hesiod support on your system for this to
  91. work.  You may be able to get this to work with the MIT/Athena
  92. version of Hesiod, but that's likely to be a lot of work.
  93. LDAPMAP Lightweight Directory Lookup Protocol support.  You will
  94. have to install the UMich or OpenLDAP ldap and lber
  95. libraries to use this flag.
  96. MAP_REGEX Regular Expression support.  You will need to use an
  97. operating system which comes with the POSIX regex()
  98. routines or install a regexp library such as libregex from
  99. the Free Software Foundation.
  100. PH_MAP PH map support.  You will need the qi PH package.
  101. MAP_NSD nsd map support (IRIX 6.5 and later).
  102. >>>  NOTE WELL for NEWDB support: If you want to get ndbm support, for
  103. >>>  Berkeley DB versions under 2.0, it is CRITICAL that you remove
  104. >>>  ndbm.o from libdb.a before you install it and DO NOT install ndbm.h;
  105. >>>  for Berkeley DB versions 2.0 through 2.3.14, remove dbm.o from libdb.a
  106. >>>  before you install it.  If you don't delete these, there is absolutely
  107. >>>  no point to including -DNDBM, since it will just get you another
  108. >>>  (inferior) API to the same format database.  These files OVERRIDE
  109. >>>  calls to ndbm routines -- in particular, if you leave ndbm.h in,
  110. >>>  you can find yourself using the new db package even if you don't
  111. >>>  define NEWDB.  Berkeley DB versions later than 2.3.14 do not need
  112. >>>  to be modified.  Please also consult the README in the top level
  113. >>>  directory of the sendmail distribution for other important information.
  114. >>>
  115. >>>  Further note: DO NOT remove your existing /usr/include/ndbm.h --
  116. >>>  you need that one.  But do not install an updated ndbm.h in
  117. >>>  /usr/include, /usr/local/include, or anywhere else.
  118. If NEWDB and NDBM are defined (but not NIS), then sendmail will read
  119. NDBM format alias files, but the next time a newaliases is run the
  120. format will be converted to NEWDB; that format will be used forever
  121. more.  This is intended as a transition feature.
  122. If NEWDB, NDBM, and NIS are all defined and the name of the file includes
  123. the string "/yp/", sendmail will rebuild BOTH the NEWDB and NDBM format
  124. alias files.  However, it will only read the NEWDB file; the NDBM format
  125. file is used only by the NIS subsystem.  This is needed because the NIS
  126. maps on an NIS server are built directly from the NDBM files.
  127. If NDBM and NIS are defined (regardless of the definition of NEWDB),
  128. and the filename includes the string "/yp/", sendmail adds the special
  129. tokens "YP_LAST_MODIFIED" and "YP_MASTER_NAME", both of which are
  130. required if the NDBM file is to be used as an NIS map.
  131. All of these flags are normally defined in the DBMDEF line in the
  132. Makefile.
  133. If you define NEWDB or HESIOD you get the User Database (USERDB)
  134. automatically.  Generally you do want to have NEWDB for it to do
  135. anything interesting.  See above for getting the Berkeley DB
  136. package (i.e., NEWDB).  There is no separate "user database"
  137. package -- don't bother searching for it on the net.
  138. Hesiod and LDAP require libraries that may not be installed with your
  139. system.  These are outside of my ability to provide support.  See the
  140. "Quirks" section for more information.
  141. The regex map can be used to see if an address matches a certain regular
  142. expression.  For example, all-numerics local parts are common spam
  143. addresses, so "^[0-9]+$" would match this.  By using such a map in a
  144. check_* rule-set, you can block a certain range of addresses that would
  145. otherwise be considered valid.
  146. +---------------+
  147. | COMPILE FLAGS |
  148. +---------------+
  149. Wherever possible, I try to make sendmail pull in the correct
  150. compilation options needed to compile on various environments based on
  151. automatically defined symbols.  Some machines don't seem to have useful
  152. symbols available, requiring that a compilation flag be defined in
  153. the Makefile; see the devtools/OS subdirectory for the supported
  154. architectures.
  155. If you are a system to which sendmail has already been ported you
  156. should not have to touch the following symbols.  But if you are porting,
  157. you may have to tweak the following compilation flags in conf.h in order
  158. to get it to compile and link properly:
  159. SYSTEM5 Adjust for System V (not necessarily Release 4).
  160. SYS5SIGNALS Use System V signal semantics -- the signal handler
  161. is automatically dropped when the signal is caught.
  162. If this is not set, use POSIX/BSD semantics, where the
  163. signal handler stays in force until an exec or an
  164. explicit delete.  Implied by SYSTEM5.
  165. SYS5SETPGRP Use System V setpgrp() semantics.  Implied by SYSTEM5.
  166. HASFCHMOD Define this to one if you have the fchmod(2) system call.
  167. This improves security.
  168. HASFCHOWN Define this to one if you have the fchown(2) system call.
  169. This is required for the TrustedUser option.
  170. HASFLOCK Set this if you prefer to use the flock(2) system call
  171. rather than using fcntl-based locking.  Fcntl locking
  172. has some semantic gotchas, but many vendor systems
  173. also interface it to lockd(8) to do NFS-style locking.
  174. Unfortunately, may vendors implementations of fcntl locking
  175. is just plain broken (e.g., locks are never released,
  176. causing your sendmail to deadlock; when the kernel runs
  177. out of locks your system crashes).  For this reason, I
  178. recommend always defining this unless you are absolutely
  179. certain that your fcntl locking implementation really works.
  180. HASUNAME Set if you have the "uname" system call.  Implied by
  181. SYSTEM5.
  182. HASUNSETENV Define this if your system library has the "unsetenv"
  183. subroutine.
  184. HASSETSID Define this if you have the setsid(2) system call.  This
  185. is implied if your system appears to be POSIX compliant.
  186. HASINITGROUPS Define this if you have the initgroups(3) routine.
  187. HASSETVBUF Define this if you have the setvbuf(3) library call.
  188. If you don't, setlinebuf will be used instead.  This
  189. defaults on if your compiler defines __STDC__.
  190. HASSETREUID Define this if you have setreuid(2) ***AND*** root can
  191. use setreuid to change to an arbitrary user.  This second
  192. condition is not satisfied on AIX 3.x.  You may find that
  193. your system has setresuid(2), (for example, on HP-UX) in
  194. which case you will also have to #define setreuid(r, e)
  195. to be the appropriate call.  Some systems (such as Solaris)
  196. have a compatibility routine that doesn't work properly,
  197. but may have "saved user ids" properly implemented so you
  198. can ``#define setreuid(r, e) seteuid(e)'' and have it work.
  199. The important thing is that you have a call that will set
  200. the effective uid independently of the real or saved uid
  201. and be able to set the effective uid back again when done.
  202. There's a test program in ../test/t_setreuid.c that will
  203. try things on your system.  Setting this improves the
  204. security, since sendmail doesn't have to read .forward
  205. and :include: files as root.  There are certain attacks
  206. that may be unpreventable without this call.
  207. USESETEUID Define this to 1 if you have a seteuid(2) system call that
  208. will allow root to set only the effective user id to an
  209. arbitrary value ***AND*** you have saved user ids.  This is
  210. preferable to HASSETREUID if these conditions are fulfilled.
  211. These are the semantics of the to-be-released revision of
  212. Posix.1.  The test program ../test/t_seteuid.c will try
  213. this out on your system.  If you define both HASSETREUID
  214. and USESETEUID, the former is ignored.
  215. HASLSTAT Define this if you have symbolic links (and thus the
  216. lstat(2) system call).  This improves security.  Unlike
  217. most other options, this one is on by default, so you
  218. need to #undef it in conf.h if you don't have symbolic
  219. links (these days everyone does).
  220. HASSETRLIMIT Define this to 1 if you have the setrlimit(2) syscall.
  221. You can define it to 0 to force it off.  It is assumed
  222. if you are running a BSD-like system.
  223. HASULIMIT Define this if you have the ulimit(2) syscall (System V
  224. style systems).  HASSETRLIMIT overrides, as it is more
  225. general.
  226. HASWAITPID Define this if you have the waitpid(2) syscall.
  227. HASGETDTABLESIZE
  228. Define this if you have the getdtablesize(2) syscall.
  229. HAS_ST_GEN Define this to 1 if your system has the st_gen field in
  230. the stat structure (see stat(2)).
  231. HASSRANDOMDEV Define this if your system has the srandomdev(3) function
  232. call.
  233. HASSTRERROR Define this if you have the libc strerror(3) function (which
  234. should be declared in <errno.h>), and it should be used
  235. instead of sys_errlist.
  236. NEEDGETOPT Define this if you need a reimplementation of getopt(3).
  237. On some systems, getopt does very odd things if called
  238. to scan the arguments twice.  This flag will ask sendmail
  239. to compile in a local version of getopt that works
  240. properly.
  241. NEEDSTRTOL Define this if your standard C library does not define
  242. strtol(3).  This will compile in a local version.
  243. NEEDVPRINTF Define this if your standard C library does not define
  244. vprintf(3).  Note that the resulting fake implementation
  245. is not very elegant and may not even work on some
  246. architectures.
  247. NEEDFSYNC Define this if your standard C library does not define
  248. fsync(2).  This will try to simulate the operation using
  249. fcntl(2); if that is not available it does nothing, which
  250. isn't great, but at least it compiles and runs.
  251. HASGETUSERSHELL Define this to 1 if you have getusershell(3) in your
  252. standard C library.  If this is not defined, or is defined
  253. to be 0, sendmail will scan the /etc/shells file (no
  254. NIS-style support, defaults to /bin/sh and /bin/csh if
  255. that file does not exist) to get a list of unrestricted
  256. user shells.  This is used to determine whether users
  257. are allowed to forward their mail to a program or a file.
  258. NEEDPUTENV Define this if your system needs am emulation of the
  259. putenv(3) call.  Define to 1 to implement it in terms
  260. of setenv(3) or to 2 to do it in terms of primitives.
  261. NOFTRUNCATE Define this if you don't have the ftruncate(2) syscall.
  262. If you don't have this system call, there is an unavoidable
  263. race condition that occurs when creating alias databases.
  264. GIDSET_T The type of entries in a gidset passed as the second
  265. argument to getgroups(2).  Historically this has been an
  266. int, so this is the default, but some systems (such as
  267. IRIX) pass it as a gid_t, which is an unsigned short.
  268. This will make a difference, so it is important to get
  269. this right!  However, it is only an issue if you have
  270. group sets.
  271. SLEEP_T The type returned by the system sleep() function.
  272. Defaults to "unsigned int".  Don't worry about this
  273. if you don't have compilation problems.
  274. ARBPTR_T The type of an arbitrary pointer -- defaults to "void *".
  275. If you are an very old compiler you may need to define
  276. this to be "char *".
  277. SOCKADDR_LEN_T The type used for the third parameter to accept(2),
  278. getsockname(2), and getpeername(2), representing the
  279. length of a struct sockaddr.  Defaults to int.
  280. SOCKOPT_LEN_T The type used for the fifth parameter to getsockopt(2)
  281. and setsockopt(2), representing the length of the option
  282. buffer.  Defaults to int.
  283. LA_TYPE The type of load average your kernel supports.  These
  284. can be one of:
  285.  LA_ZERO (1) -- it always returns the load average as
  286. "zero" (and does so on all architectures).
  287.  LA_INT (2) to read /dev/kmem for the symbol avenrun and
  288. interpret as a long integer.
  289.  LA_FLOAT (3) same, but interpret the result as a floating
  290. point number.
  291.  LA_SHORT (6) to interpret as a short integer.
  292.  LA_SUBR (4) if you have the getloadavg(3) routine in your
  293. system library.
  294.  LA_MACH (5) to use MACH-style load averages (calls
  295. processor_set_info()),
  296.  LA_PROCSTR (7) to read /proc/loadavg and interpret it
  297. as a string representing a floating-point
  298. number (Linux-style).
  299.  LA_READKSYM (8) is an implementation suitable for some
  300. versions of SVr4 that uses the MIOC_READKSYM ioctl
  301. call to read /dev/kmem.
  302.  LA_DGUX (9) is a special implementation for DG/UX that uses
  303. the dg_sys_info system call.
  304.  LA_HPUX (10) is an HP-UX specific version that uses the
  305. pstat_getdynamic system call.
  306.  LA_IRIX6 (11) is an IRIX 6.x specific version that adapts
  307. to 32 or 64 bit kernels; it is otherwise very similar
  308. to LA_INT.
  309.  LA_KSTAT (12) uses the (Solaris-specific) kstat(3k)
  310. implementation.
  311.  LA_DEVSHORT (13) reads a short from a system file (default:
  312. /dev/table/avenrun) and scales it in the same manner
  313. as LA_SHORT.
  314. LA_INT, LA_SHORT, LA_FLOAT, and LA_READKSYM have several
  315. other parameters that they try to divine: the name of your
  316. kernel, the name of the variable in the kernel to examine,
  317. the number of bits of precision in a fixed point load average,
  318. and so forth.  LA_DEVSHORT uses _PATH_AVENRUN to find the
  319. device to be read to find the load average.
  320. In desperation, use LA_ZERO.  The actual code is in
  321. conf.c -- it can be tweaked if you are brave.
  322. FSHIFT For LA_INT, LA_SHORT, and LA_READKSYM, this is the number
  323. of bits of load average after the binary point -- i.e.,
  324. the number of bits to shift right in order to scale the
  325. integer to get the true integer load average.  Defaults to 8.
  326. _PATH_UNIX The path to your kernel.  Needed only for LA_INT, LA_SHORT,
  327. and LA_FLOAT.  Defaults to "/unix" on System V, "/vmunix"
  328. everywhere else.
  329. LA_AVENRUN For LA_INT, LA_SHORT, and LA_FLOAT, the name of the kernel
  330. variable that holds the load average.  Defaults to "avenrun"
  331. on System V, "_avenrun" everywhere else.
  332. SFS_TYPE Encodes how your kernel can locate the amount of free
  333. space on a disk partition.  This can be set to SFS_NONE
  334. (0) if you have no way of getting this information,
  335. SFS_USTAT (1) if you have the ustat(2) system call,
  336. SFS_4ARGS (2) if you have a four-argument statfs(2)
  337. system call (and the include file is <sys/statfs.h>),
  338. SFS_VFS (3), SFS_MOUNT (4), SFS_STATFS (5) if you have
  339. the two-argument statfs(2) system call with includes in
  340. <sys/vfs.h>, <sys/mount.h>, or <sys/statfs.h> respectively,
  341. or SFS_STATVFS (6) if you have the two-argument statvfs(2)
  342. call.  The default if nothing is defined is SFS_NONE.
  343. SFS_BAVAIL with SFS_4ARGS you can also set SFS_BAVAIL to the field name
  344. in the statfs structure that holds the useful information;
  345. this defaults to f_bavail.
  346. SPT_TYPE Encodes how your system can display what a process is doing
  347. on a ps(1) command (SPT stands for Set Process Title).  Can
  348. be set to:
  349. SPT_NONE (0) -- Don't try to set the process title at all.
  350. SPT_REUSEARGV (1) -- Pad out your argv with the information;
  351. this is the default if none specified.
  352. SPT_BUILTIN (2) -- The system library has setproctitle.
  353. SPT_PSTAT (3) -- Use the PSTAT_SETCMD option to pstat(2)
  354. to set the process title; this is used by HP-UX.
  355. SPT_PSSTRINGS (4) -- Use the magic PS_STRINGS pointer (4.4BSD).
  356. SPT_SYSMIPS (5) -- Use sysmips() supported by NEWS-OS 6.
  357. SPT_SCO (6) -- Write kernel u. area.
  358. SPT_CHANGEARGV (7) -- Write pointers to our own strings into
  359. the existing argv vector.
  360. SPT_PADCHAR Character used to pad the process title; if undefined,
  361. the space character (0x20) is used.  This is ignored if
  362. SPT_TYPE != SPT_REUSEARGV
  363. ERRLIST_PREDEFINED
  364. If set, assumes that some header file defines sys_errlist.
  365. This may be needed if you get type conflicts on this
  366. variable -- otherwise don't worry about it.
  367. WAITUNION The wait(2) routine takes a "union wait" argument instead
  368. of an integer argument.  This is for compatibility with
  369. old versions of BSD.
  370. SCANF You can set this to extend the F command to accept a
  371. scanf string -- this gives you a primitive parser for
  372. class definitions -- BUT it can make you vulnerable to
  373. core dumps if the target file is poorly formed.
  374. SYSLOG_BUFSIZE You can define this to be the size of the buffer that
  375. syslog accepts.  If it is not defined, it assumes a
  376. 1024-byte buffer.  If the buffer is very small (under
  377. 256 bytes) the log message format changes -- each
  378. e-mail message will log many more messages, since it
  379. will log each piece of information as a separate line
  380. in syslog.
  381. BROKEN_RES_SEARCH
  382. On Ultrix (and maybe other systems?) if you use the
  383. res_search routine with an unknown host name, it returns
  384. -1 but sets h_errno to 0 instead of HOST_NOT_FOUND.  If
  385. you set this, sendmail considers 0 to be the same as
  386. HOST_NOT_FOUND.
  387. NAMELISTMASK If defined, values returned by nlist(3) are masked
  388. against this value before use -- a common value is
  389. 0x7fffffff to strip off the top bit.
  390. BSD4_4_SOCKADDR If defined, socket addresses have an sa_len field that
  391. defines the length of this address.
  392. SAFENFSPATHCONF Set this to 1 if and only if you have verified that a
  393. pathconf(2) call with _PC_CHOWN_RESTRICTED argument on an
  394. NFS filesystem where the underlying system allows users to
  395. give away files to other users returns <= 0.  Be sure you
  396. try both on NFS V2 and V3.  Some systems assume that their
  397. local policy apply to NFS servers -- this is a bad
  398. assumption!  The test/t_pathconf.c program will try this
  399. for you -- you have to run it in a directory that is
  400. mounted from a server that allows file giveaway.
  401. SIOCGIFCONF_IS_BROKEN
  402. Set this if your system has an SIOCGIFCONF ioctl defined,
  403. but it doesn't behave the same way as "most" systems (BSD,
  404. Solaris, SunOS, HP-UX, etc.)
  405. SIOCGIFNUM_IS_BROKEN
  406. Set this if your system has an SIOCGIFNUM ioctl defined,
  407. but it doesn't behave the same way as "most" systems
  408. (Solaris, HP-UX).
  409. NEED_PERCENTQ Set this if your system doesn't support the printf
  410. format strings %lld or %llu.  If this is set, %qd and
  411. %qu are used instead.
  412. FAST_PID_RECYCLE
  413. Set this if your system can reuse the same PID in the same
  414. second.
  415. +-----------------------+
  416. | COMPILE-TIME FEATURES |
  417. +-----------------------+
  418. There are a bunch of features that you can decide to compile in, such
  419. as selecting various database packages and special protocol support.
  420. Several are assumed based on other compilation flags -- if you want to
  421. "un-assume" something, you probably need to edit conf.h.  Compilation
  422. flags that add support for special features include:
  423. NDBM Include support for "new" DBM library for aliases and maps.
  424. Normally defined in the Makefile.
  425. NEWDB Include support for Berkeley DB package (hash & btree)
  426. for aliases and maps.  Normally defined in the Makefile.
  427. If the version of NEWDB you have is the old one that does
  428. not include the "fd" call (this call was added in version
  429. 1.5 of the Berkeley DB code), you must upgrade to the
  430. current version of Berkeley DB.
  431. NIS Define this to get NIS (YP) support for aliases and maps.
  432. Normally defined in the Makefile.
  433. NISPLUS Define this to get NIS+ support for aliases and maps.
  434. Normally defined in the Makefile.
  435. HESIOD Define this to get Hesiod support for aliases and maps.
  436. Normally defined in the Makefile.
  437. NETINFO Define this to get NeXT NetInfo support for aliases and maps.
  438. Normally defined in the Makefile.
  439. LDAPMAP Define this to get LDAP support for maps.
  440. PH_MAP Define this to get PH support for maps.
  441. MAP_NSD Define this to get nsd support for maps.
  442. USERDB Define this to 1 to include support for the User Information
  443. Database.  Implied by NEWDB or HESIOD.  You can use
  444. -DUSERDB=0 to explicitly turn it off.
  445. IDENTPROTO Define this as 1 to get IDENT (RFC 1413) protocol support.
  446. This is assumed unless you are running on Ultrix or
  447. HP-UX, both of which have a problem in the UDP
  448. implementation.  You can define it to be 0 to explicitly
  449. turn off IDENT protocol support.  If defined off, the code
  450. is actually still compiled in, but it defaults off; you
  451. can turn it on by setting the IDENT timeout to 30s in the
  452. configuration file.
  453. IP_SRCROUTE Define this to 1 to get IP source routing information
  454. displayed in the Received: header.  This is assumed on
  455. most systems, but some (e.g., Ultrix) apparently have a
  456. broken version of getsockopt that doesn't properly
  457. support the IP_OPTIONS call.  You probably want this if
  458. your OS can cope with it.  Symptoms of failure will be that
  459. it won't compile properly (that is, no support for fetching
  460. IP_OPTIONs), or it compiles but source-routed TCP connections
  461. either refuse to open or open and hang for no apparent reason.
  462. Ultrix and AIX3 are known to fail this way.
  463. LOG Set this to get syslog(3) support.  Defined by default
  464. in conf.h.  You want this if at all possible.
  465. NETINET Set this to get TCP/IP support.  Defined by default
  466. in conf.h.  You probably want this.
  467. NETINET6 Set this to get IPv6 support.  Other configuration may
  468. be needed in conf.h for your particular operating system.
  469. NETISO Define this to get ISO networking support.
  470. NETUNIX Define this to get Unix domain networking support.  Defined
  471. by default.  A few bizarre systems (SCO, ISC, Altos) don't
  472. support this networking domain.
  473. NETNS Define this to get NS networking support.
  474. NETX25 Define this to get X.25 networking support.
  475. SMTP Define this to get the SMTP code.  Implied by NETINET
  476. or NETISO.
  477. NAMED_BIND If non-zero, include DNS (name daemon) support, including
  478. MX support.  The specs say you must use this if you run
  479. SMTP.  You don't have to be running a name server daemon
  480. on your machine to need this -- any use of the DNS resolver,
  481. including remote access to another machine, requires this
  482. option.  Defined by default in conf.h.  Define it to zero
  483. ONLY on machines that do not use DNS in any way.
  484. QUEUE Define this to get queueing code.  Implied by NETINET
  485. or NETISO; required by SMTP.  This gives you other good
  486. stuff -- it should be on.
  487. DAEMON Define this to get general network support.  Implied by
  488. NETINET or NETISO.  Defined by default in conf.h.  You
  489. almost certainly want it on.
  490. MATCHGECOS Permit fuzzy matching of user names against the full
  491. name (GECOS) field in the /etc/passwd file.  This should
  492. probably be on, since you can disable it from the config
  493. file if you want to.  Defined by default in conf.h.
  494. MIME8TO7 If non-zero, include 8 to 7 bit MIME conversions.  This
  495. also controls advertisement of 8BITMIME in the ESMTP
  496. startup dialogue.
  497. MIME7TO8 If non-zero, include 7 to 8 bit MIME conversions.
  498. HES_GETMAILHOST Define this to 1 if you are using Hesiod with the
  499. hes_getmailhost() routine.  This is included with the MIT
  500. Hesiod distribution, but not with the DEC Hesiod distribution.
  501. XDEBUG Do additional internal checking.  These don't cost too
  502. much; you might as well leave this on.
  503. TCPWRAPPERS Turns on support for the TCP wrappers library (-lwrap).
  504. See below for further information.
  505. SECUREWARE Enable calls to the SecureWare luid enabling/changing routines.
  506. SecureWare is a C2 security package added to several UNIX's
  507. (notably ConvexOS) to get a C2 Secure system.  This
  508. option causes mail delivery to be done with the luid of the
  509. recipient.
  510. SHARE_V1 Support for the fair share scheduler, version 1.  Setting to
  511. 1 causes final delivery to be done using the recipients
  512. resource limitations.  So far as I know, this is only
  513. supported on ConvexOS.
  514. SASL Enables SMTP AUTH (RFC 2554). This requires the
  515. CYRUS-SASL library (ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/).
  516. Please install at least version 1.5.13.  See below for further
  517. information: SASL COMPILATION AND CONFIGURATION.
  518. If your SASL library is older than 1.5.10, you have to set
  519. this to its version number using a simple conversion:  a.b.c
  520. -> c + b*100 + a*10000, e.g. for 1.5.5 define SASL=10505.
  521. Note: Use at least version 1.5.5 of CYRUS-SASL. Starting with
  522. version 1.5.10, setting SASL=1 is sufficient. Any value other
  523. than 1 (or 0) will be compared with the actual version found
  524. and if there is a mismatch, compilation will fail.
  525. +---------------------+
  526. | DNS/RESOLVER ISSUES |
  527. +---------------------+
  528. Many systems have old versions of the resolver library.  At a minimum,
  529. you should be running BIND 4.8.3; older versions may compile, but they
  530. have known bugs that should give you pause.
  531. Common problems in old versions include "undefined" errors for
  532. dn_skipname.
  533. Some people have had a problem with BIND 4.9; it uses some routines
  534. that it expects to be externally defined such as strerror().  It may
  535. help to link with "-l44bsd" to solve this problem.  This has apparently
  536. been fixed in later versions of BIND, starting around 4.9.3.  In other
  537. words, if you use 4.9.0 through 4.9.2, you need -l44bsd; for earlier or
  538. later versions, you do not.
  539. !PLEASE! be sure to link with the same version of the resolver as
  540. the header files you used -- some people have used the 4.9 headers
  541. and linked with BIND 4.8 or vice versa, and it doesn't work.
  542. Unfortunately, it doesn't fail in an obvious way -- things just
  543. subtly don't work.
  544. WILDCARD MX RECORDS ARE A BAD IDEA!  The only situation in which they
  545. work reliably is if you have two versions of DNS, one in the real world
  546. which has a wildcard pointing to your firewall, and a completely
  547. different version of the database internally that does not include
  548. wildcard MX records that match your domain.  ANYTHING ELSE WILL GIVE
  549. YOU HEADACHES!
  550. +------------------------------------+
  551. | SASL COMPILATION AND CONFIGURATION |
  552. +------------------------------------+
  553. Please read the docs accompanying the library (INSTALL and README).
  554. If you use Berkeley DB for Cyrus SASL then you must compile sendmail
  555. with the same version of Berkeley DB.
  556. You have to select and install authentication mechanisms and tell
  557. sendmail where to find the sasl library and the include files (see
  558. devtools/README for the parameters to set). Setup the required
  559. users and passwords as explained in the SASL documentation.  See
  560. also cf/README for authentication related options (esp. DefaultAuthInfo
  561. if you want authentication between MTAs).
  562. To perform an initial test, connect to your sendmail daemon
  563. (telnet localhost 25) and issue a EHLO localhost and see whether
  564. 250-AUTH ....
  565. is in the response.  If it isn't, run the daemon with
  566. -O LogLevel=14
  567. and try again.  Then take a look at the logfile and see whether
  568. there are any security related problems listed (unsafe files).
  569. Further information can be found at:
  570. http://www.sendmail.org/~ca/email/auth.html
  571. +-------------------------------------+
  572. | OPERATING SYSTEM AND COMPILE QUIRKS |
  573. +-------------------------------------+
  574. GCC problems
  575. *****************************************************************
  576. **  IMPORTANT:  DO NOT USE OPTIMIZATION (``-O'') IF YOU ARE    **
  577. **  RUNNING GCC 2.4.x or 2.5.x.  THERE IS A BUG IN THE GCC     **
  578. **  OPTIMIZER THAT CAUSES SENDMAIL COMPILES TO FAIL MISERABLY. **
  579. *****************************************************************
  580. Jim Wilson of Cygnus believes he has found the problem -- it will
  581. probably be fixed in GCC 2.5.6 -- but until this is verified, be
  582. very suspicious of gcc -O.  This problem is reported to have been
  583. fixed in gcc 2.6.
  584. A bug in gcc 2.5.5 caused problems compiling sendmail 8.6.5 with
  585. optimization on a Sparc.  If you are using gcc 2.5.5, youi should
  586. upgrade to the latest version of gcc.
  587. Apparently GCC 2.7.0 on the Pentium processor has optimization
  588. problems.  I recommend against using -O on that architecture.  This
  589. has been seen on FreeBSD 2.0.5 RELEASE.
  590. Solaris 2.X users should use version 2.7.2.3 over 2.7.2.
  591. We have been told there are problems with gcc 2.8.0.  If you are
  592. using this version, you should upgrade to 2.8.1 or later.
  593. GDBM GDBM does not work with sendmail 8.8 because the additional
  594. security checks and file locking cause problems.  Unfortunately,
  595. gdbm does not provide a compile flag in its version of ndbm.h so
  596. the code can adapt.  Until the GDBM authors can fix these problems,
  597. GDBM will not be supported.  Please use Berkeley DB instead.
  598. Configuration file location
  599. Up to 8.6, sendmail tried to find the sendmail.cf file in the same
  600. place as the vendors had put it, even when this was obviously
  601. stupid.  As of 8.7, sendmail ALWAYS looks for /etc/sendmail.cf.
  602. Beginning with 8.10, sendmail uses /etc/mail/sendmail.cf.
  603. You can get sendmail to use the stupid vendor .cf location by
  604. adding -DUSE_VENDOR_CF_PATH during compilation, but this may break
  605. support programs and scripts that need to find sendmail.cf.  You
  606. are STRONGLY urged to use symbolic links if you want to use the
  607. vendor location rather than changing the location in the sendmail
  608. binary.
  609. ControlSocket permissions
  610. Paraphrased from BIND 8.2.1's README:
  611. Solaris and other pre-4.4BSD kernels do not respect ownership or
  612. protections on UNIX-domain sockets.  The short term fix for this is to
  613. override the default path and put such control sockets into root-
  614. owned directories which do not permit non-root to r/w/x through them.
  615. The long term fix is for all kernels to upgrade to 4.4BSD semantics.
  616. SunOS 4.x (Solaris 1.x)
  617. You may have to use -lresolv on SunOS.  However, beware that
  618. this links in a new version of gethostbyname that does not
  619. understand NIS, so you must have all of your hosts in DNS.
  620. Some people have reported problems with the SunOS version of
  621. -lresolv and/or in.named, and suggest that you get a newer
  622. version.  The symptoms are delays when you connect to the
  623. SMTP server on a SunOS machine or having your domain added to
  624. addresses inappropriately.  There is a version of BIND
  625. version 4.9 on gatekeeper.DEC.COM in pub/BSD/bind/4.9.
  626. There is substantial disagreement about whether you can make
  627. this work with resolv+, which allows you to specify a search-path
  628. of services.  Some people report that it works fine, others
  629. claim it doesn't work at all (including causing sendmail to
  630. drop core when it tries to do multiple resolv+ lookups for a
  631. single job).  I haven't tried resolv+, as we use DNS exclusively.
  632. Should you want to try resolv+, it is on ftp.uu.net in
  633. /networking/ip/dns.
  634. Apparently getservbyname() can fail under moderate to high
  635. load under some circumstances.  This will exhibit itself as
  636. the message ``554 makeconnection: service "smtp" unknown''.
  637. The problem has been traced to one or more blank lines in
  638. /etc/services on the NIS server machine.  Delete these
  639. and it should work.  This info is thanks to Brian Bartholomew
  640. <bb@math.ufl.edu> of I-Kinetics, Inc.
  641. SunOS 4.0.2 (Sun 386i)
  642. Date: Fri, 25 Aug 1995 11:13:58 +0200 (MET DST)
  643. From: teus@oce.nl
  644. Sendmail 8.7.Beta.12 compiles and runs nearly out of the box with the
  645. following changes:
  646. * Don't use /usr/5bin in your PATH, but make /usr/5bin/uname
  647.   available as "uname" command.
  648. * Use the defines "-DBSD4_3 -DNAMED_BIND=0" in
  649.   devtools/OS/SunOS.4.0, which is selected via the "uname" command.
  650. I recommend to make available the db-library on the system first
  651. (and change the Makefile to use this library).
  652. Note that the sendmail.cf and aliases files are found in /etc.
  653. SunOS 4.1.3, 4.1.3_U1
  654. Sendmail causes crashes on SunOS 4.1.3 and 4.1.3_U1.  According
  655. to Sun bug number 1077939:
  656. If an application does a getsockopt() on a SOCK_STREAM (TCP) socket
  657. after the other side of the connection has sent a TCP RESET for
  658. the stream, the kernel gets a Bus Trap in the tcp_ctloutput() or
  659. ip_ctloutput() routine.
  660. For 4.1.3, this is fixed in patch 100584-08, available on the
  661. Sunsolve 2.7.1 or later CDs.  For 4.1.3_U1, this was fixed in patch
  662. 101790-01 (SunOS 4.1.3_U1: TCP socket and reset problems), later
  663. obsoleted by patch 102010-05.
  664. Sun patch 100584-08 is not currently publicly available on their
  665. ftp site but a user has reported it can be found at other sites
  666. using a web search engine.
  667. Solaris 2.x (SunOS 5.x)
  668. To compile for Solaris, the Makefile built by Build must
  669. include a SOLARIS definition which reflects the Solaris version
  670. (i.e. -DSOLARIS=20400 for 2.4 or -DSOLARIS=20501 for 2.5.1).
  671. If you are using gcc, make sure -I/usr/include is not used (or
  672. it might complain about TopFrame).  If you are using Sun's cc,
  673. make sure /opt/SUNWspro/bin/cc is used instead of /usr/ucb/cc
  674. (or it might complain about tm_zone).
  675. To the best of my knowledge, Solaris does not have the
  676. gethostbyname problem described above.  However, it does
  677. have another one:
  678. From a correspondent:
  679.    For solaris 2.2, I have
  680. hosts:      files dns
  681.    in /etc/nsswitch.conf and /etc/hosts has to have the fully
  682.    qualified host name. I think "files" has to be before "dns"
  683.    in /etc/nsswitch.conf during bootup.
  684. From another correspondent:
  685.    When running sendmail under Solaris, the gethostbyname()
  686.    hack in conf.c which should perform proper canonicalization
  687.    of host names could fail.  Result: the host name is not
  688.    canonicalized despite the hack, and you'll have to define $j
  689.    and $m in sendmail.cf somewhere.
  690.    The reason could be that /etc/nsswitch.conf is improperly
  691.    configured (at least from sendmail's point of view).  For
  692.    example, the line
  693. hosts:      files nisplus dns
  694.    will make gethostbyname() look in /etc/hosts first, then ask
  695.    nisplus, then dns.  However, if /etc/hosts does not contain
  696.    the full canonicalized hostname, then no amount of
  697.    gethostbyname()s will work.
  698.    Solution (or rather, a workaround): Ask nisplus first, then
  699.    dns, then local files:
  700. hosts:      nisplus dns [NOTFOUND=return] files
  701. The Solaris "syslog" function is apparently limited to something
  702. about 90 characters because of a kernel limitation.  If you have
  703. source code, you can probably up this number.  You can get patches
  704. that fix this problem: the patch ids are:
  705. Solaris 2.1 100834
  706. Solaris 2.2 100999
  707. Solaris 2.3 101318
  708. Be sure you have the appropriate patch installed or you won't
  709. see system logging.
  710. Solaris 2.4 (SunOS 5.4)
  711. If you include /usr/lib at the end of your LD_LIBRARY_PATH you run
  712. the risk of getting the wrong libraries under some circumstances.
  713. This is because of a new feature in Solaris 2.4, described by
  714. Rod.Evans@Eng.Sun.COM:
  715. >> Prior to SunOS 5.4, any LD_LIBRARY_PATH setting was ignored by the
  716. >> runtime linker if the application was setxid (secure), thus your
  717. >> applications search path would be:
  718. >>
  719. >> /usr/local/lib LD_LIBRARY_PATH component - IGNORED
  720. >> /usr/lib LD_LIBRARY_PATH component - IGNORED
  721. >> /usr/local/lib RPATH - honored
  722. >> /usr/lib RPATH - honored
  723. >>
  724. >> the effect is that path 3 would be the first used, and this would
  725. >> satisfy your resolv.so lookup.
  726. >>
  727. >> In SunOS 5.4 we made the LD_LIBRARY_PATH a little more flexible.
  728. >> People who developed setxid applications wanted to be able to alter
  729. >> the library search path to some degree to allow for their own
  730. >> testing and debugging mechanisms.  It was decided that the only
  731. >> secure way to do this was to allow a `trusted' path to be used in
  732. >> LD_LIBRARY_PATH.  The only trusted directory we presently define
  733. >> is /usr/lib.  Thus a setuid root developer could play with some
  734. >> alternative shared object implementations and place them in
  735. >> /usr/lib (being root we assume they'ed have access to write in this
  736. >> directory).  This change was made as part of 1155380 - after a
  737. >> *huge* amount of discussion regarding the security aspect of things.
  738. >>
  739. >> So, in SunOS 5.4 your applications search path would be:
  740. >>
  741. >> /usr/local/lib from LD_LIBRARY_PATH - IGNORED (untrustworthy)
  742. >> /usr/lib from LD_LIBRARY_PATH - honored (trustworthy)
  743. >> /usr/local/lib from RPATH - honored
  744. >> /usr/lib from RPATH - honored
  745. >>
  746. >> here, path 2 would be the first used.
  747. Solaris 2.6 (SunOS 5.6)
  748. If you built sendmail 8.8.1 through 8.8.4 inclusive on a Solaris 2.5
  749. system, that binary will not run on Solaris 2.6, due to problems with
  750. incompatible snprintf(3s) calls.  This problem is fixed in sendmail
  751. 8.8.5.
  752. Solaris 2.5.1 (SunOS 5.5.1) and 2.6 (SunOS 5.6)
  753. Apparently Solaris 2.5.1 patch 103663-01 installs a new
  754. /usr/include/resolv.h file that defines the __P macro without
  755. checking to see if it is already defined.  This new resolv.h is also
  756. included in the Solaris 2.6 distribution. This causes compile
  757. warnings such as:
  758.    In file included from daemon.c:51:
  759.    /usr/include/resolv.h:208: warning: `__P' redefined
  760.    cdefs.h:58: warning: this is the location of the previous definition
  761. These warnings can be safely ignored or you can create a resolv.h
  762. file in the obj.SunOS.5.5.1.* or obj.SunOS.5.6.* directory that reads:
  763.    #undef __P
  764.    #include "/usr/include/resolv.h"
  765. Sun is aware of the problem (Sun bug ID 4081053) and it will be fixed
  766. in Solaris 2.7.
  767. Ultrix
  768. By default, the IDENT protocol is turned off on Ultrix.  If you
  769. are running Ultrix 4.4 or later, or if you have included patch
  770. CXO-8919 for Ultrix 4.2 or 4.3 to fix the TCP problem, you can turn
  771. IDENT on in the configuration file by setting the "ident" timeout
  772. to 30 seconds.
  773. Digital UNIX (formerly DEC OSF/1)
  774. If you are compiling on OSF/1 (DEC Alpha), you must use
  775. -L/usr/shlib (otherwise it core dumps on startup).  You may also
  776. need -mld to get the nlist() function, although some versions
  777. apparently don't need this.
  778. Also, the enclosed makefile removed /usr/sbin/smtpd; if you need
  779. it, just create the link to the sendmail binary.
  780. On DEC OSF/1 3.2 or earlier, the MatchGECOS option doesn't work
  781. properly due to a bug in the getpw* routines.  If you want to use
  782. this, use -DDEC_OSF_BROKEN_GETPWENT=1.  The problem is fixed in 3.2C.
  783. Digital's mail delivery agent, /bin/mail (aka /bin/binmail), will
  784. only preserve the envelope sender in the "From " header if
  785. DefaultUserID is set to daemon.  Setting this to mailnull will
  786. cause all mail to have the header "From mailnull ...".  To use
  787. a different DefaultUserID, you will need to use a different mail
  788. delivery agent (such as mail.local found in the sendmail
  789. distribution).
  790. On Digital UNIX 4.0 and later, Berkeley DB 1.85 is included with the
  791. operating system and already has the ndbm.o module removed.  However,
  792. Digital has modified the original Berkeley DB db.h include file.
  793. This results in the following warning while compiling map.c and udb.c:
  794. cc: Warning: /usr/include/db.h, line 74: The redefinition of the macro
  795.  "__signed" conflicts with a current definition because the replacement
  796.  lists differ.  The redefinition is now in effect.
  797. #define __signed        signed
  798. ------------------------^
  799. This warning can be ignored.
  800. Digital UNIX's linker checks /usr/ccs/lib/ before /usr/lib/.
  801. If you have installed a new version of BIND in /usr/include
  802. and /usr/lib, you will experience difficulties as Digital ships
  803. libresolv.a in /usr/ccs/lib/ as well.  Be sure to replace both
  804. copies of libresolv.a.
  805. IRIX
  806. The header files on SGI IRIX are completely prototyped, and as
  807. a result you can sometimes get some warning messages during
  808. compilation.  These can be ignored.  There are two errors in
  809. deliver only if you are using gcc, both of the form ``warning:
  810. passing arg N of `execve' from incompatible pointer type''.
  811. Also, if you compile with -DNIS, you will get a complaint
  812. about a declaration of struct dom_binding in a prototype
  813. when compiling map.c; this is not important because the
  814. function being prototyped is not used in that file.
  815. In order to compile sendmail you will have had to install
  816. the developers' option in order to get the necessary include
  817. files.
  818. If you compile with -lmalloc (the fast memory allocator), you may
  819. get warning messages such as the following:
  820.    ld32: WARNING 85: definition of _calloc in /usr/lib32/libmalloc.so
  821. preempts that definition in /usr/lib32/mips3/libc.so.
  822.    ld32: WARNING 85: definition of _malloc in /usr/lib32/libmalloc.so
  823. preempts that definition in /usr/lib32/mips3/libc.so.
  824.    ld32: WARNING 85: definition of _realloc in /usr/lib32/libmalloc.so
  825. preempts that definition in /usr/lib32/mips3/libc.so.
  826.    ld32: WARNING 85: definition of _free in /usr/lib32/libmalloc.so
  827. preempts that definition in /usr/lib32/mips3/libc.so.
  828.    ld32: WARNING 85: definition of _cfree in /usr/lib32/libmalloc.so
  829. preempts that definition in /usr/lib32/mips3/libc.so.
  830. These are unavoidable and innocuous -- just ignore them.
  831. According to Dave Sill <de5@ornl.gov>, there is a version of the
  832. Berkeley DB library patched to run on Irix 6.2 available from
  833. http://reality.sgi.com/ariel/freeware/#db .
  834. IRIX 6.x
  835. If you are using XFS filesystem, avoid using the -32 ABI switch to
  836. the cc compiler if possible.
  837. IRIX 6.4
  838. The IRIX 6.5.4 version of /bin/m4 does not work properly with
  839. sendmail.  Either install fw_m4.sw.m4 off the Freeware_May99 CD and
  840. use /usr/freeware/bin/m4 or install and use GNU m4.
  841. NeXT or NEXTSTEP
  842. NEXTSTEP 3.3 and earlier ship with the old DBM library.  Also,
  843. Berkeley DB does not currently run on NEXTSTEP.
  844. If you are compiling on NEXTSTEP, you will have to create an
  845. empty file "unistd.h" and create a file "dirent.h" containing:
  846. #include <sys/dir.h>
  847. #define dirent direct
  848. (devtools/OS/NeXT should try to do both of these for you.)
  849. Apparently, there is a bug in getservbyname on Nextstep 3.0
  850. that causes it to fail under some circumstances with the
  851. message "SYSERR: service "smtp" unknown" logged.  You should
  852. be able to work around this by including the line:
  853. OOPort=25
  854. in your .cf file.
  855. You may have to use -DNeXT.
  856. BSDI (BSD/386) 1.0, NetBSD 0.9, FreeBSD 1.0
  857. The "m4" from BSDI won't handle the config files properly.
  858. I haven't had a chance to test this myself.
  859. The M4 shipped in FreeBSD and NetBSD 0.9 don't handle the config
  860. files properly. One must use either GNU m4 1.1 or the PD-M4
  861. recently posted in comp.os.386bsd.bugs (and maybe others).
  862. NetBSD-current includes the PD-M4 (as stated in the NetBSD file
  863. CHANGES).
  864. FreeBSD 1.0 RELEASE has uname(2) now. Use -DUSEUNAME in order to
  865. use it (look into devtools/OS/FreeBSD). NetBSD-current may have
  866. it too but it has not been verified.
  867. The latest version of Berkeley DB uses a different naming
  868. scheme than the version that is supplied with your release.  This
  869. means you will be able to use the current version of Berkeley DB
  870. with sendmail as long you use the new db.h when compiling
  871. sendmail and link it against the new libdb.a or libdb.so.  You
  872. should probably keep the original db.h in /usr/include and the
  873. new db.h in /usr/local/include.
  874. 4.3BSD
  875. If you are running a "virgin" version of 4.3BSD, you'll have
  876. a very old resolver and be missing some header files.  The
  877. header files are simple -- create empty versions and everything
  878. will work fine.  For the resolver you should really port a new
  879. version (4.8.3 or later) of the resolver; 4.9 is available on
  880. gatekeeper.DEC.COM in pub/BSD/bind/4.9.  If you are really
  881. determined to continue to use your old, buggy version (or as
  882. a shortcut to get sendmail working -- I'm sure you have the
  883. best intentions to port a modern version of BIND), you can
  884. copy ../contrib/oldbind.compat.c into sendmail and add
  885. oldbind.compat.o to OBJADD in the Makefile.
  886. A/UX
  887. Date: Tue, 12 Oct 1993 18:28:28 -0400 (EDT)
  888. From: "Eric C. Hagberg" <hagberg@med.cornell.edu>
  889. Subject: Fix for A/UX ndbm
  890. I guess this isn't really a sendmail bug, however, it is something
  891. that A/UX users should be aware of when compiling sendmail 8.6.
  892. Apparently, the calls that sendmail is using to the ndbm routines
  893. in A/UX 3.0.x contain calls to "broken" routines, in that the
  894. aliases database will break when it gets "just a little big"
  895. (sorry I don't have exact numbers here, but it broke somewhere
  896. around 20-25 aliases for me.), making all aliases non-functional
  897. after exceeding this point.
  898. What I did was to get the gnu-dbm-1.6 package, compile it, and
  899. then re-compile sendmail with "-lgdbm", "-DNDBM", and using the
  900. ndbm.h header file that comes with the gnu-package. This makes
  901. things behave properly.
  902.   [NOTE: see comment above about GDBM]
  903. I suppose porting the New Berkeley DB package is another route,
  904. however, I made a quick attempt at it, and found it difficult
  905. (not easy at least); the gnu-dbm package "configured" and
  906. compiled easily.
  907.   [NOTE: Berkeley DB version 2.X runs on A/UX and can be used for
  908.   database maps.]
  909. SCO Unix
  910. From: Thomas Essebier <tom@stallion.oz.au>
  911. Organisation:  Stallion Technologies Pty Ltd.
  912. It will probably help those who are trying to configure sendmail 8.6.9
  913. to know that if they are on SCO, they had better set
  914. OI-dnsrch
  915. or they will core dump as soon as they try to use the resolver.
  916. ie. although SCO has _res.dnsrch defined, and is kinda BIND 4.8.3, it
  917. does not inititialise it, nor does it understand 'search' in
  918. /etc/named.boot.
  919. - sigh -
  920. According to SCO, the m4 which ships with UnixWare 2.1.2 is broken.
  921. We recommend installing GNU m4 before attempting to build sendmail.
  922. DG/UX
  923. Doug Anderson <dlander@afterlife.ncsc.mil> has successfully run
  924. V8 on the DG/UX 5.4.2 and 5.4R3.x platforms under heavy usage.
  925. Originally, the DG /bin/mail program wasn't compatible with
  926. the V8 sendmail, since the DG /bin/mail requires the environment
  927. variable "_FORCE_MAIL_LOCAL_=yes" be set.  Version 8.7 now includes
  928. this in the environment before invoking the local mailer.  Some
  929. have used procmail to avoid this problem in the past.  It works
  930. but some have experienced file locking problems with their DG/UX
  931. ports of procmail.
  932. Apollo DomainOS
  933. If you are compiling on Apollo, you will have to create an empty
  934. file "unistd.h" (for DomainOS 10.3 and earlier) and create a file
  935. "dirent.h" containing:
  936. #include <sys/dir.h>
  937. #define dirent direct
  938. (devtools/OS/DomainOS will attempt to do both of these for you.)
  939. HP-UX 8.00
  940. Date: Mon, 24 Jan 1994 13:25:45 +0200
  941. From: Kimmo Suominen <Kimmo.Suominen@lut.fi>
  942. Subject: 8.6.5 w/ HP-UX 8.00 on s300
  943. Just compiled and fought with sendmail 8.6.5 on a HP9000/360 (ie. a
  944. series 300 machine) running HP-UX 8.00.
  945. I was getting segmentation fault when delivering to a local user.
  946. With debugging I saw it was faulting when doing _free@libc... *sigh*
  947. It seems the new implementation of malloc on s300 is buggy as of 8.0,
  948. so I tried out the one in -lmalloc (malloc(3X)).  With that it seems
  949. to work just dandy.
  950. When linking, you will get the following error:
  951. ld: multiply defined symbol _freespace in file /usr/lib/libmalloc.a
  952. but you can just ignore it.  You might want to add this info to the
  953. README file for the future...
  954. Linux
  955. Something broke between versions 0.99.13 and 0.99.14 of Linux:
  956. the flock() system call gives errors.  If you are running .14,
  957. you must not use flock.  You can do this with -DHASFLOCK=0.
  958. Around the inclusion of bind-4.9.3 & Linux libc-4.6.20, the
  959. initialization of the _res structure changed.  If /etc/hosts.conf
  960. was configured as "hosts, bind" the resolver code could return
  961. "Name server failure" errors.  This is supposedly fixed in
  962. later versions of libc (>= 4.6.29?), and later versions of
  963. sendmail (> 8.6.10) try to work around the problem.
  964. Some older versions (< 4.6.20?) of the libc/include files conflict
  965. with sendmail's version of cdefs.h.  Deleting sendmail's version
  966. on those systems should be non-harmful, and new versions don't care.
  967. Sendmail assumes that libc has snprintf, which has been true since
  968. libc 4.7.0.  If you are running an older version, you will need to
  969. use -DHASSNPRINTF=0 in the Makefile.  If may be able to use -lbsd
  970. (which includes snprintf) instead of turning this off on versions
  971. of libc between 4.4.4 and 4.7.0 (snprintf improves security, so
  972. you want to use this if at all possible).
  973. NOTE ON LINUX & BIND:  By default, the Makefile generated for Linux
  974. includes header files in /usr/local/include and libraries in
  975. /usr/local/lib.  If you've installed BIND on your system, the header
  976. files typically end up in the search path and you need to add
  977. "-lresolv" to the LIBS line in your Makefile.  Really old versions
  978. may need to include "-l44bsd" as well (particularly if the link phase
  979. complains about missing strcasecmp, strncasecmp or strpbrk).
  980. Complaints about an undefined reference to `__dn_skipname' in
  981. domain.o are a sure sign that you need to add -lresolv to LIBS.
  982. Newer versions of Linux are basically threaded BIND, so you may or
  983. may not see complaints if you accidentally mix BIND
  984. headers/libraries with virginal libc.  If you have BIND headers in
  985. /usr/local/include (resolv.h, etc) you *should* be adding -lresolv
  986. to LIBS.  Data structures may change and you'd be asking for a
  987. core dump.
  988. A number of problems have been reported regarding the Linux 2.2.0
  989. kernel.  So far, these problems have been tracked down to syslog()
  990. and DNS resolution.  We believe the problem is with the poll()
  991. implementation in the Linux 2.2.0 kernel and poll()-aware versions
  992. of glib (at least up to 2.0.111).
  993. AIX 4.2
  994. The AIX m4 implements a different mechanism for ifdef which is
  995. inconsistent with other versions of m4.  Therefore, it will not
  996. work properly with the sendmail Build architecture or m4
  997. configuration method.  To work around this problem, please use
  998. GNU m4 from ftp://ftp.gnu.org/pub/gnu/.
  999. AIX 3.x
  1000. This version of sendmail does not support MB, MG, and MR resource
  1001. records, which are supported by AIX sendmail.
  1002. Several people have reported that the IBM-supplied named returns
  1003. fairly random results -- the named should be replaced.  It is not
  1004. necessary to replace the resolver, which will simplify installation.
  1005. A new BIND resolver can be found at http://www.isc.org/isc/.
  1006. AIX 3.1.x
  1007. The supplied load average code only works correctly for AIX 3.2.x.
  1008. For 3.1, use -DLA_TYPE=LA_SUBR and get the latest ``monitor''
  1009. package by Jussi Maki <jmaki@hut.fi> from ftp.funet.fi in the
  1010. directory pub/unix/AIX/rs6000/monitor-1.12.tar.Z; use the loadavgd
  1011. daemon, and the getloadavg subroutine supplied with that package.
  1012. If you don't care about load average throttling, just turn off
  1013. load average checking using -DLA_TYPE=LA_ZERO.
  1014. AIX 2.2.1
  1015. Date: Mon Dec  4 14:14:56 CST 1995
  1016. From: Mark Whetzel <markw@antimatr.houston.tx.us>
  1017. Subject: Porting sendmail 8.7.2 to AIX V2 on the RT.
  1018. This version of sendmail does not support MB, MG, and MR resource
  1019. records, which are supported by AIX sendmail.
  1020. AIX V2 on the RT does not have 'paths.h'.  Create a null
  1021. file in the 'obj' directory to remove this compile error.
  1022. A patch file is needed to get the BSD 'db' library to compile
  1023. for AIX/RT.  I have sent the necessary updates to the author,
  1024. but they may not be immediately available.
  1025.   [NOTE: Berkeley DB version 2.X runs on AIX/RT.]
  1026. The original AIX/RT resolver libraries are very old, and you
  1027. should get the latest BIND to replace it.  The 4.8.3 version
  1028. has been tested, but 4.9.x is out and should work.
  1029. To make the load average code work correctly requires an
  1030. external routine, as the kernel does not maintain system
  1031. load averages, similar to AIX V3.1.x.  A reverse port of the
  1032. older 1.05 'monitor' load average daemon code written by
  1033. Jussi Maki that will work on AIX V2 for the RT is available
  1034. by E-mail to Mark Whetzel  <markw@antimatr.houston.tx.us>.
  1035. That code depends on an external daemon to collect system
  1036. load information, and the external routine 'getloadavg',
  1037. that will return that information.  The 'LA_SUBR' define
  1038. will handle this for AIX V2 on the RT.
  1039. Note: You will have to change devtools/OS/AIX.2 to correctly
  1040. point to the locatons of the updated BIND source tree and
  1041. the location of the 'newdb' tree and library location.
  1042. You will also have to change devtools/OS/AIX.2 to know
  1043. about the location of the 'getloadavg' routine if you use
  1044. the LA_SUBR define.
  1045. Manual pages will format correctly if given the mandoc macros
  1046. and used with nroff.  I have not tried groff.
  1047. RISC/os
  1048. RISC/os from MIPS is a merged AT&T/Berkeley system.  When you
  1049. compile on that platform you will get duplicate definitions
  1050. on many files.  You can ignore these.
  1051. System V Release 4 Based Systems
  1052. There is a single devtools OS that is intended for all SVR4-based
  1053. systems (built from devtools/OS/SVR4).  It defines __svr4__,
  1054. which is predefined by some compilers.  If your compiler already
  1055. defines this compile variable, you can delete the definition from
  1056. the generated Makefile or create a devtools/Site/site.config.m4
  1057. file.
  1058. It's been tested on Dell Issue 2.2.
  1059. DELL SVR4
  1060. Date:      Mon, 06 Dec 1993 10:42:29 EST
  1061. From: "Kimmo Suominen" <kim@grendel.lut.fi>
  1062. Message-ID: <2d0352f9.lento29@lento29.UUCP>
  1063. To: eric@cs.berkeley.edu
  1064. Cc: sendmail@cs.berkeley.edu
  1065. Subject:   Notes for DELL SVR4
  1066. Eric,
  1067. Here are some notes for compiling Sendmail 8.6.4 on DELL SVR4.  I ran
  1068. across these things when helping out some people who contacted me by
  1069. e-mail.
  1070. 1) Use gcc 2.4.5 (or later?).  Dell distributes gcc 2.1 with their
  1071.    Issue 2.2 Unix.  It is too old, and gives you problems with
  1072.    clock.c, because sigset_t won't get defined in <sys/signal.h>.
  1073.    This is due to a problematic protection rule in there, and is
  1074.    fixed with gcc 2.4.5.
  1075. 2) If you don't use the new Berkeley DB (-DNEWDB), then you need
  1076.    to add "-lc -lucb" to the libraries to link with.  This is because
  1077.    the -ldbm distributed by Dell needs the bcopy, bcmp and bzero
  1078.    functions.  It is important that you specify both libraries in
  1079.    the given order to be sure you only get the BSTRING functions
  1080.    from the UCB library (and not the signal routines etc.).
  1081. 3) Don't leave out "-lelf" even if compiling with "-lc -lucb".
  1082.    The UCB library also has another copy of the nlist routines,
  1083.    but we do want the ones from "-lelf".
  1084. If anyone needs a compiled gcc 2.4.5 and/or a ported DB library, they
  1085. can use anonymous ftp to fetch them from lut.fi in the /kim directory.
  1086. They are copies of what I use on grendel.lut.fi, and offering them
  1087. does not imply that I would also support them.  I have sent the DB
  1088. port for SVR4 back to Keith Bostic for inclusion in the official
  1089. distribution, but I haven't heard anything from him as of today.
  1090. - gcc-2.4.5-svr4.tar.gz (gcc 2.4.5 and the corresponding libg++)
  1091. - db-1.72.tar.gz (with source, objects and a installed copy)
  1092. Cheers
  1093. + Kim
  1094. --
  1095.  *  Kimmo.Suominen@lut.fi  *  SysVr4 enthusiast at GRENDEL.LUT.FI  *
  1096. *    KIM@FINFILES.BITNET   *  Postmaster and Hostmaster at LUT.FI   *
  1097.  *    + 358 200 865 718    *  Unix area moderator at NIC.FUNET.FI  *
  1098. ConvexOS 10.1 and below
  1099. In order to use the name server, you must create the file
  1100. /etc/use_nameserver.  If this file does not exist, the call
  1101. to res_init() will fail and you will have absolutely no
  1102. access to DNS, including MX records.
  1103. Amdahl UTS 2.1.5
  1104. In order to get UTS to work, you will have to port BIND 4.9.
  1105. The vendor's BIND is reported to be ``totally inadequate.''
  1106. See sendmail/contrib/AmdahlUTS.patch for the patches necessary
  1107. to get BIND 4.9 compiled for UTS.
  1108. UnixWare
  1109. According to Alexander Kolbasov <sasha@unitech.gamma.ru>,
  1110. the m4 on UnixWare 2.0 (still in Beta) will core dump on the
  1111. config files.  GNU m4 and the m4 from UnixWare 1.x both work.
  1112. According to Larry Rosenman <ler@lerami.lerctr.org>:
  1113. UnixWare 2.1.[23]'s m4 chokes (not obviously) when
  1114. processing the 8.9.0 cf files.
  1115. I had a LOCAL_RULE_0 that wound up AFTER the
  1116. SBasic_check_rcpt rules using the SCO supplied M4.
  1117. GNU M4 works fine.
  1118. UNICOS 8.0.3.4
  1119. Some people have reported that the -O flag on UNICOS can cause
  1120. problems.  You may want to turn this off if you have problems
  1121. running sendmail.  Reported by Jerry G. DeLapp <jgd@acl.lanl.gov>.
  1122. GNU getopt
  1123. I'm told that GNU getopt has a problem in that it gets confused
  1124. by the double call.  Use the version in conf.c instead.
  1125. BIND 4.9.2 and Ultrix
  1126. If you are running on Ultrix, be sure you read conf/Info.Ultrix
  1127. in the BIND distribution very carefully -- there is information
  1128. in there that you need to know in order to avoid errors of the
  1129. form:
  1130. /lib/libc.a(gethostent.o): sethostent: multiply defined
  1131. /lib/libc.a(gethostent.o): endhostent: multiply defined
  1132. /lib/libc.a(gethostent.o): gethostbyname: multiply defined
  1133. /lib/libc.a(gethostent.o): gethostbyaddr: multiply defined
  1134. during the link stage.
  1135. BIND 8.X
  1136. BIND 8.X returns HOST_NOT_FOUND instead of TRY_AGAIN on temporary
  1137. DNS failures when trying to find the hostname associated with an IP 
  1138. address (gethostbyaddr()).  This can cause problems as
  1139. $&{client_name} based lookups in class R ($=R) and the access
  1140. database won't succeed.
  1141. This will be fixed in BIND 8.2.1.  For earlier versions, this can
  1142. be fixed by making "dns" the last name service queried for host
  1143. resolution in /etc/irs.conf:
  1144. hosts local continue
  1145. hosts dns
  1146. strtoul
  1147. Some compilers (notably gcc) claim to be ANSI C but do not
  1148. include the ANSI-required routine "strtoul".  If your compiler
  1149. has this problem, you will get an error in srvrsmtp.c on the
  1150. code:
  1151.   # ifdef defined(__STDC__) && !defined(BROKEN_ANSI_LIBRARY)
  1152. e->e_msgsize = strtoul(vp, (char **) NULL, 10);
  1153.   # else
  1154. e->e_msgsize = strtol(vp, (char **) NULL, 10);
  1155.   # endif
  1156. You can use -DBROKEN_ANSI_LIBRARY to get around this problem.
  1157. Listproc 6.0c
  1158. Date: 23 Sep 1995 23:56:07 GMT
  1159. Message-ID: <95925101334.~INN-AUMa00187.comp-news@dl.ac.uk>
  1160. From: alansz@mellers1.psych.berkeley.edu (Alan Schwartz)
  1161. Subject: Listproc 6.0c + Sendmail 8.7 [Helpful hint]
  1162. Just upgraded to sendmail 8.7, and discovered that listproc 6.0c
  1163. breaks, because it, by default, sends a blank "HELO" rather than
  1164. a "HELO hostname" when using the 'system' or 'telnet' mailmethod.
  1165. The fix is to include -DZMAILER in the compilation, which will
  1166. cause it to use "HELO hostname" (which Z-mail apparently requires
  1167. as well. :)
  1168. LDAP
  1169. LDAP was originally provided by Booker Bense
  1170. <bbense+ldap@stanford.edu> of Stanford University.  From Booker:
  1171.   - The patch attached to this message implements an Ldap map class.
  1172.     Currently we are using this at stanford to support campus-wide
  1173.     email addressing. More information can be found at
  1174.     http://www.stanford.edu/~bbense/Inst.html.
  1175.   - Currently we are using the ldap map as follows:
  1176. Kluser ldapx
  1177.     -h"localhost borax.stanford.edu borate.stanford.edu boron.stanford.edu"
  1178.     -k"mailacceptinggeneralid=%s" -v maildrop
  1179.     and in Rule set S5
  1180. # Now attempt to lookup in luser (ldap map)
  1181. R< $L > $+ $: < $L > $( luser $1 $)
  1182. R< $*  > $+ @ $+ $: < $3 > $2 Rewrite if forward
  1183.   - The map definition supports most of the standard Map args plus
  1184.     most of the command line options of ldapsearch. The software is
  1185.     currently limited to only accepting the first entry
  1186.     returned. It expects that the map defines an ldap filter that
  1187.     returns at most 1 valid entry.  It requires the ldap and lber
  1188.     libraries from the Umich Ldap3.2 release.
  1189.     The software has been in production on Solaris.2.5.1 at Stanford
  1190.     for over 2 years.
  1191. The LDAP map supports both the UMich LDAP 3.2 and 3.3 libraries as
  1192. well as the OpenLDAP (http://www.openldap.org/) libraries.
  1193. PH
  1194. PH support is provided by Mark Roth <roth@uiuc.edu>.  The map is
  1195. described at http://www-wsg.cso.uiuc.edu/sendmail/patches/ .
  1196. Please contact Mark Roth for support and questions regarding the
  1197. map.
  1198. TCP Wrappers
  1199. If you are using -DTCPWRAPPERS to get TCP Wrappers support you will
  1200. also need to install libwrap.a and modify your site.config.m4 file
  1201. or the generated Makefile to include -lwrap in the LIBS line
  1202. (make sure that INCDIRS and LIBDIRS point to where the tcpd.h and
  1203. libwrap.a can be found).
  1204. TCP Wrappers is available at ftp://ftp.porcupine.org/pub/security/.
  1205. If you have alternate MX sites for your site, be sure that all of
  1206. your MX sites reject the same set of hosts.  If not, a bad guy whom
  1207. you reject will connect to your site, fail, and move on to the next
  1208. MX site, which will accept the mail for you and forward it on to you.
  1209. Regular Expressions (MAP_REGEX)
  1210. If sendmail linking fails with:
  1211. undefined reference to 'regcomp'
  1212. or sendmail gives an error about a regular expression with:
  1213. pattern-compile-error: : Operation not applicable
  1214. Your libc does not include a running version of POSIX-regex. Use
  1215. librx or regex.o from the GNU Free Software Foundation,
  1216. ftp://ftp.gnu.org/pub/gnu/rx-?.?.tar.gz or
  1217. ftp://ftp.gnu.org/pub/gnu/regex-?.?.tar.gz.
  1218. You can also use the regex-lib by Henry Spencer,
  1219. ftp://ftp.funet.fi/pub/languages/C/spencer/regex.shar.gz
  1220. Make sure, your compiler reads regex.h from the distribution,
  1221. not from /usr/include, otherwise sendmail will dump a core.
  1222. +--------------+
  1223. | MANUAL PAGES |
  1224. +--------------+
  1225. The manual pages have been written against the -man macros, and
  1226. should format correctly with any reasonable *roff.
  1227. +-----------------+
  1228. | DEBUGGING HOOKS |
  1229. +-----------------+
  1230. As of 8.6.5, sendmail daemons will catch a SIGUSR1 signal and log
  1231. some debugging output (logged at LOG_DEBUG severity).  The
  1232. information dumped is:
  1233.  * The value of the $j macro.
  1234.  * A warning if $j is not in the set $=w.
  1235.  * A list of the open file descriptors.
  1236.  * The contents of the connection cache.
  1237.  * If ruleset 89 is defined, it is evaluated and the results printed.
  1238. This allows you to get information regarding the runtime state of the
  1239. daemon on the fly.  This should not be done too frequently, since
  1240. the process of rewriting may lose memory which will not be recovered.
  1241. Also, ruleset 89 may call non-reentrant routines, so there is a small
  1242. non-zero probability that this will cause other problems.  It is
  1243. really only for debugging serious problems.
  1244. A typical formulation of ruleset 89 would be:
  1245. R$* $@ $>0 some test address
  1246. +-----------------------------+
  1247. | DESCRIPTION OF SOURCE FILES |
  1248. +-----------------------------+
  1249. The following list describes the files in this directory:
  1250. Makefile.m4 A template for constructing a makefile based on the
  1251. information in the devtools directory.
  1252. README This file.
  1253. TRACEFLAGS My own personal list of the trace flags -- not guaranteed
  1254. to be particularly up to date.
  1255. alias.c Does name aliasing in all forms.
  1256. arpadate.c A subroutine which creates ARPANET standard dates.
  1257. bf.h Buffered file I/O function declarations.
  1258. bf_portable.c Stub routines for systems lacking the Torek stdio library.
  1259. bf_portable.h Data structure and function declarations for bf_portable.c.
  1260. bf_torek.c Routines to implement memory-buffered file system using
  1261. hooks provided by Torek stdio library.
  1262. bf_torek.h Data structure and function declarations for bf_torek.c.
  1263. clock.c Routines to implement real-time oriented functions
  1264. in sendmail -- e.g., timeouts.
  1265. collect.c The routine that actually reads the mail into a temp
  1266. file.  It also does a certain amount of parsing of
  1267. the header, etc.
  1268. conf.c The configuration file.  This contains information
  1269. that is presumed to be quite static and non-
  1270. controversial, or code compiled in for efficiency
  1271. reasons.  Most of the configuration is in sendmail.cf.
  1272. conf.h Configuration that must be known everywhere.
  1273. convtime.c A routine to sanely process times.
  1274. daemon.c Routines to implement daemon mode.  This version is
  1275. specifically for Berkeley 4.1 IPC.
  1276. deliver.c Routines to deliver mail.
  1277. domain.c Routines that interface with DNS (the Domain Name
  1278. System).
  1279. err.c Routines to print error messages.
  1280. envelope.c Routines to manipulate the envelope structure.
  1281. headers.c Routines to process message headers.
  1282. macro.c The macro expander.  This is used internally to
  1283. insert information from the configuration file.
  1284. main.c The main routine to sendmail.  This file also
  1285. contains some miscellaneous routines.
  1286. map.c Support for database maps.
  1287. mci.c Routines that handle mail connection information caching.
  1288. mime.c MIME conversion routines.
  1289. parseaddr.c The routines which do address parsing.
  1290. queue.c Routines to implement message queueing.
  1291. readcf.c The routine that reads the configuration file and
  1292. translates it to internal form.
  1293. recipient.c Routines that manipulate the recipient list.
  1294. safefile.c Routines to do careful checking of file modes and permissions
  1295. when opening or creating files.
  1296. savemail.c Routines which save the letter on processing errors.
  1297. sendmail.h Main header file for sendmail.
  1298. shmticklib.c Routines for shared memory counters.
  1299. snprintf.c Routines to manipulate strings but prevent buffer overflows.
  1300. srvrsmtp.c Routines to implement server SMTP.
  1301. stab.c Routines to manage the symbol table.
  1302. stats.c Routines to collect and post the statistics.
  1303. statusd_shm.h Data structure and function declarations for shmticklib.c.
  1304. sysexits.c List of error messages associated with error codes
  1305. in sysexits.h.
  1306. timers.c Routines to provide microtimers.
  1307. timers.h Data structure and function declarations for timers.h.
  1308. trace.c The trace package.  These routines allow setting and
  1309. testing of trace flags with a high granularity.
  1310. udb.c The user database interface module.
  1311. usersmtp.c Routines to implement user SMTP.
  1312. util.c Some general purpose routines used by sendmail.
  1313. version.c The version number and information about this
  1314. version of sendmail.  Theoretically, this gets
  1315. modified on every change.
  1316. Eric Allman
  1317. (Version $Revision: 8.248 $, last update $Date: 1999/12/02 23:05:54 $ )