135062Sbostic# Copyright (c) 1983 Eric P. Allman 248582Sbostic# Copyright (c) 1988 The Regents of the University of California. 333728Sbostic# All rights reserved. 433728Sbostic# 548582Sbostic# %sccs.include.redist.sh% 633728Sbostic# 7*57943Seric# @(#)READ_ME 6.3 (Berkeley) 02/12/93 833728Sbostic# 948582Sbostic 109881SericThis directory contains the source files for sendmail. 115369Seric 129881SericFor installation instructions, please read the document ../doc/op.me: 135369Seric 149881Seric nroff -me ../doc/op.me 155369Seric 1657418SericThe Makefile is for the new Berkeley make, available from ftp.uu.net 1757418Sericin the directory /systems/unix/bsd-sources/usr.bin/make. There is 1857418Sericalso a Makefile.dist which is much less clever, but works on the old 1957418Serictraditional make. You can use this using: 2057418Seric 2157418Seric make -f Makefile.dist 2257418Seric 23*57943SericIf you are compiling on SunOS, you must use -Bstatic -- if you do not, 24*57943Sericfrozen configuration files fail in bizarre ways and you will open up 25*57943Sericseveral security holes. 26*57943Seric 27*57943SericIf you use both -DDBM and -DNEWDB, you must delete the module ndbm.o 28*57943Sericfrom libdb.a. This compatibility module maps ndbm calls into DB 29*57943Sericcalls, and breaks things rather badly. 30*57943Seric 319881SericThe following list describes the files in this directory: 325369Seric 3357418SericMakefile The makefile used here; this version only works with 3457418Seric the new Berkeley make. 3557418SericMakefile.dist A trimmed down version of the makefile that works with 3657418Seric the old make. 375369SericREAD_ME This file. 385369SericTODO New features to be put in (maybe) at some time. 395369SericVersion.c The version number and information about this 405369Seric version of sendmail. Theoretically, this gets 415369Seric modified on every change. 425369Sericalias.c Does name aliasing in all forms. 439881Sericarpadate.c A subroutine which creates ARPANET standard dates. 449881Sericclock.c Routines to implement real-time oriented functions 459881Seric in sendmail -- e.g., timeouts. 465369Sericcollect.c The routine that actually reads the mail into a temp 475369Seric file. It also does a certain amount of parsing of 485369Seric the header, etc. 495369Sericconf.c The configuration file. This contains information 505369Seric that is presumed to be quite static and non- 515369Seric controversial, or code compiled in for efficiency 525369Seric reasons. Most of the configuration is in sendmail.cf. 539881Sericconf.h Configuration that must be known everywhere. 545369Sericconvtime.c A routine to sanely process times. 559881Sericdaemon.c Routines to implement daemon mode. This version is 569881Seric specifically for Berkeley 4.1 IPC. 575369Sericdeliver.c Routines to deliver mail. 585369Sericerr.c Routines to print error messages. 599881Sericenvelope.c Routines to manipulate the envelope structure. 605369Sericheaders.c Routines to process message headers. 615369Sericmacro.c The macro expander. This is used internally to 625369Seric insert information from the configuration file. 635369Sericmain.c The main routine to sendmail. This file also 645369Seric contains some miscellaneous routines. 659881Sericparseaddr.c The routines which do address parsing. 665369Sericqueue.c Routines to implement message queueing. 675369Sericreadcf.c The routine that reads the configuration file and 685369Seric translates it to internal form. 699881Sericrecipient.c Routines that manipulate the recipient list. 705369Sericsavemail.c Routines which save the letter on processing errors. 715369Sericsendmail.h Main header file for sendmail. 725369Sericsrvrsmtp.c Routines to implement server SMTP. 735369Sericstab.c Routines to manage the symbol table. 745369Sericstats.c Routines to collect and post the statistics. 755369Sericsysexits.c List of error messages associated with error codes 765369Seric in sysexits.h. 779881Serictrace.c The trace package. These routines allow setting and 789881Seric testing of trace flags with a high granularity. 799881Serictrace.h Definitions needed for the trace package. 805369Sericusersmtp.c Routines to implement user SMTP. 815369Sericutil.c Some general purpose routines used by sendmail. 825369Sericversion.c A master file for Version.c -- it may not exist in 835369Seric your distribution. 845369Seric 855369SericEric Allman 865369Seric 87*57943Seric(Version 6.3, last update 02/12/93 11:51:08) 88