xref: /freebsd/contrib/sendmail/RELEASE_NOTES (revision af9557fdd1de47bcfff61cccba2930e93ec4e69b)
1c2aa98e2SPeter Wemm			SENDMAIL RELEASE NOTES
2af9557fdSGregory Neil Shapiro      $Id: RELEASE_NOTES,v 8.1777.2.6 2006/06/05 22:32:41 ca Exp $
3c2aa98e2SPeter Wemm
4c2aa98e2SPeter Wemm
5c2aa98e2SPeter WemmThis listing shows the version of the sendmail binary, the version
6c2aa98e2SPeter Wemmof the sendmail configuration files, the date of release, and a
7c2aa98e2SPeter Wemmsummary of the changes in that release.
8c2aa98e2SPeter Wemm
9af9557fdSGregory Neil Shapiro8.13.7/8.13.7	2006/06/14
10af9557fdSGregory Neil Shapiro	A malformed MIME structure with many parts can cause sendmail to
11af9557fdSGregory Neil Shapiro		crash while trying to send a mail due to a stack overflow,
12af9557fdSGregory Neil Shapiro		e.g., if the stack size is limited (ulimit -s).  This
13af9557fdSGregory Neil Shapiro		happens because the recursion of the function mime8to7()
14af9557fdSGregory Neil Shapiro		was not restricted.  The function is called for MIME 8 to
15af9557fdSGregory Neil Shapiro		7 bit conversion and also to enforce MaxMimeHeaderLength.
16af9557fdSGregory Neil Shapiro		To work around this problem, recursive calls are limited to
17af9557fdSGregory Neil Shapiro		a depth of MAXMIMENESTING (20); message content after this
18af9557fdSGregory Neil Shapiro		limit is treated as opaque and is not checked further.
19af9557fdSGregory Neil Shapiro		Problem noted by Frank Sheiness.
20af9557fdSGregory Neil Shapiro	The changes to the I/O layer in 8.13.6 caused a regression for
21af9557fdSGregory Neil Shapiro		SASL mechanisms that use the security layer, e.g.,
22af9557fdSGregory Neil Shapiro		DIGEST-MD5.  Problem noted by Robert Stampfli.
23af9557fdSGregory Neil Shapiro	If a timeout occurs while reading a message (during the DATA phase)
24af9557fdSGregory Neil Shapiro		a df file might have been left behind in the queue.
25af9557fdSGregory Neil Shapiro		This was another side effect of the changes to the I/O
26af9557fdSGregory Neil Shapiro		layer made in 8.13.6.
27af9557fdSGregory Neil Shapiro	Several minor problems have been fixed that were found by a
28af9557fdSGregory Neil Shapiro		Coverity scan of sendmail 8 as part of the NetBSD
29af9557fdSGregory Neil Shapiro		distribution. See http://scan.coverity.com/
30af9557fdSGregory Neil Shapiro		Note: the scan generated also a lot of "false positives",
31af9557fdSGregory Neil Shapiro		e.g., "error" reports about situations that cannot happen.
32af9557fdSGregory Neil Shapiro		Most of those code places are marked with lint(1) comments
33af9557fdSGregory Neil Shapiro		like NOTREACHED, but Coverity does not understand those.
34af9557fdSGregory Neil Shapiro		Hence an explicit assertion has been added in some cases
35af9557fdSGregory Neil Shapiro		to avoid those false positives.
36af9557fdSGregory Neil Shapiro	If the start of the sendmail daemon fails due to a configuration
37af9557fdSGregory Neil Shapiro		error then in some cases shared memory segments or pid
38af9557fdSGregory Neil Shapiro		files were not removed.
39af9557fdSGregory Neil Shapiro	If DSN support is disabled via access_db, then related ESMTP
40af9557fdSGregory Neil Shapiro		parameters for MAIL and RCPT should be rejected.  Problem
41af9557fdSGregory Neil Shapiro		reported by Akihiro Sagawa.
42af9557fdSGregory Neil Shapiro	Enabling zlib compression in OpenSSL 0.9.8[ab] breaks the padding
43af9557fdSGregory Neil Shapiro		bug work-around.  Hence if sendmail is linked against
44af9557fdSGregory Neil Shapiro		either of these versions and compression is available,
45af9557fdSGregory Neil Shapiro		the padding bug work-around is turned off.  Based on
46af9557fdSGregory Neil Shapiro		patch from Victor Duchovni of Morgan Stanley.
47af9557fdSGregory Neil Shapiro	CONFIG: FEATURE(`dnsbl') and FEATURE(`enhdnsbl') used
48af9557fdSGregory Neil Shapiro		blackholes.mail-abuse.org as default domain for lookups,
49af9557fdSGregory Neil Shapiro		however, that list is no longer available.  To avoid
50af9557fdSGregory Neil Shapiro		further problems, no default value is available anymore,
51af9557fdSGregory Neil Shapiro		but an argument must be specified.
52af9557fdSGregory Neil Shapiro	Portability:
53af9557fdSGregory Neil Shapiro		Fix compilation on OSF/1 for sfsasl.c.  Patch from
54af9557fdSGregory Neil Shapiro		Pieter Bowman of the University of Utah.
55af9557fdSGregory Neil Shapiro
564e4196cbSGregory Neil Shapiro8.13.6/8.13.6	2006/03/22
574e4196cbSGregory Neil Shapiro	SECURITY: Replace unsafe use of setjmp(3)/longjmp(3) in the server
584e4196cbSGregory Neil Shapiro		and client side of sendmail with timeouts in the libsm I/O
594e4196cbSGregory Neil Shapiro		layer and fix problems in that code.  Also fix handling of
604e4196cbSGregory Neil Shapiro		a buffer in sm_syslog() which could have been used as an
614e4196cbSGregory Neil Shapiro		attack vector to exploit the unsafe handling of
624e4196cbSGregory Neil Shapiro		setjmp(3)/longjmp(3) in combination with signals.
634e4196cbSGregory Neil Shapiro		Problem detected by Mark Dowd of ISS X-Force.
644e4196cbSGregory Neil Shapiro	Handle theoretical integer overflows that could triggered if
654e4196cbSGregory Neil Shapiro		the server accepted headers larger than the maximum
664e4196cbSGregory Neil Shapiro		(signed) integer value.  This is prevented in the default
674e4196cbSGregory Neil Shapiro		configuration by restricting the size of a header, and on
684e4196cbSGregory Neil Shapiro		most machines memory allocations would fail before reaching
694e4196cbSGregory Neil Shapiro		those values.  Problems found by Phil Brass of ISS.
704e4196cbSGregory Neil Shapiro	If a server returns 421 for an RSET command when trying to start
714e4196cbSGregory Neil Shapiro		another transaction in a session while sending mail, do
724e4196cbSGregory Neil Shapiro		not trigger an internal consistency check.  Problem found
734e4196cbSGregory Neil Shapiro		by Allan E Johannesen of Worcester Polytechnic Institute.
744e4196cbSGregory Neil Shapiro	If a server returns a 5xy error code (other than 501) in response
754e4196cbSGregory Neil Shapiro		to a STARTTLS command despite the fact that it advertised
764e4196cbSGregory Neil Shapiro		STARTTLS and that the code is not valid according to RFC
774e4196cbSGregory Neil Shapiro		2487 treat it nevertheless as a permanent failure instead
784e4196cbSGregory Neil Shapiro		of a protocol error (which has been changed to a
794e4196cbSGregory Neil Shapiro		temporary error in 8.13.5).  Problem reported by Jeff
804e4196cbSGregory Neil Shapiro		A. Earickson of Colby College.
814e4196cbSGregory Neil Shapiro	Clear SMTP state after a HELO/EHLO command.  Patch from John
824e4196cbSGregory Neil Shapiro		Myers of Proofpoint.
834e4196cbSGregory Neil Shapiro	Observe MinQueueAge option when gathering entries from the queue
844e4196cbSGregory Neil Shapiro		for sorting etc instead of waiting until the entries are
854e4196cbSGregory Neil Shapiro		processed.  Patch from Brian Fundakowski Feldman.
864e4196cbSGregory Neil Shapiro	Set up TLS session cache to properly handle clients that try to
874e4196cbSGregory Neil Shapiro		resume a stored TLS session.
884e4196cbSGregory Neil Shapiro	Properly count the number of (direct) child processes such that
894e4196cbSGregory Neil Shapiro		a configured value (MaxDaemonChildren) is not exceeded.
904e4196cbSGregory Neil Shapiro		Based on patch from Attila Bruncsak.
914e4196cbSGregory Neil Shapiro	LIBMILTER: Remove superfluous backslash in macro definition
924e4196cbSGregory Neil Shapiro		(libmilter.h).  Based on patch from Mike Kupfer of
934e4196cbSGregory Neil Shapiro		Sun Microsystems.
944e4196cbSGregory Neil Shapiro	LIBMILTER: Don't try to set SO_REUSEADDR on UNIX domain sockets.
954e4196cbSGregory Neil Shapiro		This generates an error message from libmilter on
964e4196cbSGregory Neil Shapiro		Solaris, though other systems appear to just discard the
974e4196cbSGregory Neil Shapiro		request silently.
984e4196cbSGregory Neil Shapiro	LIBMILTER: Deal with sigwait(2) implementations that return
994e4196cbSGregory Neil Shapiro		-1 and set errno instead of returning an error code
1004e4196cbSGregory Neil Shapiro		directly.  Patch from Chris Adams of HiWAAY Informations
1014e4196cbSGregory Neil Shapiro		Services.
1024e4196cbSGregory Neil Shapiro	Portability:
1034e4196cbSGregory Neil Shapiro		Fix compilation checks for closefrom(3) and statvfs(2)
1044e4196cbSGregory Neil Shapiro		in NetBSD.  Problem noted by S. Moonesamy, patch from
1054e4196cbSGregory Neil Shapiro		Andrew Brown.
1064e4196cbSGregory Neil Shapiro
1074e4196cbSGregory Neil Shapiro8.13.5/8.13.5	2005/09/16
1084e4196cbSGregory Neil Shapiro	Store the filesystem identifier of the df/ subdirectory (if it
1094e4196cbSGregory Neil Shapiro		exists) in an internal structure instead of the base
1104e4196cbSGregory Neil Shapiro		directory.  This structure is used decide whether there
1114e4196cbSGregory Neil Shapiro		is enough free disk space when selecting a queue, hence
1124e4196cbSGregory Neil Shapiro		without this change queue selection could fail if a df/
1134e4196cbSGregory Neil Shapiro		subdirectory exists and is on a different filesystem
1144e4196cbSGregory Neil Shapiro		than the base directory.
1154e4196cbSGregory Neil Shapiro	Use the queue index of the df file (instead of the qf file) for
1164e4196cbSGregory Neil Shapiro		checking whether a link(2) operation can be used to split
1174e4196cbSGregory Neil Shapiro		an envelope across queue groups.  Problem found by
1184e4196cbSGregory Neil Shapiro		Werner Wiethege.
1194e4196cbSGregory Neil Shapiro	If the list of items in the queue is larger than the maximum
1204e4196cbSGregory Neil Shapiro		number of items to process, sort the queue first and
1214e4196cbSGregory Neil Shapiro		then cut the list off instead of the other way around.
1224e4196cbSGregory Neil Shapiro		Patch from Matej Vela of Rudjer Boskovic Institute.
1234e4196cbSGregory Neil Shapiro	Fix helpfile to show full entry for ETRN.  Problem noted by
1244e4196cbSGregory Neil Shapiro		Penelope Fudd, patch from Neil Rickert of Northern Illinois
1254e4196cbSGregory Neil Shapiro		University.
1264e4196cbSGregory Neil Shapiro	FallbackSmartHost should also be tried on temporary errors.
1274e4196cbSGregory Neil Shapiro		From John Beck of Sun Microsystems.
1284e4196cbSGregory Neil Shapiro	When a server responds with 421 to the STARTTLS command then treat
1294e4196cbSGregory Neil Shapiro		it as a temporary error, not as protocol error.  Problem
1304e4196cbSGregory Neil Shapiro		noted by Andrey J. Melnikoff.
1314e4196cbSGregory Neil Shapiro	Properly define two functions in libsm as static because their
1324e4196cbSGregory Neil Shapiro		prototype used static too.  Patch from Peter Klein.
1334e4196cbSGregory Neil Shapiro	Fix syntax errors in helpfile for MAIL and RCPT commands.
1344e4196cbSGregory Neil Shapiro	LIBMILTER: When smfi_replacebody() is called with bodylen equals
1354e4196cbSGregory Neil Shapiro		zero then do not silently ignore that call.  Patch from
1364e4196cbSGregory Neil Shapiro		Gurusamy Sarathy of Active State.
1374e4196cbSGregory Neil Shapiro	LIBMILTER: Recognize "421" also in a multi-line reply to terminate
1384e4196cbSGregory Neil Shapiro		the SMTP session with that error.  Fix from Brian Kantor.
1394e4196cbSGregory Neil Shapiro	Portability: New option HASSNPRINTF which can be set if the OS
1404e4196cbSGregory Neil Shapiro			has a properly working snprintf(3) to get rid
1414e4196cbSGregory Neil Shapiro			of the last two (safe) sprintf(3) calls in the
1424e4196cbSGregory Neil Shapiro			source code.
1434e4196cbSGregory Neil Shapiro		Add support for AIX 5.3.
1444e4196cbSGregory Neil Shapiro		Add support for SunOS 5.11 (aka Solaris 11).
1454e4196cbSGregory Neil Shapiro		Add support for Darwin 8.x.  Patch from Lyndon Nerenberg.
1464e4196cbSGregory Neil Shapiro		OpenBSD 3.7 has removed support for NETISO.
1474e4196cbSGregory Neil Shapiro	CONFIG: Add OSTYPE(freebsd6) for FreeBSD 6.X.
1484e4196cbSGregory Neil Shapiro		Set DontBlameSendmail to AssumeSafeChown and
1494e4196cbSGregory Neil Shapiro			GroupWritableDirPathSafe for OSTYPE(darwin).
1504e4196cbSGregory Neil Shapiro			Patch from Lyndon Nerenberg.
1514e4196cbSGregory Neil Shapiro		Some features still used 4.7.1 as enhanced status code which
1524e4196cbSGregory Neil Shapiro			was supposed to be eliminated in 8.13.0 because some
1534e4196cbSGregory Neil Shapiro			broken systems misinterpret it as a permanent error.
1544e4196cbSGregory Neil Shapiro			Patch from Matej Vela of Rudjer Boskovic Institute.
1554e4196cbSGregory Neil Shapiro		Some default values in a generated cf file did not match
1564e4196cbSGregory Neil Shapiro			the defaults in the sendmail binary.  Problem noted
1574e4196cbSGregory Neil Shapiro			by Mike Pechkin.
1584e4196cbSGregory Neil Shapiro	New Files:
1594e4196cbSGregory Neil Shapiro		cf/ostype/freebsd6.m4
1604e4196cbSGregory Neil Shapiro		devtools/OS/AIX.5.3
1614e4196cbSGregory Neil Shapiro		devtools/OS/Darwin.8.x
1624e4196cbSGregory Neil Shapiro		devtools/OS/SunOS.5.11
1634e4196cbSGregory Neil Shapiro		include/sm/time.h
1644e4196cbSGregory Neil Shapiro
16513d88268SGregory Neil Shapiro8.13.4/8.13.4	2005/03/27
16613d88268SGregory Neil Shapiro	The bug fixes in 8.13.3 for connection handling uncovered a
16713d88268SGregory Neil Shapiro		different error which could result in connections that
16813d88268SGregory Neil Shapiro		stay in CLOSE_WAIT state due to a variable that was not
16913d88268SGregory Neil Shapiro		properly initialized.  Problem noted by Michael Sims.
17013d88268SGregory Neil Shapiro	Deal with empty hostnames in hostsignature().  This bug could lead
17113d88268SGregory Neil Shapiro		to an endless loop when doing LMTP deliveries to another
17213d88268SGregory Neil Shapiro		host.  Problem first reported by Martin Lathoud and
17313d88268SGregory Neil Shapiro		tracked down by Gael Roualland.
17413d88268SGregory Neil Shapiro	Make sure return parameters are initialized in getmxrr().  Problem
17513d88268SGregory Neil Shapiro		found by Gael Roualland using valgrind.
17613d88268SGregory Neil Shapiro	If shared memory is used and the RunAsUser option is set, then the
17713d88268SGregory Neil Shapiro		owner and group of the shared memory segment is set to
17813d88268SGregory Neil Shapiro		the ids specified RunAsUser and the access mode is set
17913d88268SGregory Neil Shapiro		to 0660 to allow for updates by sendmail processes.
18013d88268SGregory Neil Shapiro	The number of queue entries that is (optionally) kept in shared
18113d88268SGregory Neil Shapiro		memory was wrong in some cases, e.g., envelope splitting
18213d88268SGregory Neil Shapiro		and bounce generation.
18313d88268SGregory Neil Shapiro	Undo a change made in 8.13.0 to silently truncate long strings
18413d88268SGregory Neil Shapiro		in address rewriting because the message can be triggered
18513d88268SGregory Neil Shapiro		for header checks where long strings are legitimate.
18613d88268SGregory Neil Shapiro		Problem reported by Mary Verge DeSisto, and tracked
18713d88268SGregory Neil Shapiro		down with the help of John Beck of Sun Microsystems.
18813d88268SGregory Neil Shapiro	The internal stab map did not obey the -m flag.  Patch from
18913d88268SGregory Neil Shapiro		Rob McMahon of Warwick University, England.
19013d88268SGregory Neil Shapiro	The socket map did not obey the -f flag.  Problem noted by
19113d88268SGregory Neil Shapiro		Dan Ringdahl, forwarded by Andrzej Filip.
19213d88268SGregory Neil Shapiro	The addition of LDAP recursion in 8.13.0 broke enforcement of
19313d88268SGregory Neil Shapiro		the LDAP map -1 argument which tells the MTA to only
19413d88268SGregory Neil Shapiro		return success if and only if a single LDAP match is found.
19513d88268SGregory Neil Shapiro	Add additional error checks in the MTA for milter communication
19613d88268SGregory Neil Shapiro		to avoid a possible segmentation fault.  Based on patch
19713d88268SGregory Neil Shapiro		by Joe Maimon.
19813d88268SGregory Neil Shapiro	Do not trigger an assertion if X509_digest() returns success but
19913d88268SGregory Neil Shapiro		does not assign a value to its output parameter.  Based
20013d88268SGregory Neil Shapiro		on patch by Brian Kantor.
20113d88268SGregory Neil Shapiro	Add more checks when resetting internal AUTH data (applies only
20213d88268SGregory Neil Shapiro		to Cyrus SASL version 2).  Otherwise an SMTP session might
20313d88268SGregory Neil Shapiro		be dropped after an AUTH failure.
20413d88268SGregory Neil Shapiro	Portability:
20513d88268SGregory Neil Shapiro		Add LA_LONGLONG as valid LA_TYPE type for systems that use
20613d88268SGregory Neil Shapiro			"long long" to read load average data, e.g.,
20713d88268SGregory Neil Shapiro			AIX 5.1 in 32 bit mode.  Note: this has to be set
20813d88268SGregory Neil Shapiro			"by hand", it is not (yet) automatically detected.
20913d88268SGregory Neil Shapiro			Problem noted by Burak Bilen.
21013d88268SGregory Neil Shapiro		Use socklen_t for accept(), etc. on AIX 5.x.  This should
21113d88268SGregory Neil Shapiro			fix problems when compiling in 64 bit mode.
21213d88268SGregory Neil Shapiro			Problem first reported by Harry Meiert of
21313d88268SGregory Neil Shapiro			University of Bremen.
21413d88268SGregory Neil Shapiro	New Files:
21513d88268SGregory Neil Shapiro		include/sm/sem.h
21613d88268SGregory Neil Shapiro		libsm/sem.c
21713d88268SGregory Neil Shapiro		libsm/t-sem.c
21813d88268SGregory Neil Shapiro
219b6bacd31SGregory Neil Shapiro8.13.3/8.13.3	2005/01/11
220b6bacd31SGregory Neil Shapiro	Enhance handling of I/O errors, especially EOF, when STARTTLS
221b6bacd31SGregory Neil Shapiro		is active.
222b6bacd31SGregory Neil Shapiro	Make sure a connection is not reused after it has been closed
223b6bacd31SGregory Neil Shapiro		due to a 421 error.  Problem found by Allan E Johannesen
224b6bacd31SGregory Neil Shapiro		of Worcester Polytechnic Institute.
225b6bacd31SGregory Neil Shapiro	Avoid triggering an assertion when sendmail is interrupted while
226b6bacd31SGregory Neil Shapiro		closing a connection.  Problem found by Allan E Johannesen
227b6bacd31SGregory Neil Shapiro		of Worcester Polytechnic Institute.
228b6bacd31SGregory Neil Shapiro	Regression: a change in 8.13.2 caused sendmail not to try the
229b6bacd31SGregory Neil Shapiro		next MX host (or FallbackMXhost if configured) when, at
230b6bacd31SGregory Neil Shapiro		connection open, the current server returns a 4xy or 5xy
231b6bacd31SGregory Neil Shapiro		SMTP reply code.  Problem noted by Mark Tranchant.
232b6bacd31SGregory Neil Shapiro
233b6bacd31SGregory Neil Shapiro8.13.2/8.13.2	2004/12/15
234b6bacd31SGregory Neil Shapiro	Do not split the first header even if it exceeds the internal
235b6bacd31SGregory Neil Shapiro		buffer size.  Previously a part of such a header would
236b6bacd31SGregory Neil Shapiro		end up in the body of the message.  Problem noted by
237b6bacd31SGregory Neil Shapiro		Simple Nomad of BindView.
238b6bacd31SGregory Neil Shapiro	Do not complain about "cataddr: string too long" when checking
239b6bacd31SGregory Neil Shapiro		headers that do not contain RFC 2822 addresses.
240b6bacd31SGregory Neil Shapiro		Problem noted by Rich Graves of Brandeis University.
241b6bacd31SGregory Neil Shapiro	If a server returns a 421 reply to the RSET command between
242b6bacd31SGregory Neil Shapiro		message deliveries, do not attempt to deliver any more
243b6bacd31SGregory Neil Shapiro		messages on that connection.  This prevents bogus "Bad
244b6bacd31SGregory Neil Shapiro		file number" recipient status.  Problem noted by
245b6bacd31SGregory Neil Shapiro		Allan E Johannesen of Worcester Polytechnic Institute.
246b6bacd31SGregory Neil Shapiro	Allow trailing white space in EHLO command as recommended by RFC
247b6bacd31SGregory Neil Shapiro		2821.  Problem noted by Ralph Santagato of SBC Services.
248b6bacd31SGregory Neil Shapiro	Deal with clients which use AUTH but negotiate a smaller buffer size
249b6bacd31SGregory Neil Shapiro		for data exchanges than the value used by sendmail, e.g.,
250b6bacd31SGregory Neil Shapiro		Cyrus IMAP lmtp server.  Based on patch by Jamie Clark.
251b6bacd31SGregory Neil Shapiro	When passing ESMTP arguments for RCPT to a milter, do not cut
252b6bacd31SGregory Neil Shapiro		them off at a comma.  Problem noted by Krzysztof Oledzki.
253b6bacd31SGregory Neil Shapiro	Add more logging to milter change header functions to
254b6bacd31SGregory Neil Shapiro		complement existing logging.  Based on patch from
255b6bacd31SGregory Neil Shapiro		Gurusamy Sarathy of Active State.
256b6bacd31SGregory Neil Shapiro	Include <lber.h> in include/sm/config.h when LDAPMAP is defined.
257b6bacd31SGregory Neil Shapiro		Patch from Edgar Hoch of the University of Stuttgart.
258b6bacd31SGregory Neil Shapiro	Fix DNS lookup if IPv6 is enabled when converting an IP address
259b6bacd31SGregory Neil Shapiro		to a hostname for use with SASL.  Problem noted by Ken Jones;
260b6bacd31SGregory Neil Shapiro		patch from Hajimu UMEMOTO.
261b6bacd31SGregory Neil Shapiro	CONFIG: For consistency enable MODIFY_MAILER_FLAGS for the prog
262b6bacd31SGregory Neil Shapiro		mailer.  Patch from John Beck of Sun Microsystems.
263b6bacd31SGregory Neil Shapiro	LIBMILTER: It was possible that xxfi_abort() was called after
264b6bacd31SGregory Neil Shapiro		xxfi_eom() for a message if some timeouts were triggered.
265b6bacd31SGregory Neil Shapiro		Patch from Alexey Kravchuk.
266b6bacd31SGregory Neil Shapiro	LIBMILTER: Slightly rearrange mutex use in listener.c to allow
267b6bacd31SGregory Neil Shapiro		different threads to call smfi_opensocket() and smfi_main().
268b6bacd31SGregory Neil Shapiro		Patch from Jordan Ritter of Cloudmark.
269b6bacd31SGregory Neil Shapiro	MAIL.LOCAL: Properly terminate MBDB before exiting.  Problem
270b6bacd31SGregory Neil Shapiro		noted by Nelson Fung.
271b6bacd31SGregory Neil Shapiro	MAIL.LOCAL: make strip-mail.local used a wrong path to access
272b6bacd31SGregory Neil Shapiro		mail.local.  Problem noted by William Park.
273b6bacd31SGregory Neil Shapiro	VACATION: Properly terminate MBDB before exiting.  Problem noted
274b6bacd31SGregory Neil Shapiro		by Nelson Fung.
275b6bacd31SGregory Neil Shapiro	Portability:
276b6bacd31SGregory Neil Shapiro		Add support for DragonFly BSD.
277b6bacd31SGregory Neil Shapiro	New Files:
278b6bacd31SGregory Neil Shapiro		cf/ostype/dragonfly.m4
279b6bacd31SGregory Neil Shapiro		devtools/OS/DragonFly
280b6bacd31SGregory Neil Shapiro		include/sm/os/sm_os_dragonfly.h
281b6bacd31SGregory Neil Shapiro	Deleted Files:
282b6bacd31SGregory Neil Shapiro		libsm/vsscanf.c
283b6bacd31SGregory Neil Shapiro
284e92d3f3fSGregory Neil Shapiro8.13.1/8.13.1	2004/07/30
285e92d3f3fSGregory Neil Shapiro	Using the default AliasFile ldap: specification would cause the
286e92d3f3fSGregory Neil Shapiro		objectClasses of the LDAP response to be included in the
287e92d3f3fSGregory Neil Shapiro		alias expansion.  Problem noted by Brenden Conte of
288e92d3f3fSGregory Neil Shapiro		Rensselaer Polytechnic Institute.
289e92d3f3fSGregory Neil Shapiro	Fix support for a fallback smart host for system where DNS is
290e92d3f3fSGregory Neil Shapiro		(partially) available. From John Beck of Sun Microsystems.
291e92d3f3fSGregory Neil Shapiro	Fix SuperSafe=PostMilter behavior when a milter replaces a body
292e92d3f3fSGregory Neil Shapiro		but the data file is not yet stored on disk because it is
293e92d3f3fSGregory Neil Shapiro		smaller than the size of the memory buffer.  Problem noted
294e92d3f3fSGregory Neil Shapiro		by David Russell.
295e92d3f3fSGregory Neil Shapiro	Fix certificate revocation list support; if a CRL was specified
296e92d3f3fSGregory Neil Shapiro		but the other side presented a cert that was signed by
297e92d3f3fSGregory Neil Shapiro		a different (trusted) CA than the one which issued the CRL,
298e92d3f3fSGregory Neil Shapiro		verification would always fail.  Problem noted by Al Smith.
299e92d3f3fSGregory Neil Shapiro	Run mailer programs as the RunAsUser when RunAsUser is set and
300e92d3f3fSGregory Neil Shapiro		the F=S mailer flag is set without a U= mailer equate.
301e92d3f3fSGregory Neil Shapiro		Problem noted by John Gardiner Myers of Proofpoint.
302e92d3f3fSGregory Neil Shapiro	${nbadrcpts} was off by one if BadRcptThrottle is zero.
303e92d3f3fSGregory Neil Shapiro		Patch from Sung-hoon Choi of DreamWiz Inc.
304e92d3f3fSGregory Neil Shapiro	CONFIG: Emit a warning if FEATURE(`access_db') is used after
305e92d3f3fSGregory Neil Shapiro		FEATURE(`greet_pause') because then the latter will not
306e92d3f3fSGregory Neil Shapiro		use the access map.  Note: if no default value is given
307e92d3f3fSGregory Neil Shapiro		for FEATURE(`greet_pause') then it issues an error if
308e92d3f3fSGregory Neil Shapiro		FEATURE(`access_db') is not specified before it.
309e92d3f3fSGregory Neil Shapiro		Problem noted by Alexander Dalloz of University of
310e92d3f3fSGregory Neil Shapiro		Bielefeld.
311e92d3f3fSGregory Neil Shapiro	CONFIG: Invoke ruleset Local_greet_pause if FEATURE(`greet_pause')
312e92d3f3fSGregory Neil Shapiro		is used to give more flexibility for local changes.
313e92d3f3fSGregory Neil Shapiro	Portability:
314e92d3f3fSGregory Neil Shapiro		Fix a 64 bit problem in the socket map code.  Problem
315e92d3f3fSGregory Neil Shapiro			noted by Geoff Adams.
316e92d3f3fSGregory Neil Shapiro		NetBSD 2.0F has closefrom(3).  Patch from Andrew Brown.
317e92d3f3fSGregory Neil Shapiro		NetBSD can use sysctl(3) to get the number of CPUs in
318e92d3f3fSGregory Neil Shapiro			a system.  Patch from Andrew Brown.
319e92d3f3fSGregory Neil Shapiro		Add a README file in doc/op/ to explain potential
320e92d3f3fSGregory Neil Shapiro			incompatibilities with various *roff related
321e92d3f3fSGregory Neil Shapiro			tools.  Problem tracked down by Per Hedeland.
322e92d3f3fSGregory Neil Shapiro	New Files:
323e92d3f3fSGregory Neil Shapiro		doc/op/README
324e92d3f3fSGregory Neil Shapiro
325e92d3f3fSGregory Neil Shapiro8.13.0/8.13.0	2004/06/20
326e92d3f3fSGregory Neil Shapiro	Do not include AUTH data in a bounce to avoid leaking confidential
327e92d3f3fSGregory Neil Shapiro		information.  See also cf/README about MSP and the section
328e92d3f3fSGregory Neil Shapiro		"Providing SMTP AUTH Data when sendmail acts as Client".
329e92d3f3fSGregory Neil Shapiro		Problem noted by Neil Rickert of Northern Illinois
330e92d3f3fSGregory Neil Shapiro		University.
331e92d3f3fSGregory Neil Shapiro	Fix compilation error in libsm/clock.c for -D_FFR_SLEEP_USE_SELECT=n
332e92d3f3fSGregory Neil Shapiro		and -DSM_CONF_SETITIMER=0.  Problem noted by Juergen Georgi
333e92d3f3fSGregory Neil Shapiro		of RUS University of Stuttgart.
334e92d3f3fSGregory Neil Shapiro	Fix bug in conversion from 8bit to quoted-printable. Problem found
335e92d3f3fSGregory Neil Shapiro		by Christof Haerens, patch from Per Hedeland.
336e92d3f3fSGregory Neil Shapiro	Add support for LDAP recursion based on types given to attribute
337e92d3f3fSGregory Neil Shapiro		specifications in an LDAP map definition.  This allows
338e92d3f3fSGregory Neil Shapiro		LDAP queries to return a new query, a DN, or an LDAP
339e92d3f3fSGregory Neil Shapiro		URL which will in turn be queried.  See the ``LDAP
340e92d3f3fSGregory Neil Shapiro		Recursion'' section of doc/op/op.me for more information.
341e92d3f3fSGregory Neil Shapiro		Based on patch from Andrew Baucom.
342e92d3f3fSGregory Neil Shapiro	Extend the default LDAP specifications for AliasFile
343e92d3f3fSGregory Neil Shapiro		(O AliasFile=ldap:) and file classes (F{X}@LDAP) to
344e92d3f3fSGregory Neil Shapiro		include support for LDAP recursion via new attributes.
345e92d3f3fSGregory Neil Shapiro		See ``USING LDAP FOR ALIASES, MAPS, and CLASSES'' section
346e92d3f3fSGregory Neil Shapiro		of cf/README for more information.
347e92d3f3fSGregory Neil Shapiro	New option for LDAP maps: the -w option allows you to specify the
348e92d3f3fSGregory Neil Shapiro		LDAP API/protocol version to use.  The default depends on
349e92d3f3fSGregory Neil Shapiro		the LDAP library.
350e92d3f3fSGregory Neil Shapiro	New option for LDAP maps: the -H option allows you to specify an
351e92d3f3fSGregory Neil Shapiro		LDAP URI instead of specifying the LDAP server via -h host
352e92d3f3fSGregory Neil Shapiro		and -p port.  This also allows for the use of LDAP over
353e92d3f3fSGregory Neil Shapiro		SSL and connections via named sockets if your LDAP
354e92d3f3fSGregory Neil Shapiro		library supports it.
355e92d3f3fSGregory Neil Shapiro	New compile time flag SM_CONF_LDAP_INITIALIZE: set this if
356e92d3f3fSGregory Neil Shapiro		ldap_initialize(3) is available (and LDAPMAP is set).
357e92d3f3fSGregory Neil Shapiro	If MaxDaemonChildren is set and a command is repeated too often
358e92d3f3fSGregory Neil Shapiro		during a SMTP session then terminate it just like it is
359e92d3f3fSGregory Neil Shapiro		done for too many bad SMTP commands.
360e92d3f3fSGregory Neil Shapiro	Basic connection rate control support has been added: the daemon
361e92d3f3fSGregory Neil Shapiro		maintains the number of incoming connections per client
362e92d3f3fSGregory Neil Shapiro		IP address and total in the macros {client_rate} and
363e92d3f3fSGregory Neil Shapiro		{total_rate}, respectively.  These macros can be used
364e92d3f3fSGregory Neil Shapiro		in the cf file to impose connection rate limits.
365e92d3f3fSGregory Neil Shapiro		A new option ConnectionRateWindowSize (default: 60s)
366e92d3f3fSGregory Neil Shapiro		determines the length of the interval for which the
367e92d3f3fSGregory Neil Shapiro		number of connections is stored.  Based on patch from
368e92d3f3fSGregory Neil Shapiro		Jose Marcio Martins da Cruz, Ecole des Mines de Paris.
369e92d3f3fSGregory Neil Shapiro	Add optional protection from open proxies and SMTP slammers which
370e92d3f3fSGregory Neil Shapiro		send SMTP traffic without waiting for the SMTP greeting.
371e92d3f3fSGregory Neil Shapiro		If enabled by the new ruleset greet_pause (see
372e92d3f3fSGregory Neil Shapiro		FEATURE(`greet_pause')), sendmail will wait the specified
373e92d3f3fSGregory Neil Shapiro		amount of time before sending the initial 220 SMTP
374e92d3f3fSGregory Neil Shapiro		greeting.  If any traffic is received before then, a 554
375e92d3f3fSGregory Neil Shapiro		SMTP response is sent and all SMTP commands are rejected
376e92d3f3fSGregory Neil Shapiro		during that connection.
377e92d3f3fSGregory Neil Shapiro	If 32 NOOP (or unknown/bad) commands are issued by a client the SMTP
378e92d3f3fSGregory Neil Shapiro		server could sleep for a very long time.  Fix based on
379e92d3f3fSGregory Neil Shapiro		patch from Tadashi Kobayashi of IIJ.
380e92d3f3fSGregory Neil Shapiro	Fix a potential memory leak in persistent queue runners if the
381e92d3f3fSGregory Neil Shapiro		number of entries in the queue exceeds the limit of jobs.
382e92d3f3fSGregory Neil Shapiro		Problem noted by Steve Hubert of University of Washington.
383e92d3f3fSGregory Neil Shapiro	Do not use 4.7.1 as enhanced status code because some broken systems
384e92d3f3fSGregory Neil Shapiro		misinterpret it as a permanent error.
385e92d3f3fSGregory Neil Shapiro	New value for SuperSafe: PostMilter which will delay fsync() until
386e92d3f3fSGregory Neil Shapiro		all milters accepted the mail.  This can increase
387e92d3f3fSGregory Neil Shapiro		performance if many mails are rejected by milters due to
388e92d3f3fSGregory Neil Shapiro		body scans.  Based on patch from David F. Skoll.
389e92d3f3fSGregory Neil Shapiro	New macro {msg_id} which contains the value of the Message-Id:
390e92d3f3fSGregory Neil Shapiro		header, whether provided by the client or generated by
391e92d3f3fSGregory Neil Shapiro		sendmail.
392e92d3f3fSGregory Neil Shapiro	New macro {client_connections} which contains the number of open
393e92d3f3fSGregory Neil Shapiro		connections in the SMTP server for the client IP address.
394e92d3f3fSGregory Neil Shapiro		Based on patch from Jose Marcio Martins da Cruz, Ecole des
395e92d3f3fSGregory Neil Shapiro		Mines de Paris.
396e92d3f3fSGregory Neil Shapiro	sendmail will now remove its pidfile when it exits.  This was done
397e92d3f3fSGregory Neil Shapiro		to prevent confusion caused by running sendmail stop
398e92d3f3fSGregory Neil Shapiro		scripts two or more times, where the second and subsequent
399e92d3f3fSGregory Neil Shapiro		runs would report misleading error messages about sendmail's
400e92d3f3fSGregory Neil Shapiro		pid no longer existing.  See section 1.3.15 of doc/op/op.me
401e92d3f3fSGregory Neil Shapiro		for a discussion of the implications of this, including
402e92d3f3fSGregory Neil Shapiro		how to correct broken scripts which may have depended on
403e92d3f3fSGregory Neil Shapiro		the old behavior.  From John Beck of Sun Microsystems.
404e92d3f3fSGregory Neil Shapiro	Support per-daemon input filter lists which override the default
405e92d3f3fSGregory Neil Shapiro		filter list specified in InputMailFilters.  The filters
406e92d3f3fSGregory Neil Shapiro		can be listed in the I= equate of DaemonPortOptions.
407e92d3f3fSGregory Neil Shapiro	Do not add all domain prefixes of the hostname to class 'w'.  If
408e92d3f3fSGregory Neil Shapiro		your configuration relies on this behavior, you have to
409e92d3f3fSGregory Neil Shapiro		add those names to class 'w' yourself.  Problem noted
410e92d3f3fSGregory Neil Shapiro		by Sander Eerkes.
411e92d3f3fSGregory Neil Shapiro	Support message quarantining in the mail queue.  Quarantined
412e92d3f3fSGregory Neil Shapiro		messages are not run on normal queue displays or runs
413e92d3f3fSGregory Neil Shapiro		unless specifically requested with -qQ.  Quarantined queue
414e92d3f3fSGregory Neil Shapiro		files are named with an hf prefix instead of a qf prefix.
415e92d3f3fSGregory Neil Shapiro	The -q command line option now can specify which queue to display
416e92d3f3fSGregory Neil Shapiro		or run.  -qQ operates on quarantined queue items.  -qL
417e92d3f3fSGregory Neil Shapiro		operates on lost queue items.
418e92d3f3fSGregory Neil Shapiro	Restricted mail queue runs and displays can be done based on the
419e92d3f3fSGregory Neil Shapiro		quarantined reason using -qQtext to run or display
420e92d3f3fSGregory Neil Shapiro		quarantined items if the quarantine reason contains the
421e92d3f3fSGregory Neil Shapiro		given text.  Similarly, -q!Qtext will run or display
422e92d3f3fSGregory Neil Shapiro		quarantined items which do not have the given text in the
423e92d3f3fSGregory Neil Shapiro		quarantine reason.
424e92d3f3fSGregory Neil Shapiro	Items in the queue can be quarantined or unquarantined using the
425e92d3f3fSGregory Neil Shapiro		new -Q option.  See doc/op/op.me for more information.
426e92d3f3fSGregory Neil Shapiro	When displaying the quarantine mailq with 'mailq -qQ', the
427e92d3f3fSGregory Neil Shapiro		quarantine reason is shown in a new line prefixed by
428e92d3f3fSGregory Neil Shapiro		"QUARANTINE:".
429e92d3f3fSGregory Neil Shapiro	A new error code for the $#error mailer, $@ quarantine, can be used
430e92d3f3fSGregory Neil Shapiro		to quarantine messages in check_* (except check_compat) and
431e92d3f3fSGregory Neil Shapiro		header check rulesets.  The $: of the mailer triplet will
432e92d3f3fSGregory Neil Shapiro		be used for the quarantine reason.
433e92d3f3fSGregory Neil Shapiro	Add a new quarantine count to the mailstats collected.
434e92d3f3fSGregory Neil Shapiro	Add a new macro ${quarantine} which is the quarantine reason for a
435e92d3f3fSGregory Neil Shapiro		message if it is quarantined.
436e92d3f3fSGregory Neil Shapiro	New map type "socket" for a trivial query protocol over UNIX domain
437e92d3f3fSGregory Neil Shapiro		or TCP sockets (requires compile time option SOCKETMAP).
438e92d3f3fSGregory Neil Shapiro		See sendmail/README and doc/op/op.me for details as well as
439e92d3f3fSGregory Neil Shapiro		socketmapServer.pl and socketmapClient.pl in contrib.
440e92d3f3fSGregory Neil Shapiro		Code donated by Bastiaan Bakker of LifeLine Networks.
441e92d3f3fSGregory Neil Shapiro	Define new macro ${client_ptr} which holds the result of the PTR
442e92d3f3fSGregory Neil Shapiro		lookup for the client IP address.  Note: this is the same
443e92d3f3fSGregory Neil Shapiro		as ${client_name} if and only if ${client_resolve} is OK.
444e92d3f3fSGregory Neil Shapiro	Add a new macro ${nbadrcpts} which contains the number of bad
445e92d3f3fSGregory Neil Shapiro		recipients received so far in a transaction.
446e92d3f3fSGregory Neil Shapiro	Call check_relay with the value of ${client_name} to deal with bogus
447e92d3f3fSGregory Neil Shapiro		DNS entries.  See also FEATURE(`use_client_ptr').  Problem
448e92d3f3fSGregory Neil Shapiro		noted by Kai Schlichting.
449e92d3f3fSGregory Neil Shapiro	Treat Delivery-Receipt-To: headers the same as Return-Receipt-To:
450e92d3f3fSGregory Neil Shapiro		headers (turn them into DSNs).  Delivery-Receipt-To: is
451e92d3f3fSGregory Neil Shapiro		apparently used by SIMS (Sun Internet Mail System).
452e92d3f3fSGregory Neil Shapiro	Enable connection caching for LPC mailers.  Patch from Christophe
453e92d3f3fSGregory Neil Shapiro		Wolfhugel of France Telecom Oleane.
454e92d3f3fSGregory Neil Shapiro	Do not silently truncate long strings in address rewriting.
455e92d3f3fSGregory Neil Shapiro	Add support for Cyrus SASL version 2.  From Kenneth Murchison of
456e92d3f3fSGregory Neil Shapiro		Oceana Matrix Ltd.
457e92d3f3fSGregory Neil Shapiro	Add a new AuthOption=m flag to require the use of mechanisms which
458e92d3f3fSGregory Neil Shapiro		support mutual authentication.  From Kenneth Murchison of
459e92d3f3fSGregory Neil Shapiro		Oceana Matrix Ltd.
460e92d3f3fSGregory Neil Shapiro	Fix logging of TLS related problems (introduced in 8.12.11).
461e92d3f3fSGregory Neil Shapiro	The macros {auth_author} and {auth_authen} are stored in xtext
462e92d3f3fSGregory Neil Shapiro		format just like the STARTTLS related macros to avoid
463e92d3f3fSGregory Neil Shapiro		problems with parsing them.  Problem noted by Pierangelo
464e92d3f3fSGregory Neil Shapiro		Masarati of SysNet s.n.c.
465e92d3f3fSGregory Neil Shapiro	New option AuthRealm to set the authentication realm that is
466e92d3f3fSGregory Neil Shapiro		passed to the Cyrus SASL library.  Patch from Gary Mills
467e92d3f3fSGregory Neil Shapiro		of the University of Manitoba.
468e92d3f3fSGregory Neil Shapiro	Enable AUTH mechanism EXTERNAL if STARTTLS verification was
469e92d3f3fSGregory Neil Shapiro		successful, otherwise relaying would be allowed if
470e92d3f3fSGregory Neil Shapiro		EXTERNAL is listed in TRUST_AUTH_MECH() and STARTTLS
471e92d3f3fSGregory Neil Shapiro		is active.
472e92d3f3fSGregory Neil Shapiro	Add basic support for certificate revocation lists.  Note: if a
473e92d3f3fSGregory Neil Shapiro		CRLFile is specified but the file is unusable, STARTTLS
474e92d3f3fSGregory Neil Shapiro		is disabled.  Based on patch by Ralf Hornik.
475e92d3f3fSGregory Neil Shapiro	Enable workaround for inconsistent Cyrus SASLv1 API for mechanisms
476e92d3f3fSGregory Neil Shapiro		DIGEST-MD5 and LOGIN.
477e92d3f3fSGregory Neil Shapiro	Write pid to file also if sendmail only acts as persistent queue
478e92d3f3fSGregory Neil Shapiro		runner.  Proposed by Gary Mills of the University of Manitoba.
479e92d3f3fSGregory Neil Shapiro	Keep daemon pid file(s) locked so other daemons don't try to
480e92d3f3fSGregory Neil Shapiro		overwrite each other's pid files.
481e92d3f3fSGregory Neil Shapiro	Increase maximum length of logfile fields for {cert_subject} and
482e92d3f3fSGregory Neil Shapiro		{cert_issuer} from 128 to 256.  Requested by Christophe
483e92d3f3fSGregory Neil Shapiro		Wolfhugel of France Telecom.
484e92d3f3fSGregory Neil Shapiro	Log the TLS verification message on the STARTTLS= log line at
485e92d3f3fSGregory Neil Shapiro		LogLevel 12 or higher.
486e92d3f3fSGregory Neil Shapiro	If the MSP is invoked with the verbose option (-v) then it will
487e92d3f3fSGregory Neil Shapiro		try to use the SMTP command VERB to propagate this option
488e92d3f3fSGregory Neil Shapiro		to the MTA which in turn will show the delivery just like
489e92d3f3fSGregory Neil Shapiro		it was done before the default 8.12 separation of MSP and
490e92d3f3fSGregory Neil Shapiro		MTA.  Based on patch by Per Hedeland.
491e92d3f3fSGregory Neil Shapiro	If a daemon is refusing connections for longer than the time specified
492e92d3f3fSGregory Neil Shapiro		by the new option RejectLogInterval (default: 3 hours) due
493e92d3f3fSGregory Neil Shapiro		to high load, log this information.  Patch from John Beck
494e92d3f3fSGregory Neil Shapiro		of Sun Microsystems.
495e92d3f3fSGregory Neil Shapiro	Remove the ability for non-trusted users to raise the value of
496e92d3f3fSGregory Neil Shapiro		CheckpointInterval on the command line.
497e92d3f3fSGregory Neil Shapiro	New mailer flag 'B' to strip leading backslashes, which is a
498e92d3f3fSGregory Neil Shapiro		subset of the functionality of the 's' flag.
499e92d3f3fSGregory Neil Shapiro	New mailer flag 'W' to ignore long term host status information.
500e92d3f3fSGregory Neil Shapiro		Patch from Juergen Georgi of RUS University of Stuttgart.
501e92d3f3fSGregory Neil Shapiro	Enable generic mail filter API (milter) by default.  To turn
502e92d3f3fSGregory Neil Shapiro		it off, add -DMILTER=0 to the compile time options.
503e92d3f3fSGregory Neil Shapiro	An internal SMTP session discard flag was lost after an RSET/HELO/EHLO
504e92d3f3fSGregory Neil Shapiro		causing subsequent messages to be sent instead of being
505e92d3f3fSGregory Neil Shapiro		discarded.  This also caused milter callbacks to be called
506e92d3f3fSGregory Neil Shapiro		out of order after the SMTP session was reset.
507e92d3f3fSGregory Neil Shapiro	New option RequiresDirfsync to turn off the compile time flag
508e92d3f3fSGregory Neil Shapiro		REQUIRES_DIR_FSYNC at runtime.  See sendmail/README for
509e92d3f3fSGregory Neil Shapiro		further information.
510e92d3f3fSGregory Neil Shapiro	New command line option -D logfile to send debug output to
511e92d3f3fSGregory Neil Shapiro		the indicated log file instead of stdout.
512e92d3f3fSGregory Neil Shapiro	Add Timeout.queuereturn.dsn and Timeout.queuewarn.dsn to control
513e92d3f3fSGregory Neil Shapiro		queue return and warning times for delivery status
514e92d3f3fSGregory Neil Shapiro		notifications.
515e92d3f3fSGregory Neil Shapiro	New queue sort order option: 'n'one for not sorting the queue entries
516e92d3f3fSGregory Neil Shapiro		at all.
517e92d3f3fSGregory Neil Shapiro	Several more return values for ruleset srv_features have been added
518e92d3f3fSGregory Neil Shapiro		to enable/disable certain features in the server per
519e92d3f3fSGregory Neil Shapiro		connection.  See doc/op/op.me for details.
520e92d3f3fSGregory Neil Shapiro	Support for SMTP over SSL (smtps), activated by Modifier=s
521e92d3f3fSGregory Neil Shapiro		for DaemonPortOptions.
522e92d3f3fSGregory Neil Shapiro	Continue with DNS lookups on ECONNREFUSED and TRY_AGAIN when
523e92d3f3fSGregory Neil Shapiro		trying to canonify hostnames.  Suggested by Neil Rickert
524e92d3f3fSGregory Neil Shapiro		of Northern Illinois University.
525e92d3f3fSGregory Neil Shapiro	Add support for a fallback smart host (option FallbackSmartHost) to
526e92d3f3fSGregory Neil Shapiro		be tried as a last resort after all other fallbacks.  This
527e92d3f3fSGregory Neil Shapiro		is designed for sites with partial DNS (e.g., an accurate
528e92d3f3fSGregory Neil Shapiro		view of inside the company, but an incomplete view of
529e92d3f3fSGregory Neil Shapiro		outside).  From John Beck of Sun Microsystems.
530e92d3f3fSGregory Neil Shapiro	Enable timeout for STARTTLS even if client does not start the TLS
531e92d3f3fSGregory Neil Shapiro		handshake.  Based on patch by Andrey J. Melnikoff.
532e92d3f3fSGregory Neil Shapiro	Remove deprecated -v option for PH map, use -k instead.  Patch from
533e92d3f3fSGregory Neil Shapiro		Mark Roth of the University of Illinois at Urbana-Champaign.
534e92d3f3fSGregory Neil Shapiro	libphclient is version 1.2.x by default, if version 1.1.x is required
535e92d3f3fSGregory Neil Shapiro		then compile with -DNPH_VERSION=10100.  Patch from Mark Roth
536e92d3f3fSGregory Neil Shapiro		of the University of Illinois at Urbana-Champaign.
537e92d3f3fSGregory Neil Shapiro	Add Milter.macros.eom, allowing macros to be sent to milter
538e92d3f3fSGregory Neil Shapiro		applications for use in the xxfi_eom() callback.
539e92d3f3fSGregory Neil Shapiro	New macro {time} which contains the output of the time(3) function,
540e92d3f3fSGregory Neil Shapiro		i.e., the number of seconds since 0 hours, 0 minutes,
541e92d3f3fSGregory Neil Shapiro		0 seconds, January 1, 1970, Coordinated Universal Time (UTC).
542e92d3f3fSGregory Neil Shapiro	If check_relay sets the reply code to "421" the SMTP server will
543e92d3f3fSGregory Neil Shapiro		terminate the SMTP session with a 421 error message.
544e92d3f3fSGregory Neil Shapiro	Get rid of dead code that tried to access the environment variable
545e92d3f3fSGregory Neil Shapiro		HOSTALIASES.
546e92d3f3fSGregory Neil Shapiro	Deprecate the use of ErrorMode=write.  To enable this in 8.13
547e92d3f3fSGregory Neil Shapiro		compile with -DUSE_TTYPATH=1.
548e92d3f3fSGregory Neil Shapiro	Header check rulesets using $>+ (do not strip comments) will get
549e92d3f3fSGregory Neil Shapiro		the header value passed in without balancing quotes,
550e92d3f3fSGregory Neil Shapiro		parentheses, and angle brackets.  Based on patch from
551e92d3f3fSGregory Neil Shapiro		Oleg Bulyzhin.
552e92d3f3fSGregory Neil Shapiro	Do not complain and fix up unbalanced quotes, parentheses, and
553e92d3f3fSGregory Neil Shapiro		angle brackets when reading in rulesets.  This allows
554e92d3f3fSGregory Neil Shapiro		rules to be written for header checks to catch strings
555e92d3f3fSGregory Neil Shapiro		that contain quotes, parentheses, and/or angle brackets.
556e92d3f3fSGregory Neil Shapiro		Based on patch from Oleg Bulyzhin.
557e92d3f3fSGregory Neil Shapiro	Do not close socket when accept(2) in the daemon encounters
558e92d3f3fSGregory Neil Shapiro		some temporary errors like ECONNABORTED.
559e92d3f3fSGregory Neil Shapiro	Added list of CA certificates that are used by members of the
560e92d3f3fSGregory Neil Shapiro		sendmail consortium, see CACerts.
561e92d3f3fSGregory Neil Shapiro	Portability:
562e92d3f3fSGregory Neil Shapiro		Two new compile options have been added:
563e92d3f3fSGregory Neil Shapiro			HASCLOSEFROM	System has closefrom(3).
564e92d3f3fSGregory Neil Shapiro			HASFDWALK	System has fdwalk(3).
565e92d3f3fSGregory Neil Shapiro			Based on patch from John Beck of Sun Microsystems.
566e92d3f3fSGregory Neil Shapiro		The Linux kernel version 2.4 series has a broken flock() so
567e92d3f3fSGregory Neil Shapiro			change to using fcntl() locking until they can fix
568e92d3f3fSGregory Neil Shapiro			it.  Be sure to update other sendmail related
569e92d3f3fSGregory Neil Shapiro			programs to match locking techniques.
570e92d3f3fSGregory Neil Shapiro		New compile time option NEEDINTERRNO which should be set
571e92d3f3fSGregory Neil Shapiro			if <errno.h> does not declare errno itself.
572e92d3f3fSGregory Neil Shapiro		Support for UNICOS/mk and UNICOS/mp added, some changes for
573e92d3f3fSGregory Neil Shapiro			UNICOS.  Patches contributed by Aaron Davis and
574e92d3f3fSGregory Neil Shapiro			Brian Ginsbach, Cray Inc., and Manu Mahonen of
575e92d3f3fSGregory Neil Shapiro			Center for Scientific Computing.
576e92d3f3fSGregory Neil Shapiro		Add support for Darwin 7.0/Mac OS X 10.3 (a.k.a. Panther).
577e92d3f3fSGregory Neil Shapiro		Extend support to Darwin 7.x/Mac OS X 10.3 (a.k.a. Panther).
578e92d3f3fSGregory Neil Shapiro		Remove path from compiler definition for Interix because
579e92d3f3fSGregory Neil Shapiro			Interix 3.0 and 3.5 put gcc in different locations.
580e92d3f3fSGregory Neil Shapiro			Also use <sys/mkdev.h> to get the correct
581e92d3f3fSGregory Neil Shapiro			major()/minor() definitions.  Based on feedback
582e92d3f3fSGregory Neil Shapiro			from Mark Funkenhauser.
583e92d3f3fSGregory Neil Shapiro	CONFIG: Add support for LDAP recursion to the default LDAP searches
584e92d3f3fSGregory Neil Shapiro		for maps via new attributes.  See the ``USING LDAP FOR
585e92d3f3fSGregory Neil Shapiro		ALIASES, MAPS, and CLASSES'' section of cf/README and
586e92d3f3fSGregory Neil Shapiro		cf/sendmail.schema for more information.
587e92d3f3fSGregory Neil Shapiro	CONFIG: Make sure confTRUSTED_USER is valid even if confRUN_AS_USER
588e92d3f3fSGregory Neil Shapiro		is of the form "user:group" when used for submit.mc.
589e92d3f3fSGregory Neil Shapiro		Problem noted by Carsten P. Gehrke, patch from Neil Rickert
590e92d3f3fSGregory Neil Shapiro		of Northern Illinois University.
591e92d3f3fSGregory Neil Shapiro	CONFIG: Add a new access DB value of QUARANTINE:reason which
592e92d3f3fSGregory Neil Shapiro		instructs the check_* (except check_compat) to quarantine
593e92d3f3fSGregory Neil Shapiro		the message using the given reason.
594e92d3f3fSGregory Neil Shapiro	CONFIG: Use "dns -R A" as map type for dnsbl (just as for enhdnsbl)
595e92d3f3fSGregory Neil Shapiro		instead of "host" to avoid problem with looking up other
596e92d3f3fSGregory Neil Shapiro		DNS records than just A.
597e92d3f3fSGregory Neil Shapiro	CONFIG: New option confCONNECTION_RATE_WINDOW_SIZE to define the
598e92d3f3fSGregory Neil Shapiro		length of the interval for which the number of incoming
599e92d3f3fSGregory Neil Shapiro		connections is maintained.
600e92d3f3fSGregory Neil Shapiro	CONFIG: New FEATURE(`ratecontrol') to set the limits for connection
601e92d3f3fSGregory Neil Shapiro		rate control for individual hosts or nets.
602e92d3f3fSGregory Neil Shapiro	CONFIG: New FEATURE(`conncontrol') to set the limits for the
603e92d3f3fSGregory Neil Shapiro		number of open SMTP connections for individual hosts or nets.
604e92d3f3fSGregory Neil Shapiro	CONFIG: New FEATURE(`greet_pause') enables open proxy and SMTP
605e92d3f3fSGregory Neil Shapiro		slamming protection described above.  The feature can
606e92d3f3fSGregory Neil Shapiro		take an argument specifying the milliseconds to wait and/or
607e92d3f3fSGregory Neil Shapiro		use the access database to look the pause time based on
608e92d3f3fSGregory Neil Shapiro		client hostname, domain, IP address, or subnet.
609e92d3f3fSGregory Neil Shapiro	CONFIG: New FEATURE(`use_client_ptr') to have check_relay use
610e92d3f3fSGregory Neil Shapiro		$&{client_ptr} as its first argument.  This is useful for
611e92d3f3fSGregory Neil Shapiro		rejections based on the unverified hostname of client,
612e92d3f3fSGregory Neil Shapiro		which turns on the same behavior as in earlier sendmail
613e92d3f3fSGregory Neil Shapiro		versions when delay_checks was not in use.  See also entry
614e92d3f3fSGregory Neil Shapiro		above about check_relay being invoked with ${client_name}.
615e92d3f3fSGregory Neil Shapiro	CONFIG: New option confREJECT_LOG_INTERVAL to specify the log
616e92d3f3fSGregory Neil Shapiro		interval when refusing connections for this long.
617e92d3f3fSGregory Neil Shapiro	CONFIG: Remove quotes around usage of confREJECT_MSG; in some cases
618e92d3f3fSGregory Neil Shapiro		this requires a change in a mc file.  Requested by
619e92d3f3fSGregory Neil Shapiro		Ted Roberts of Electronic Data Systems.
620e92d3f3fSGregory Neil Shapiro	CONFIG: New option confAUTH_REALM to set the authentication realm
621e92d3f3fSGregory Neil Shapiro		that is passed to the Cyrus SASL library.  Patch from
622e92d3f3fSGregory Neil Shapiro		Gary Mills of the University of Manitoba.
623e92d3f3fSGregory Neil Shapiro	CONFIG: Rename the (internal) classes {tls}/{src} to {Tls}/{Src}
624e92d3f3fSGregory Neil Shapiro		to follow the naming conventions.
625e92d3f3fSGregory Neil Shapiro	CONFIG: Add a third optional argument to local_lmtp to specify
626e92d3f3fSGregory Neil Shapiro		the A= argument.
627e92d3f3fSGregory Neil Shapiro	CONFIG: Remove the f flag from the default mailer flags of
628e92d3f3fSGregory Neil Shapiro		local_lmtp.
629e92d3f3fSGregory Neil Shapiro	CONFIG: New option confREQUIRES_DIR_FSYNC to turn off the compile
630e92d3f3fSGregory Neil Shapiro		time flag REQUIRES_DIR_FSYNC at runtime.
631e92d3f3fSGregory Neil Shapiro	CONFIG: New LOCAL_UUCP macro to insert rules into the generated
632e92d3f3fSGregory Neil Shapiro		cf file at the same place where MAILER(`uucp') inserts
633e92d3f3fSGregory Neil Shapiro		its rules.
634e92d3f3fSGregory Neil Shapiro	CONFIG: New options confTO_QUEUERETURN_DSN and confTO_QUEUEWARN_DSN
635e92d3f3fSGregory Neil Shapiro		to control queue return and warning times for delivery
636e92d3f3fSGregory Neil Shapiro		status notifications.
637e92d3f3fSGregory Neil Shapiro	CONFIG: New option confFALLBACK_SMARTHOST to define FallbackSmartHost.
638e92d3f3fSGregory Neil Shapiro	CONFIG: Add the mc file which has been used to create the cf
639e92d3f3fSGregory Neil Shapiro		file to the end of the cf file when using make in cf/cf/.
640e92d3f3fSGregory Neil Shapiro		Patch from Richard Rognlie.
641e92d3f3fSGregory Neil Shapiro	CONFIG: FEATURE(nodns) has been removed, it was a no-op since 8.9.
642e92d3f3fSGregory Neil Shapiro		Use ServiceSwitchFile to turn off DNS lookups, see
643e92d3f3fSGregory Neil Shapiro		doc/op/op.me.
644e92d3f3fSGregory Neil Shapiro	CONFIG: New option confMILTER_MACROS_EOM (sendmail Milter.macros.eom
645e92d3f3fSGregory Neil Shapiro		option) defines macros to be sent to milter applications for
646e92d3f3fSGregory Neil Shapiro		use in the xxfi_eom() callback.
647e92d3f3fSGregory Neil Shapiro	CONFIG: New option confCRL to specify file which contains
648e92d3f3fSGregory Neil Shapiro		certificate revocations lists.
649e92d3f3fSGregory Neil Shapiro	CONFIG: Add a new value (sendertoo) for the third argument to
650e92d3f3fSGregory Neil Shapiro		FEATURE(`ldap_routing') which will reject the SMTP
651e92d3f3fSGregory Neil Shapiro		MAIL From: command if the sender address doesn't exist
652e92d3f3fSGregory Neil Shapiro		in LDAP.  See cf/README for more information.
653e92d3f3fSGregory Neil Shapiro	CONFIG: Add a fifth argument to FEATURE(`ldap_routing') which
654e92d3f3fSGregory Neil Shapiro		instructs the rulesets on whether or not to do a domain
655e92d3f3fSGregory Neil Shapiro		lookup if a full address lookup doesn't match.  See cf/README
656e92d3f3fSGregory Neil Shapiro		for more information.
657e92d3f3fSGregory Neil Shapiro	CONFIG: Add a sixth argument to FEATURE(`ldap_routing') which
658e92d3f3fSGregory Neil Shapiro		instructs the rulesets on whether or not to queue the mail
659e92d3f3fSGregory Neil Shapiro		or give an SMTP temporary error if the LDAP server can't be
660e92d3f3fSGregory Neil Shapiro		reached.  See cf/README for more information.  Based on
661e92d3f3fSGregory Neil Shapiro		patch from Billy Ray Miller of Caterpillar.
662e92d3f3fSGregory Neil Shapiro	CONFIG: Experimental support for MTAMark, see cf/README for details.
663e92d3f3fSGregory Neil Shapiro	CONFIG: New option confMESSAGEID_HEADER to define a different
664e92d3f3fSGregory Neil Shapiro		Message-Id: header format.  Patch from Bastiaan Bakker
665e92d3f3fSGregory Neil Shapiro		of LifeLine Networks.
666e92d3f3fSGregory Neil Shapiro	CONTRIB: New version of cidrexpand which uses Net::CIDR.  From
667e92d3f3fSGregory Neil Shapiro		Derek J. Balling.
668e92d3f3fSGregory Neil Shapiro	CONTRIB: oldbind.compat.c has been removed due to security problems.
669e92d3f3fSGregory Neil Shapiro		Found by code inspection done by Reasoning, Inc.
670e92d3f3fSGregory Neil Shapiro	DEVTOOLS: Add an example file for devtools/Site/, contributed
671e92d3f3fSGregory Neil Shapiro		by Neil Rickert of Northern Illinois University.
672e92d3f3fSGregory Neil Shapiro	LIBMILTER: Add new function smfi_quarantine() which allows the
673e92d3f3fSGregory Neil Shapiro		filter's EOM routine to quarantine the current message.
674e92d3f3fSGregory Neil Shapiro		Filters which use this function must include the
675e92d3f3fSGregory Neil Shapiro		SMFIF_QUARANTINE flag in the registered smfiDesc structure.
676e92d3f3fSGregory Neil Shapiro	LIBMILTER: If a milter sets the reply code to "421", the SMTP server
677e92d3f3fSGregory Neil Shapiro		will terminate the SMTP session with that error.
678e92d3f3fSGregory Neil Shapiro	LIBMILTER: Upon filter shutdown, libmilter will not remove a
679e92d3f3fSGregory Neil Shapiro		named socket in the file system if it is running as root.
680e92d3f3fSGregory Neil Shapiro	LIBMILTER: Add new function smfi_progress() which allows the filter
681e92d3f3fSGregory Neil Shapiro		to notify the MTA that an EOM operation is still in progress,
682e92d3f3fSGregory Neil Shapiro		resetting the timeout.
683e92d3f3fSGregory Neil Shapiro	LIBMILTER: Add new function smfi_opensocket() which allows the filter
684e92d3f3fSGregory Neil Shapiro		to attempt to establish the interface socket, and detect
685e92d3f3fSGregory Neil Shapiro		failure to do so before calling smfi_main().
686e92d3f3fSGregory Neil Shapiro	LIBMILTER: Add new function smfi_setmlreply() which allows the
687e92d3f3fSGregory Neil Shapiro		filter to return a multi-line SMTP reply.
688e92d3f3fSGregory Neil Shapiro	LIBMILTER: Deal with more temporary errors in accept() by ignoring
689e92d3f3fSGregory Neil Shapiro		them instead of stopping after too many occurred.
690e92d3f3fSGregory Neil Shapiro		Suggested by James Carlson of Sun Microsystems.
691e92d3f3fSGregory Neil Shapiro	LIBMILTER: Fix a descriptor leak in the sample program found in
692e92d3f3fSGregory Neil Shapiro		docs/sample.html.  Reported by Dmitry Adamushko.
693e92d3f3fSGregory Neil Shapiro	LIBMILTER: The sample program also needs to use SMFIF_ADDRCPT.
694e92d3f3fSGregory Neil Shapiro		Reported by Carl Byington of 510 Software Group.
695e92d3f3fSGregory Neil Shapiro	LIBMILTER: Document smfi_stop() and smfi_setdbg().  Patches
696e92d3f3fSGregory Neil Shapiro		from Bryan Costales.
697e92d3f3fSGregory Neil Shapiro	LIBMILTER: New compile time option SM_CONF_POLL; define this if
698e92d3f3fSGregory Neil Shapiro		poll(2) should be used instead of select(2).
699e92d3f3fSGregory Neil Shapiro	LIBMILTER: New function smfi_insheader() and related protocol
700e92d3f3fSGregory Neil Shapiro		amendments to support header insertion operations.
701e92d3f3fSGregory Neil Shapiro	MAIL.LOCAL: Add support for hashed mail directories, see
702e92d3f3fSGregory Neil Shapiro		mail.local/README.  Contributed by Chris Adams of HiWAAY
703e92d3f3fSGregory Neil Shapiro		Informations Services.
704e92d3f3fSGregory Neil Shapiro	MAILSTATS: Display quarantine message counts.
705e92d3f3fSGregory Neil Shapiro	MAKEMAP: Add new flag -D to specify the comment character to use
706e92d3f3fSGregory Neil Shapiro		instead of '#'.
707e92d3f3fSGregory Neil Shapiro	VACATION: Add new flag -j to auto-respond to messages regardless of
708e92d3f3fSGregory Neil Shapiro		whether or not the recipient is listed in the To: or Cc:
709e92d3f3fSGregory Neil Shapiro		headers.
710e92d3f3fSGregory Neil Shapiro	VACATION: Add new flag -R to specify the envelope sender address
711e92d3f3fSGregory Neil Shapiro		for the auto-response message.
712e92d3f3fSGregory Neil Shapiro	New Files:
713e92d3f3fSGregory Neil Shapiro		CACerts
714e92d3f3fSGregory Neil Shapiro		cf/feature/conncontrol.m4
715e92d3f3fSGregory Neil Shapiro		cf/feature/greet_pause.m4
716e92d3f3fSGregory Neil Shapiro		cf/feature/mtamark.m4
717e92d3f3fSGregory Neil Shapiro		cf/feature/ratecontrol.m4
718e92d3f3fSGregory Neil Shapiro		cf/feature/use_client_ptr.m4
719e92d3f3fSGregory Neil Shapiro		cf/ostype/unicos.m4
720e92d3f3fSGregory Neil Shapiro		cf/ostype/unicosmk.m4
721e92d3f3fSGregory Neil Shapiro		cf/ostype/unicosmp.m4
722e92d3f3fSGregory Neil Shapiro		contrib/socketmapClient.pl
723e92d3f3fSGregory Neil Shapiro		contrib/socketmapServer.pl
724e92d3f3fSGregory Neil Shapiro		devtools/OS/Darwin.7.0
725e92d3f3fSGregory Neil Shapiro		devtools/OS/UNICOS-mk
726e92d3f3fSGregory Neil Shapiro		devtools/OS/UNICOS-mp
727e92d3f3fSGregory Neil Shapiro		devtools/Site/site.config.m4.sample
728e92d3f3fSGregory Neil Shapiro		include/sm/os/sm_os_unicos.h
729e92d3f3fSGregory Neil Shapiro		include/sm/os/sm_os_unicosmk.h
730e92d3f3fSGregory Neil Shapiro		include/sm/os/sm_os_unicosmp.h
731e92d3f3fSGregory Neil Shapiro		libmilter/docs/smfi_insheader.html
732e92d3f3fSGregory Neil Shapiro		libmilter/docs/smfi_progress.html
733e92d3f3fSGregory Neil Shapiro		libmilter/docs/smfi_quarantine.html
734e92d3f3fSGregory Neil Shapiro		libmilter/docs/smfi_setdbg.html
735e92d3f3fSGregory Neil Shapiro		libmilter/docs/smfi_setmlreply.html
736e92d3f3fSGregory Neil Shapiro		libmilter/docs/smfi_stop.html
737e92d3f3fSGregory Neil Shapiro		sendmail/ratectrl.c
738e92d3f3fSGregory Neil Shapiro	Deleted Files:
739e92d3f3fSGregory Neil Shapiro		cf/feature/nodns.m4
740e92d3f3fSGregory Neil Shapiro		contrib/oldbind.compat.c
741e92d3f3fSGregory Neil Shapiro		devtools/OS/CRAYT3E.2.0.x
742e92d3f3fSGregory Neil Shapiro		devtools/OS/CRAYTS.10.0.x
743e92d3f3fSGregory Neil Shapiro		libsm/vsprintf.c
744e92d3f3fSGregory Neil Shapiro	Renamed Files:
745e92d3f3fSGregory Neil Shapiro		devtools/OS/Darwin.7.0 => devtools/OS/Darwin.7.x
746e92d3f3fSGregory Neil Shapiro
747323f6dcbSGregory Neil Shapiro8.12.11/8.12.11	2004/01/18
748323f6dcbSGregory Neil Shapiro	Use QueueFileMode when opening qf files.  This error was a
749323f6dcbSGregory Neil Shapiro		regression in 8.12.10.  Problem detected and diagnosed
750323f6dcbSGregory Neil Shapiro		Lech Szychowski of the Polish Power Grid Company.
751323f6dcbSGregory Neil Shapiro	Properly count the number of queue runners in a work group and
752323f6dcbSGregory Neil Shapiro		make sure the total limit of MaxQueueChildren is not
753323f6dcbSGregory Neil Shapiro		exceeded.  Based on patch from Takayuki Yoshizawa of
754323f6dcbSGregory Neil Shapiro		Techfirm, Inc.
755323f6dcbSGregory Neil Shapiro	Take care of systems that can generate time values where the
756323f6dcbSGregory Neil Shapiro		seconds can exceed the usual range of 0 to 59.
757323f6dcbSGregory Neil Shapiro		Problem noted by Randy Diffenderfer of EDS.
758323f6dcbSGregory Neil Shapiro	Avoid regeneration of identical queue identifiers by processes
759323f6dcbSGregory Neil Shapiro		whose process id is the same as that of the initial
760323f6dcbSGregory Neil Shapiro		sendmail process that was used to start the daemon.
761323f6dcbSGregory Neil Shapiro		Problem noted by Randy Diffenderfer of EDS.
762323f6dcbSGregory Neil Shapiro	When a milter invokes smfi_delrcpt() compare the supplied
763323f6dcbSGregory Neil Shapiro		recipient address also against the printable addresses
764323f6dcbSGregory Neil Shapiro		of the current list to deal with rewritten addresses.
765323f6dcbSGregory Neil Shapiro		Based on patch from Sean Hanson of The Asylum.
766323f6dcbSGregory Neil Shapiro	BadRcptThrottle now also works for addresses which return the
767323f6dcbSGregory Neil Shapiro		error mailer, e.g., virtusertable entries with the
768323f6dcbSGregory Neil Shapiro		right hand side error:.  Patch from Per Hedeland.
769323f6dcbSGregory Neil Shapiro	Fix printing of 8 bit characters as octals in log messages.
770323f6dcbSGregory Neil Shapiro		Based on patch by Andrey J. Melnikoff.
771323f6dcbSGregory Neil Shapiro	Undo change of algorithm for MIME 7-bit base64 encoding to 8-bit
772323f6dcbSGregory Neil Shapiro		text that has been introduced in 8.12.3.  There are some
773323f6dcbSGregory Neil Shapiro		examples where the new code fails, but the old code works.
774323f6dcbSGregory Neil Shapiro		To get the 8.12.3-8.12.10 version, compile sendmail with
775323f6dcbSGregory Neil Shapiro		-DMIME7TO8_OLD=0.  If you have an example of improper
776323f6dcbSGregory Neil Shapiro		7 to 8 bit conversion please send it to us.
777323f6dcbSGregory Neil Shapiro	Return normal error code for unknown SMTP commands instead of
778323f6dcbSGregory Neil Shapiro		the one specified by check_relay or a milter for a
779323f6dcbSGregory Neil Shapiro		connection.  Problem noted by Andrzej Filip.
780323f6dcbSGregory Neil Shapiro	Some ident responses contain data after the terminating CRLF which
781323f6dcbSGregory Neil Shapiro		causes sendmail to log "POSSIBLE ATTACK...newline in string".
782323f6dcbSGregory Neil Shapiro		To avoid this everything after LF is ignored.
783323f6dcbSGregory Neil Shapiro	If the operating system supports O_EXLOCK and HASFLOCK is set
784323f6dcbSGregory Neil Shapiro		then a possible race condition for creating qf files
785323f6dcbSGregory Neil Shapiro		can be avoided.  Note: the race condition does not
786323f6dcbSGregory Neil Shapiro		exist within sendmail, but between sendmail and an
787323f6dcbSGregory Neil Shapiro		external application that accesses qf files.
788323f6dcbSGregory Neil Shapiro	Log the proper options name for TLS related mising files for
789323f6dcbSGregory Neil Shapiro		the CACertPath, CACertFile, and DHParameters options.
790323f6dcbSGregory Neil Shapiro	Do not split an envelope if it will be discarded, otherwise df
791323f6dcbSGregory Neil Shapiro		files could be left behind.  Problem found by Wolfgang
792323f6dcbSGregory Neil Shapiro		Breyha.
793323f6dcbSGregory Neil Shapiro	The use of the environment variables HOME and HOSTALIASES has been
794323f6dcbSGregory Neil Shapiro		deprecated and will be removed in version 8.13.  This only
795323f6dcbSGregory Neil Shapiro		effects configuration which preserve those variable via the
796323f6dcbSGregory Neil Shapiro		'E' command in the cf file as sendmail clears out its entire
797323f6dcbSGregory Neil Shapiro		environment.
798323f6dcbSGregory Neil Shapiro	Portability:
799323f6dcbSGregory Neil Shapiro		Add support for Darwin 7.0/Mac OS X 10.3 (a.k.a. Panther).
800323f6dcbSGregory Neil Shapiro		Solaris 10 has unsetenv(), patch from Craig Mohrman of
801323f6dcbSGregory Neil Shapiro			Sun Microsystems.
802323f6dcbSGregory Neil Shapiro	LIBMILTER: Add extra checks in case a broken MTA sends bogus data
803323f6dcbSGregory Neil Shapiro		to libmilter.  Based on code review by Rob Grzywinski.
804323f6dcbSGregory Neil Shapiro	SMRSH: Properly assemble commands that contain '&&' or '||'.
805323f6dcbSGregory Neil Shapiro		Problem noted by Eric Lee of Talking Heads.
806323f6dcbSGregory Neil Shapiro	New Files:
807323f6dcbSGregory Neil Shapiro		devtools/OS/Darwin.7.0
808323f6dcbSGregory Neil Shapiro
809323f6dcbSGregory Neil Shapiro8.12.10/8.12.10	2003/09/24 (Released: 2003/09/17)
810a7ec597cSGregory Neil Shapiro	SECURITY: Fix a buffer overflow in address parsing.  Problem
811a7ec597cSGregory Neil Shapiro		detected by Michal Zalewski, patch from Todd C. Miller
812a7ec597cSGregory Neil Shapiro		of Courtesan Consulting.
813a7ec597cSGregory Neil Shapiro	Fix a potential buffer overflow in ruleset parsing.  This problem
814a7ec597cSGregory Neil Shapiro		is not exploitable in the default sendmail configuration;
815a7ec597cSGregory Neil Shapiro		only if non-standard rulesets recipient (2), final (4), or
816a7ec597cSGregory Neil Shapiro		mailer-specific envelope recipients rulesets are used then
817a7ec597cSGregory Neil Shapiro		a problem may occur.  Problem noted by Timo Sirainen.
818a7ec597cSGregory Neil Shapiro	Accept 0 (and 0/0) as valid input for set MaxMimeHeaderLength.
819a7ec597cSGregory Neil Shapiro		Problem noted by Thomas Schulz.
820a7ec597cSGregory Neil Shapiro	Add several checks to avoid (theoretical) buffer over/underflows.
821a7ec597cSGregory Neil Shapiro	Properly count message size when performing 7->8 or 8->7 bit MIME
822a7ec597cSGregory Neil Shapiro		conversions.  Problem noted by Werner Wiethege.
823a7ec597cSGregory Neil Shapiro	Properly compute message priority based on size of entire message,
824a7ec597cSGregory Neil Shapiro		not just header.  Problem noted by Axel Holscher.
825a7ec597cSGregory Neil Shapiro	Reset SevenBitInput to its configured value between SMTP
826a7ec597cSGregory Neil Shapiro		transactions for broken clients which do not properly
827a7ec597cSGregory Neil Shapiro		announce 8 bit data.  Problem noted by Stefan Roehrich.
828a7ec597cSGregory Neil Shapiro	Set {addr_type} during queue runs when processing recipients.
829a7ec597cSGregory Neil Shapiro		Based on patch from Arne Jansen.
830a7ec597cSGregory Neil Shapiro	Better error handling in case of (very unlikely) queue-id conflicts.
831a7ec597cSGregory Neil Shapiro	Perform better error recovery for address parsing, e.g., when
832a7ec597cSGregory Neil Shapiro		encountering a comment that is too long.  Problem noted by
833a7ec597cSGregory Neil Shapiro		Tanel Kokk, Union Bank of Estonia.
834a7ec597cSGregory Neil Shapiro	Add ':' to the allowed character list for bogus HELO/EHLO
835a7ec597cSGregory Neil Shapiro		checking.  It is used for IPv6 domain literals.  Patch from
836a7ec597cSGregory Neil Shapiro		Iwaizako Takahiro of FreeBit Co., Ltd.
837a7ec597cSGregory Neil Shapiro	Reset SASL connection context after a failed authentication attempt.
838a7ec597cSGregory Neil Shapiro		Based on patch from Rob Siemborski of CMU.
839a7ec597cSGregory Neil Shapiro	Check Berkeley DB compile time version against run time version
840a7ec597cSGregory Neil Shapiro		to make sure they match.
841a7ec597cSGregory Neil Shapiro	Do not attempt AAAA (IPv6) DNS lookups if IPv6 is not enabled
842a7ec597cSGregory Neil Shapiro		in the kernel.
843a7ec597cSGregory Neil Shapiro	When a milter adds recipients and one of them causes an error,
844a7ec597cSGregory Neil Shapiro		do not ignore the other recipients.  Problem noted by
845a7ec597cSGregory Neil Shapiro		Bart Duchesne.
846a7ec597cSGregory Neil Shapiro	CONFIG: Use specified SMTP error code in mailertable entries which
847a7ec597cSGregory Neil Shapiro		lack a DSN, i.e., "error:### Text".  Problem noted by
848a7ec597cSGregory Neil Shapiro		Craig Hunt.
849a7ec597cSGregory Neil Shapiro	CONFIG: Call Local_trust_auth with the correct argument.  Patch
850a7ec597cSGregory Neil Shapiro		from Jerome Borsboom.
851a7ec597cSGregory Neil Shapiro	CONTRIB: Better handling of temporary filenames for doublebounce.pl
852a7ec597cSGregory Neil Shapiro		and expn.pl to avoid file overwrites, etc.  Patches from
853a7ec597cSGregory Neil Shapiro		Richard A. Nelson of Debian and Paul Szabo.
854a7ec597cSGregory Neil Shapiro	MAIL.LOCAL: Fix obscure race condition that could lead to an
855a7ec597cSGregory Neil Shapiro		improper mailbox truncation if close() fails after the
856a7ec597cSGregory Neil Shapiro		mailbox is fsync()'ed and a new message is delivered
857a7ec597cSGregory Neil Shapiro		after the close() and before the truncate().
858a7ec597cSGregory Neil Shapiro	MAIL.LOCAL: If mail delivery fails, do not leave behind a
859a7ec597cSGregory Neil Shapiro		stale lockfile (which is ignored after the lock timeout).
860a7ec597cSGregory Neil Shapiro		Patch from Oleg Bulyzhin of Cronyx Plus LLC.
861a7ec597cSGregory Neil Shapiro	Portability:
862a7ec597cSGregory Neil Shapiro		Port for AIX 5.2.  Thanks to Steve Hubert of University
863a7ec597cSGregory Neil Shapiro			of Washington for providing access to a computer
864a7ec597cSGregory Neil Shapiro			with AIX 5.2.
865a7ec597cSGregory Neil Shapiro		setreuid(2) works on OpenBSD 3.3.  Patch from
866a7ec597cSGregory Neil Shapiro			Todd C. Miller of Courtesan Consulting.
867a7ec597cSGregory Neil Shapiro		Allow for custom definition of SMRSH_CMDDIR and SMRSH_PATH
868a7ec597cSGregory Neil Shapiro			on all operating systems.  Patch from Robert Harker
869a7ec597cSGregory Neil Shapiro			of Harker Systems.
870a7ec597cSGregory Neil Shapiro		Use strerror(3) on Linux.  If this causes a problem on
871a7ec597cSGregory Neil Shapiro			your Linux distribution, compile with
872a7ec597cSGregory Neil Shapiro			-DHASSTRERROR=0 and tell sendmail.org about it.
873a7ec597cSGregory Neil Shapiro	Added Files:
874a7ec597cSGregory Neil Shapiro		devtools/OS/AIX.5.2
875a7ec597cSGregory Neil Shapiro
8765ef517c0SGregory Neil Shapiro8.12.9/8.12.9	2003/03/29
8775ef517c0SGregory Neil Shapiro	SECURITY: Fix a buffer overflow in address parsing due to
8785ef517c0SGregory Neil Shapiro		a char to int conversion problem which is potentially
8795ef517c0SGregory Neil Shapiro		remotely exploitable.  Problem found by Michal Zalewski.
8805ef517c0SGregory Neil Shapiro		Note: an MTA that is not patched might be vulnerable to
8815ef517c0SGregory Neil Shapiro		data that it receives from untrusted sources, which
8825ef517c0SGregory Neil Shapiro		includes DNS.
8835ef517c0SGregory Neil Shapiro	To provide partial protection to internal, unpatched sendmail MTAs,
8845ef517c0SGregory Neil Shapiro		8.12.9 changes by default (char)0xff to (char)0x7f in
8855ef517c0SGregory Neil Shapiro		headers etc.  To turn off this conversion compile with
8865ef517c0SGregory Neil Shapiro		-DALLOW_255 or use the command line option -d82.101.
8875ef517c0SGregory Neil Shapiro	To provide partial protection for internal, unpatched MTAs that may be
8885ef517c0SGregory Neil Shapiro		performing 7->8 or 8->7 bit MIME conversions, the default
8895ef517c0SGregory Neil Shapiro		for MaxMimeHeaderLength has been changed to 2048/1024.
8905ef517c0SGregory Neil Shapiro		Note: this does have a performance impact, and it only
8915ef517c0SGregory Neil Shapiro		protects against frontal attacks from the outside.
8925ef517c0SGregory Neil Shapiro		To disable the checks and return to pre-8.12.9 defaults,
8935ef517c0SGregory Neil Shapiro		set MaxMimeHeaderLength to 0/0.
8945ef517c0SGregory Neil Shapiro	Do not complain about -ba when submitting mail.  Problem noted
8955ef517c0SGregory Neil Shapiro		by Derek Wueppelmann.
8965ef517c0SGregory Neil Shapiro	Fix compilation with Berkeley DB 1.85 on systems that do not
8975ef517c0SGregory Neil Shapiro		have flock(2).  Problem noted by Andy Harper of Kings
8985ef517c0SGregory Neil Shapiro		College London.
8995ef517c0SGregory Neil Shapiro	Properly initialize data structure for dns maps to avoid various
9005ef517c0SGregory Neil Shapiro		errors, e.g., looping processes.  Problem noted by
901a7ec597cSGregory Neil Shapiro		Maurice Makaay of InterNLnet B.V.
9025ef517c0SGregory Neil Shapiro	CONFIG: Prevent multiple application of rule to add smart host.
9035ef517c0SGregory Neil Shapiro		Patch from Andrzej Filip.
9045ef517c0SGregory Neil Shapiro	CONFIG: Fix queue group declaration in MAILER(`usenet').
9055ef517c0SGregory Neil Shapiro	CONTRIB: buildvirtuser: New option -t builds the virtusertable
9065ef517c0SGregory Neil Shapiro		text file instead of the database map.
9075ef517c0SGregory Neil Shapiro	Portability:
9085ef517c0SGregory Neil Shapiro		Revert wrong change made in 8.12.7 and actually use the
9095ef517c0SGregory Neil Shapiro			builtin getopt() version in sendmail on Linux.
9105ef517c0SGregory Neil Shapiro			This can be overridden by using -DSM_CONF_GETOPT=0
9115ef517c0SGregory Neil Shapiro			in which case the OS supplied version will be used.
9125ef517c0SGregory Neil Shapiro
913d9986b26SGregory Neil Shapiro8.12.8/8.12.8	2003/02/11
914d9986b26SGregory Neil Shapiro	SECURITY: Fix a remote buffer overflow in header parsing by
915d9986b26SGregory Neil Shapiro		dropping sender and recipient header comments if the
916d9986b26SGregory Neil Shapiro		comments are too long.  Problem noted by Mark Dowd
917d9986b26SGregory Neil Shapiro		of ISS X-Force.
918d9986b26SGregory Neil Shapiro	Fix a potential non-exploitable buffer overflow in parsing the
919d9986b26SGregory Neil Shapiro		.cf queue settings and potential buffer underflow in
920d9986b26SGregory Neil Shapiro		parsing ident responses.  Problem noted by Yichen Xie of
921d9986b26SGregory Neil Shapiro		Stanford University Compilation Group.
922d9986b26SGregory Neil Shapiro	Fix ETRN #queuegroup command: actually start a queue run for
923d9986b26SGregory Neil Shapiro		the selected queue group.  Problem noted by Jos Vos.
924d9986b26SGregory Neil Shapiro	If MaxMimeHeaderLength is set and a malformed MIME header is fixed,
925d9986b26SGregory Neil Shapiro		log the fixup as "Fixed MIME header" instead of "Truncated
926d9986b26SGregory Neil Shapiro		MIME header".  Problem noted by Ian J Hart.
927d9986b26SGregory Neil Shapiro	CONFIG: Fix regression bug in proto.m4 that caused a bogus
928d9986b26SGregory Neil Shapiro		error message: "FEATURE() should be before MAILER()".
929d9986b26SGregory Neil Shapiro	MAIL.LOCAL: Be more explicit in some error cases, i.e., whether
930d9986b26SGregory Neil Shapiro		a mailbox has more than one link or whether it is not
931d9986b26SGregory Neil Shapiro		a regular file.  Patch from John Beck of Sun Microsystems.
932d9986b26SGregory Neil Shapiro
93313bd1963SGregory Neil Shapiro8.12.7/8.12.7	2002/12/29
93413bd1963SGregory Neil Shapiro	Properly clean up macros to avoid persistence of session data
93513bd1963SGregory Neil Shapiro		across various connections.  This could cause session
93613bd1963SGregory Neil Shapiro		oriented restrictions, e.g., STARTTLS requirements,
93713bd1963SGregory Neil Shapiro		to erroneously allow a connection.  Problem noted
93813bd1963SGregory Neil Shapiro		by Tim Maletic of Priority Health.
93913bd1963SGregory Neil Shapiro	Do not lookup MX records when sorting the MSP queue.  The MSP
94013bd1963SGregory Neil Shapiro		only needs to relay all mail to the MTA.  Problem found
94113bd1963SGregory Neil Shapiro		by Gary Mills of the University of Manitoba.
94213bd1963SGregory Neil Shapiro	Do not restrict the length of connection information to 100
94313bd1963SGregory Neil Shapiro		characters in some logging statements.  Problem noted by
94413bd1963SGregory Neil Shapiro		Erik Parker.
94513bd1963SGregory Neil Shapiro	When converting an enhanced status code to an exit status, use
94613bd1963SGregory Neil Shapiro		EX_CONFIG if the first digit is not 2, 4, or 5 or if *.1.5
94713bd1963SGregory Neil Shapiro		is used.
94813bd1963SGregory Neil Shapiro	Reset macro $x when receiving another MAIL command.  Problem
94913bd1963SGregory Neil Shapiro		noted by Vlado Potisk of Wigro s.r.o.
95013bd1963SGregory Neil Shapiro	Don't bother setting the permissions on the build area statistics
95113bd1963SGregory Neil Shapiro		file, the proper permissions will be put on the file at
95213bd1963SGregory Neil Shapiro		install time.  This fixes installation over NFS for some
95313bd1963SGregory Neil Shapiro		users.  Problem noted by Martin J. Dellwo of 3-Dimensional
95413bd1963SGregory Neil Shapiro		Pharmaceuticals, Inc.
95513bd1963SGregory Neil Shapiro	Fix problem of decoding SASLv2 encrypted data.  Problem noted by
95613bd1963SGregory Neil Shapiro		Alex Deiter of Mobile TeleSystems, Komi Republic.
95713bd1963SGregory Neil Shapiro	Log milter socket open errors at MilterLogLevel 1 or higher instead
95813bd1963SGregory Neil Shapiro		of 11 or higher.
95913bd1963SGregory Neil Shapiro	Print early system errors to the console instead of silently
96013bd1963SGregory Neil Shapiro		exiting.  Problem noted by James Jong of IBM.
96113bd1963SGregory Neil Shapiro	Do not process a queue group if Runners is set to 0, regardless
96213bd1963SGregory Neil Shapiro		of whether F=f or sendmail is run in verbose mode (-v).
96313bd1963SGregory Neil Shapiro		The use of -qGname will still force queue group "name"
96413bd1963SGregory Neil Shapiro		to be run even if Runners=0.
96513bd1963SGregory Neil Shapiro	Change the level for logging the fact that a daemon is refusing
96613bd1963SGregory Neil Shapiro		connections due to high load from LOG_INFO to LOG_NOTICE.
96713bd1963SGregory Neil Shapiro		Patch from John Beck of Sun Microsystems.
96813bd1963SGregory Neil Shapiro	Use location information for submit.cf from NetInfo
96913bd1963SGregory Neil Shapiro		(/locations/sendmail/submit.cf) if available.
97013bd1963SGregory Neil Shapiro	Re-enable ForkEachJob which was lost in 8.12.0.  Problem noted by
97113bd1963SGregory Neil Shapiro		Neil Rickert of Northern Illinois University.
97213bd1963SGregory Neil Shapiro	Make behavior of /canon in debug mode consistent with usage in
97313bd1963SGregory Neil Shapiro		rulesets.  Patch from Shigeno Kazutaka of IIJ.
97413bd1963SGregory Neil Shapiro	Fix a potential memory leak in envelope splitting.  Problem noted
97513bd1963SGregory Neil Shapiro		by John Majikes of IBM.
97613bd1963SGregory Neil Shapiro	Do not try to share an mailbox database LDAP connection across
97713bd1963SGregory Neil Shapiro		different processes.  Problem noted by Randy Kunkee.
97813bd1963SGregory Neil Shapiro	Fix logging for undelivered recipients when the SMTP connection
97913bd1963SGregory Neil Shapiro		times out during message collection.  Problem noted by Neil
98013bd1963SGregory Neil Shapiro		Rickert of Northern Illinois University.
98113bd1963SGregory Neil Shapiro	Avoid problems with QueueSortOrder=random due to problems with
98213bd1963SGregory Neil Shapiro		qsort() on Solaris (and maybe some other operating systems).
98313bd1963SGregory Neil Shapiro		Problem noted by Stephan Schulz of Gruner+Jahr..
98413bd1963SGregory Neil Shapiro	If -f "" is specified, set the sender address to "<>".  Problem
98513bd1963SGregory Neil Shapiro		noted by Matthias Andree.
98613bd1963SGregory Neil Shapiro	Fix formatting problem of footnotes for plain text output on some
987d9986b26SGregory Neil Shapiro		versions of tmac.  Patch from Per Hedeland.
98813bd1963SGregory Neil Shapiro	Portability:
98913bd1963SGregory Neil Shapiro		Berkeley DB 4.1 support (requires at least 4.1.25).
99013bd1963SGregory Neil Shapiro		Some getopt(3) implementations in GNU/Linux are broken
99113bd1963SGregory Neil Shapiro			and pass a NULL pointer to an option which requires
99213bd1963SGregory Neil Shapiro			an argument, hence the builtin version of
99313bd1963SGregory Neil Shapiro			sendmail is used instead.  This can be overridden
99413bd1963SGregory Neil Shapiro			by using -DSM_CONF_GETOPT=0.  Problem noted by
99513bd1963SGregory Neil Shapiro			Vlado Potisk of Wigro s.r.o.
99613bd1963SGregory Neil Shapiro		Support for nph-1.2.0 from Mark D. Roth of the University
99713bd1963SGregory Neil Shapiro			of Illinois at Urbana-Champaign.
99813bd1963SGregory Neil Shapiro		Support for FreeBSD 5.0's MAC labeling from Robert Watson
99913bd1963SGregory Neil Shapiro			of the TrustedBSD Project.
100013bd1963SGregory Neil Shapiro		Support for reading the number of processors on an IRIX
100113bd1963SGregory Neil Shapiro			system from Michel Bourget of SGI.
100213bd1963SGregory Neil Shapiro		Support for UnixWare 7.1 based on input from Larry Rosenman.
100313bd1963SGregory Neil Shapiro		Interix support from Nedelcho Stanev of Atlantic Sky
100413bd1963SGregory Neil Shapiro			Corporation.
100513bd1963SGregory Neil Shapiro		Update Mac OS X/Darwin portability from Wilfredo Sanchez.
100613bd1963SGregory Neil Shapiro	CONFIG: Enforce tls_client restrictions even if delay_checks
100713bd1963SGregory Neil Shapiro		is used.  Problem noted by Malte Starostik.
100813bd1963SGregory Neil Shapiro	CONFIG: Deal with an empty hostname created via bogus
100913bd1963SGregory Neil Shapiro		DNS entries to get around access restrictions.
101013bd1963SGregory Neil Shapiro		Problem noted by Kai Schlichting.
101113bd1963SGregory Neil Shapiro	CONFIG: Use FEATURE(`msp', `[127.0.0.1]') in submit.mc by default
101213bd1963SGregory Neil Shapiro		to avoid problems with hostname resolution for localhost
101313bd1963SGregory Neil Shapiro		which on many systems does not resolve to 127.0.0.1 (or
101413bd1963SGregory Neil Shapiro		::1 for IPv6).  If you do not use IPv4 but only IPv6 then
101513bd1963SGregory Neil Shapiro		you need to change submit.mc accordingly, see the comment
101613bd1963SGregory Neil Shapiro		in the file itself.
101713bd1963SGregory Neil Shapiro	CONFIG: Set confDONT_INIT_GROUPS to True in submit.mc to avoid
101813bd1963SGregory Neil Shapiro		error messages from initgroups(3) on AIX 4.3 when sending
101913bd1963SGregory Neil Shapiro		mail to non-existing users. Problem noted by Mark Roth of
102013bd1963SGregory Neil Shapiro		the University of Illinois at Urbana-Champaign.
102113bd1963SGregory Neil Shapiro	CONFIG: Allow local_procmail to override local_lmtp settings.
102213bd1963SGregory Neil Shapiro	CONFIG: Always allow connections from 127.0.0.1 or IPv6:::1 to
102313bd1963SGregory Neil Shapiro		relay.
102413bd1963SGregory Neil Shapiro	CONTRIB: cidrexpand: Deal with the prefix tags that may be included
102513bd1963SGregory Neil Shapiro		in access_db.
102613bd1963SGregory Neil Shapiro	CONTRIB: New version of doublebounce.pl contributed by Leo Bicknell.
102713bd1963SGregory Neil Shapiro	LIBMILTER: On Solaris libmilter may get into an endless loop if
102813bd1963SGregory Neil Shapiro		an error in the communication from/to the MTA occurs.
102913bd1963SGregory Neil Shapiro		Patch from Gurusamy Sarathy of Active State.
103013bd1963SGregory Neil Shapiro	LIBMILTER: Ignore EINTR from sigwait(3) which may happen on Tru64.
103113bd1963SGregory Neil Shapiro		Patch from from Jose Marcio Martins da Cruz of Ecole
103213bd1963SGregory Neil Shapiro		Nationale Superieure des Mines de Paris.
103313bd1963SGregory Neil Shapiro	MAIL.LOCAL: Fix a truncation race condition if the close() on
103413bd1963SGregory Neil Shapiro		the mailbox fails.  Problem noted by Tomoko Fukuzawa of
103513bd1963SGregory Neil Shapiro		Sun Microsystems.
103613bd1963SGregory Neil Shapiro	MAIL.LOCAL: Fix a potential file descriptor leak if mkstemp(3)
103713bd1963SGregory Neil Shapiro		fails.  Patch from John Beck of Sun Microsystems.
103813bd1963SGregory Neil Shapiro	SMRSH: SECURITY: Only allow regular files or symbolic links to be
103913bd1963SGregory Neil Shapiro		used for a command.  Problem noted by David Endler of
104013bd1963SGregory Neil Shapiro		iDEFENSE, Inc.
104113bd1963SGregory Neil Shapiro	New Files:
104213bd1963SGregory Neil Shapiro		devtools/OS/Interix
104313bd1963SGregory Neil Shapiro		include/sm/bdb.h
104413bd1963SGregory Neil Shapiro
1045959366dcSGregory Neil Shapiro8.12.6/8.12.6	2002/08/26
1046959366dcSGregory Neil Shapiro	Do not add the FallbackMXhost (or its MX records) to the list
1047959366dcSGregory Neil Shapiro		returned by the bestmx map when -z is used as option.
1048959366dcSGregory Neil Shapiro		Otherwise sendmail may act as an open relay if FallbackMXhost
1049959366dcSGregory Neil Shapiro		and FEATURE(`relay_based_on_MX') are used together.
1050959366dcSGregory Neil Shapiro		Problem noted by Alexander Ignatyev.
1051959366dcSGregory Neil Shapiro	Properly split owner- mailing list messages when SuperSafe is set
1052959366dcSGregory Neil Shapiro		to interactive.  Problem noted by Todd C. Miller of
1053959366dcSGregory Neil Shapiro		Courtesan Consulting.
1054959366dcSGregory Neil Shapiro	Make sure that an envelope is queued in the selected queue group
1055959366dcSGregory Neil Shapiro		even if some recipients are deleted or invalid.  Problem
1056959366dcSGregory Neil Shapiro		found by Chris Adams of HiWAAY Informations Services.
1057959366dcSGregory Neil Shapiro	Do not send a bounce message if a message is completely collected
1058959366dcSGregory Neil Shapiro		from the SMTP client.  Problem noted by Kari Hurtta of the
1059959366dcSGregory Neil Shapiro		Finnish Meteorological Institute.
1060959366dcSGregory Neil Shapiro	Provide an 'install-submit-st' target for sendmail/Makefile to
1061959366dcSGregory Neil Shapiro		install the MSP statistics file using the file named in the
1062959366dcSGregory Neil Shapiro		confMSP_STFILE devtools variable.  Requested by Jeff
1063959366dcSGregory Neil Shapiro		Earickson of Colby College.
1064959366dcSGregory Neil Shapiro	Queue up mail with a temporary error if setusercontext() fails
1065959366dcSGregory Neil Shapiro		during a delivery attempt.  Patch from Todd C. Miller of
1066959366dcSGregory Neil Shapiro		Courtesan Consulting.
1067959366dcSGregory Neil Shapiro	Fix handling of base64 encoded client authentication data for
1068959366dcSGregory Neil Shapiro		SMTP AUTH.  Patch from Elena Slobodnik of life medien GmbH.
1069959366dcSGregory Neil Shapiro	Set the OpenLDAP option LDAP_OPT_RESTART so the client libraries
1070959366dcSGregory Neil Shapiro		restart interrupted system calls.  Problem noted by Luiz
1071959366dcSGregory Neil Shapiro		Henrique Duma of BSIOne.
1072959366dcSGregory Neil Shapiro	Prevent a segmentation fault if a program passed a NULL envp using
1073959366dcSGregory Neil Shapiro		execve().
1074959366dcSGregory Neil Shapiro	Document a problem with the counting of queue runners that may
1075959366dcSGregory Neil Shapiro		cause delays if MaxQueueChildren is set too low. Problem
1076959366dcSGregory Neil Shapiro		noted by Ian Duplisse of Cable Television Laboratories, Inc.
1077959366dcSGregory Neil Shapiro	If discarding a message based on a recipient, don't try to look up
1078959366dcSGregory Neil Shapiro		the recipient in the mailbox database if F=w is set.  This
1079959366dcSGregory Neil Shapiro		allows users to discard bogus recipients when dealing with
1080959366dcSGregory Neil Shapiro		spammers without tipping them off.  Problem noted by Neil
1081959366dcSGregory Neil Shapiro		Rickert of Northern Illinois University.
1082959366dcSGregory Neil Shapiro	If applying a header check to a header with unstructured data,
1083959366dcSGregory Neil Shapiro		e.g., Subject:, then do not run syntax checks that are
1084959366dcSGregory Neil Shapiro		supposed for addresses on the header content.
1085959366dcSGregory Neil Shapiro	Count messages rejected/discarded via the check_data ruleset.
1086959366dcSGregory Neil Shapiro	Portability:
1087959366dcSGregory Neil Shapiro		Fix compilation on systems which do not allow simple
1088959366dcSGregory Neil Shapiro			copying of the variable argument va_list.  Based on
1089959366dcSGregory Neil Shapiro			fix from Scott Walters.
1090959366dcSGregory Neil Shapiro		Fix NSD map open bug.  From Michel Bourget of SGI.
1091959366dcSGregory Neil Shapiro		Add some additional IRIX shells to the default shell
1092959366dcSGregory Neil Shapiro			list.  From Michel Bourget of SGI.
1093959366dcSGregory Neil Shapiro		Fix compilation issues on Mac OS X 10.2 (Darwin 6.0).
1094959366dcSGregory Neil Shapiro			NETISO support has been dropped.
1095959366dcSGregory Neil Shapiro	CONFIG: There was a seemingly minor change in 8.12.4 with respect
1096959366dcSGregory Neil Shapiro		to handling entries of IP nets/addresses with RHS REJECT.
1097959366dcSGregory Neil Shapiro		These would be rejected in check_rcpt instead of only
1098959366dcSGregory Neil Shapiro		being activated in check_relay.  This change has been made to
1099959366dcSGregory Neil Shapiro		avoid potential bogus temporary rejection of relay attempts
1100959366dcSGregory Neil Shapiro		"450 4.7.1 Relaying temporarily denied. Cannot resolve PTR
1101959366dcSGregory Neil Shapiro		record for ..." if delay_checks is enabled.  However, this
1102959366dcSGregory Neil Shapiro		modification causes a change of behavior if an IP net/address
1103959366dcSGregory Neil Shapiro		is listed in the access map with REJECT and a host/domain
1104959366dcSGregory Neil Shapiro		name is listed with OK or RELAY, hence it has been reversed
1105959366dcSGregory Neil Shapiro		such that the behavior of 8.12.3 is restored.  The original
1106959366dcSGregory Neil Shapiro		change was made on request of Neil Rickert of Northern
1107959366dcSGregory Neil Shapiro		Illinois University, the side effect has been found by
1108959366dcSGregory Neil Shapiro		Stefaan Van Hoornick.
1109959366dcSGregory Neil Shapiro	CONFIG: Make sure delay_checks works even for sender addresses
1110959366dcSGregory Neil Shapiro		using the local hostname ($j) or domains in class {P}.
1111959366dcSGregory Neil Shapiro		Based on patch from Neil Rickert of Northern Illinois
1112959366dcSGregory Neil Shapiro		University.
1113959366dcSGregory Neil Shapiro	CONFIG: Fix temporary error handling for LDAP Routing lookups.
1114959366dcSGregory Neil Shapiro		Fix from Andrzej Filip.
1115959366dcSGregory Neil Shapiro	CONTRIB: New version of etrn.pl script and external man page
1116959366dcSGregory Neil Shapiro		(etrn.0) from John Beck of Sun Microsystems.
1117959366dcSGregory Neil Shapiro	LIBMILTER: Protect a free(3) operation from being called with a
1118959366dcSGregory Neil Shapiro		NULL pointer.  Problem noted by Andrey J. Melnikoff.
1119959366dcSGregory Neil Shapiro	LIBMILTER: Protect against more interrupted select() calls.  Based
1120959366dcSGregory Neil Shapiro		on patch from Jose Marcio Martins da Cruz of Ecole Nationale
1121959366dcSGregory Neil Shapiro		Superieure des Mines de Paris.
1122959366dcSGregory Neil Shapiro	New Files:
1123959366dcSGregory Neil Shapiro		contrib/etrn.0
1124959366dcSGregory Neil Shapiro
1125739ac4d4SGregory Neil Shapiro8.12.5/8.12.5	2002/06/25
1126739ac4d4SGregory Neil Shapiro	SECURITY: The DNS map can cause a buffer overflow if the user
1127739ac4d4SGregory Neil Shapiro		specifies a dns map using TXT records in the configuration
1128739ac4d4SGregory Neil Shapiro		file and a rogue DNS server is queried.  None of the
1129739ac4d4SGregory Neil Shapiro		sendmail supplied configuration files use this option hence
1130739ac4d4SGregory Neil Shapiro		they are not vulnerable.  Problem noted independently by
1131739ac4d4SGregory Neil Shapiro		Joost Pol of PINE Internet and Anton Rang of Sun Microsystems.
1132739ac4d4SGregory Neil Shapiro	Unprintable characters in responses from DNS servers for the DNS
1133739ac4d4SGregory Neil Shapiro		map type are changed to 'X' to avoid potential problems
1134739ac4d4SGregory Neil Shapiro		with rogue DNS servers.
1135739ac4d4SGregory Neil Shapiro	Require a suboption when setting the Milter option.  Problem noted
1136739ac4d4SGregory Neil Shapiro		by Bryan Costales.
1137739ac4d4SGregory Neil Shapiro	Do not silently overwrite command line settings for
1138739ac4d4SGregory Neil Shapiro		DirectSubmissionModifiers.  Problem noted by Bryan
1139739ac4d4SGregory Neil Shapiro		Costales.
1140739ac4d4SGregory Neil Shapiro	Prevent a segmentation fault when clearing the event list by
1141739ac4d4SGregory Neil Shapiro		turning off alarms before checking if event list is
1142739ac4d4SGregory Neil Shapiro		empty.  Problem noted by Allan E Johannesen of Worcester
1143739ac4d4SGregory Neil Shapiro		Polytechnic Institute.
1144739ac4d4SGregory Neil Shapiro	Close a potential race condition in transitioning a memory buffered
1145739ac4d4SGregory Neil Shapiro		file onto disk.  From Janani Devarajan of Sun Microsystems.
1146739ac4d4SGregory Neil Shapiro	Portability:
1147739ac4d4SGregory Neil Shapiro		Include paths.h on Linux systems running glibc 2.0 or later
1148739ac4d4SGregory Neil Shapiro			to get the definition for _PATH_SENDMAIL, used by
1149739ac4d4SGregory Neil Shapiro			rmail and vacation.  Problem noted by Kevin
1150739ac4d4SGregory Neil Shapiro			A. McGrail of Peregrine Hardware.
1151739ac4d4SGregory Neil Shapiro		NOTE: Linux appears to have broken flock() again.  Unless
1152739ac4d4SGregory Neil Shapiro			the bug is fixed before sendmail 8.13 is shipped,
1153739ac4d4SGregory Neil Shapiro			8.13 will change the default locking method to
1154739ac4d4SGregory Neil Shapiro			fcntl() for Linux kernel 2.4 and later.  You may
1155739ac4d4SGregory Neil Shapiro			want to do this in 8.12 by compiling with
1156739ac4d4SGregory Neil Shapiro			-DHASFLOCK=0.  Be sure to update other sendmail
1157739ac4d4SGregory Neil Shapiro			related programs to match locking techniques.
1158739ac4d4SGregory Neil Shapiro
115994c01205SGregory Neil Shapiro8.12.4/8.12.4	2002/06/03
116094c01205SGregory Neil Shapiro	SECURITY: Inherent limitations in the UNIX file locking model
116194c01205SGregory Neil Shapiro		can leave systems open to a local denial of service
116294c01205SGregory Neil Shapiro		attack.  Be sure to read the "FILE AND MAP PERMISSIONS"
116394c01205SGregory Neil Shapiro		section of the top level README for more information.
116494c01205SGregory Neil Shapiro		Problem noted by lumpy.
116594c01205SGregory Neil Shapiro	Use TempFileMode (defaults to 0600) for the permissions of PidFile
116694c01205SGregory Neil Shapiro		instead of 0644.
116794c01205SGregory Neil Shapiro	Change the default file permissions for new alias database files
116894c01205SGregory Neil Shapiro		from 0644 to 0640.  This can be overridden at compile time
116994c01205SGregory Neil Shapiro		by setting the DBMMODE macro.
117094c01205SGregory Neil Shapiro	Fix a potential core dump problem if the environment variable
117194c01205SGregory Neil Shapiro		NAME is set.  Problem noted by Beth A. Chaney of
117294c01205SGregory Neil Shapiro		Purdue University.
117394c01205SGregory Neil Shapiro	Expand macros before passing them to libmilter.  Problem noted
117494c01205SGregory Neil Shapiro		by Jose Marcio Martins da Cruz of Ecole Nationale
117594c01205SGregory Neil Shapiro		Superieure des Mines de Paris.
117694c01205SGregory Neil Shapiro	Rewind the df (message body) before truncating it when libmilter
117794c01205SGregory Neil Shapiro		replaces the body of a message.  Problem noted by Gisle Aas
117894c01205SGregory Neil Shapiro		of Active State.
117994c01205SGregory Neil Shapiro	Change SMTP reply code for AUTH failure from 500 to 535 and the
118094c01205SGregory Neil Shapiro		initial zero-length response to "=" per RFC 2554.  Patches
118194c01205SGregory Neil Shapiro		from Kenneth Murchison of Oceana Matrix Ltd.
118294c01205SGregory Neil Shapiro	Do not try to fix broken message/rfc822 MIME attachments by
118394c01205SGregory Neil Shapiro		inserting a MIME-Version: header when MaxMimeHeaderLength
118494c01205SGregory Neil Shapiro		is set and no 8 to 7 bit conversion is needed.  Based on
118594c01205SGregory Neil Shapiro		patch from Rehor Petr of ICZ (Czech Republic).
118694c01205SGregory Neil Shapiro	Do not log "did not issue MAIL/EXPN/VRFY/ETRN" if the connection
118794c01205SGregory Neil Shapiro		is rejected anyway.  Noted by Chris Loelke.
118894c01205SGregory Neil Shapiro	Mention the submission mail queue in the mailq man page.  Requested
118994c01205SGregory Neil Shapiro		by Bill Fenner of AT&T.
119094c01205SGregory Neil Shapiro	Set ${msg_size} macro when reading a message from the command line
119194c01205SGregory Neil Shapiro		or the queue.
119294c01205SGregory Neil Shapiro	Detach from shared memory before dropping privileges back to
119394c01205SGregory Neil Shapiro		user who started sendmail.
119494c01205SGregory Neil Shapiro	If AllowBogusHELO is set to false (default) then also complain if
119594c01205SGregory Neil Shapiro		the argument to HELO/EHLO contains white space.  Suggested
119694c01205SGregory Neil Shapiro		by Seva Gluschenko of Cronyx Plus.
119794c01205SGregory Neil Shapiro	Allow symbolicly linked forward files in writable directory paths
119894c01205SGregory Neil Shapiro		if both ForwardFileInUnsafeDirPath and
119994c01205SGregory Neil Shapiro		LinkedForwardFileInWritableDir DontBlameSendmail options
120094c01205SGregory Neil Shapiro		are set.  Problem noted by Werner Spirk of
120194c01205SGregory Neil Shapiro		Leibniz-Rechenzentrum Munich.
120294c01205SGregory Neil Shapiro	Portability:
120394c01205SGregory Neil Shapiro		Operating systems that lack the ftruncate() call will not
120494c01205SGregory Neil Shapiro			be able to use Milter's body replacement feature.
120594c01205SGregory Neil Shapiro			This only affects Altos, Maxion, and MPE/iX.
120694c01205SGregory Neil Shapiro		Digital UNIX 5.0 has changed flock() semantics to be
120794c01205SGregory Neil Shapiro			non-compliant.  Problem noted by Martin Mokrejs of
120894c01205SGregory Neil Shapiro			Charles University in Prague.
120994c01205SGregory Neil Shapiro		The sparc64 port of FreeBSD 5.0 now supports shared
121094c01205SGregory Neil Shapiro			memory.
121194c01205SGregory Neil Shapiro	CONFIG: FEATURE(`preserve_luser_host') needs the macro map.
121294c01205SGregory Neil Shapiro		Problem noted by Andrzej Filip.
121394c01205SGregory Neil Shapiro	CONFIG: Using 'local:' as a mailertable value with
121494c01205SGregory Neil Shapiro		FEATURE(`preserve_luser_host') and LUSER_RELAY caused mail
121594c01205SGregory Neil Shapiro		to be misaddressed.  Problem noted by Andrzej Filip.
121694c01205SGregory Neil Shapiro	CONFIG: Provide a workaround for DNS based rejection lists that
121794c01205SGregory Neil Shapiro		fail for AAAA queries.  Problem noted by Chris Boyd.
121894c01205SGregory Neil Shapiro	CONFIG: Accept the machine's hostname as resolvable when checking
121994c01205SGregory Neil Shapiro		the sender address.  This allows locally submitted mail to
122094c01205SGregory Neil Shapiro		be accepted if the machine isn't connected to a nameserver
122194c01205SGregory Neil Shapiro		and doesn't have an /etc/hosts entry for itself.  Problem
122294c01205SGregory Neil Shapiro		noted by Robert Watson of the TrustedBSD Project.
122394c01205SGregory Neil Shapiro	CONFIG: Use deferred expansion for checking the ${deliveryMode}
122494c01205SGregory Neil Shapiro		macro in case the SMTP VERB command is used.  Problem
122594c01205SGregory Neil Shapiro		noted by Bryan Costales.
122694c01205SGregory Neil Shapiro	CONFIG: Avoid a duplicate '@domain' virtusertable lookup if no
122794c01205SGregory Neil Shapiro		matches are found.  Fix from Andrzej Filip.
122894c01205SGregory Neil Shapiro	CONFIG: Fix wording in default dnsbl rejection message.  Suggested
122994c01205SGregory Neil Shapiro		by Lou Katz of Metron Computerware, Ltd.
123094c01205SGregory Neil Shapiro	CONFIG: Add mailer cyrusv2 for Cyrus V2.  Contributed by
123194c01205SGregory Neil Shapiro		Kenneth Murchison of Oceana Matrix Ltd.
123294c01205SGregory Neil Shapiro	CONTRIB: Fix wording in default dnsblaccess rejection message to
123394c01205SGregory Neil Shapiro		match dnsbl change.
123494c01205SGregory Neil Shapiro	DEVTOOLS: Add new option for access mode of statistics file,
123594c01205SGregory Neil Shapiro		confSTMODE, which specifies the permissions when initially
123694c01205SGregory Neil Shapiro		installing the sendmail statistics file.
123794c01205SGregory Neil Shapiro	LIBMILTER: Mark the listening socket as close-on-exec in case
123894c01205SGregory Neil Shapiro		a user's filter starts other applications.
123994c01205SGregory Neil Shapiro	LIBSM: Allow the MBDB initialize, lookup, and/or terminate
124094c01205SGregory Neil Shapiro		functions in SmMbdbTypes to be set to NULL.
124194c01205SGregory Neil Shapiro	MAKEMAP: Change the default file permissions for new databases from
124294c01205SGregory Neil Shapiro		0644 to 0640.  This can be overridden at compile time
124394c01205SGregory Neil Shapiro		by setting the DBMMODE macro.
124494c01205SGregory Neil Shapiro	SMRSH: Fix man page bug: replace SMRSH_CMDBIN with SMRSH_CMDDIR.
124594c01205SGregory Neil Shapiro		Problem noted by Dave Alden of Ohio State University.
124694c01205SGregory Neil Shapiro	VACATION: When listing the vacation database (-l), don't show
124794c01205SGregory Neil Shapiro		bogus timestamps for excluded (-x) addresses.  Problem
124894c01205SGregory Neil Shapiro		noted by Bryan Costales.
124994c01205SGregory Neil Shapiro	New Files:
125094c01205SGregory Neil Shapiro		cf/mailer/cyrusv2.m4
125194c01205SGregory Neil Shapiro
1252605302a5SGregory Neil Shapiro8.12.3/8.12.3	2002/04/05
1253605302a5SGregory Neil Shapiro	NOTICE: In general queue files should not be moved if queue groups
1254605302a5SGregory Neil Shapiro		are used.  In previous versions this could cause mail
1255605302a5SGregory Neil Shapiro		not to be delivered if a queue file is repeatedly moved
1256605302a5SGregory Neil Shapiro		by an external process whenever sendmail moved it back
1257605302a5SGregory Neil Shapiro		into the right place.  Some precautions have been taken
1258605302a5SGregory Neil Shapiro		to avoid moving queue files if not really necessary.
1259605302a5SGregory Neil Shapiro		sendmail may use links to refer to queue files and it
1260605302a5SGregory Neil Shapiro		may store the path of data files in queue files.  Hence
1261605302a5SGregory Neil Shapiro		queue files should not be moved unless those internals
1262605302a5SGregory Neil Shapiro		are understood and the integrity of the files is not
1263605302a5SGregory Neil Shapiro		compromised.  Problem noted by Anne Bennett of Concordia
1264605302a5SGregory Neil Shapiro		University.
1265605302a5SGregory Neil Shapiro	If an error mail is created, and the mail is split across different
1266605302a5SGregory Neil Shapiro		queue directories, and SuperSafe is off, then write the mail
1267605302a5SGregory Neil Shapiro		to disk before splitting it, otherwise an assertion is
1268605302a5SGregory Neil Shapiro		triggered.  Problem tracked down by Henning Schmiedehausen
1269605302a5SGregory Neil Shapiro		of INTERMETA.
1270605302a5SGregory Neil Shapiro	Fix possible race condition that could cause sendmail to forget
1271605302a5SGregory Neil Shapiro		running queues.  Problem noted by Jeff Wasilko of smoe.org.
1272605302a5SGregory Neil Shapiro	Handle bogus qf files better without triggering assertions.
1273605302a5SGregory Neil Shapiro		Problem noted by Guy Feltin.
1274605302a5SGregory Neil Shapiro	Protect against interrupted select() call when enforcing Milter
1275605302a5SGregory Neil Shapiro		read and write timeouts.  Patch from Gurusamy Sarathy of
1276605302a5SGregory Neil Shapiro		ActiveState.
1277605302a5SGregory Neil Shapiro	Matching queue IDs with -qI should be case sensitive.  Problem
1278605302a5SGregory Neil Shapiro		noted by Anne Bennett of Concordia University.
1279605302a5SGregory Neil Shapiro	If privileges have been dropped, don't try to change group ID to
1280605302a5SGregory Neil Shapiro		the RunAsUser group.  Problem noted by Neil Rickert of
1281605302a5SGregory Neil Shapiro		Northern Illinois University.
1282605302a5SGregory Neil Shapiro	Fix SafeFileEnvironment path munging when the specified path
1283605302a5SGregory Neil Shapiro		contains a trailing slash.  Based on patch from Dirk Meyer
1284605302a5SGregory Neil Shapiro		of Dinoex.
1285605302a5SGregory Neil Shapiro	Do not limit sendmail command line length to SM_ARG_MAX (usually
1286605302a5SGregory Neil Shapiro		4096).  Problem noted by Allan E Johannesen of Worcester
1287605302a5SGregory Neil Shapiro		Polytechnic Institute.
1288605302a5SGregory Neil Shapiro	Clear full name of sender for each new envelope to avoid bogus data
1289605302a5SGregory Neil Shapiro		if several mails are sent in one session and some of them
1290605302a5SGregory Neil Shapiro		do not have a From: header.  Problem noted by Bas Haakman.
1291605302a5SGregory Neil Shapiro	Change timeout check such that cached information about a connection
1292605302a5SGregory Neil Shapiro		will be immediately invalid if ConnectionCacheTimeout is zero.
1293605302a5SGregory Neil Shapiro		Based on patch from David Burns of Portland State University.
1294605302a5SGregory Neil Shapiro	Properly count message size for mailstats during mail collection.
1295605302a5SGregory Neil Shapiro		Problem noted by Werner Wiethege.
1296605302a5SGregory Neil Shapiro	Log complete response from LMTP delivery agent on failure.  Based on
1297605302a5SGregory Neil Shapiro		patch from by Motonori Nakamura of Kyoto University.
1298605302a5SGregory Neil Shapiro	Provide workaround for getopt() implementations that do not catch
1299605302a5SGregory Neil Shapiro		missing arguments.
1300605302a5SGregory Neil Shapiro	Fix the message size calculation if the message body is replaced by
1301605302a5SGregory Neil Shapiro		a milter filter and buffered file I/O is being used.
1302605302a5SGregory Neil Shapiro		Problem noted by Sergey Akhapkin of Dr.Web.
1303605302a5SGregory Neil Shapiro	Do not honor SIGUSR1 requests if running with extra privileges.
1304605302a5SGregory Neil Shapiro		Problem noted by Werner Wiethege.
1305605302a5SGregory Neil Shapiro	Prevent a file descriptor leak on mail delivery if the initial
1306605302a5SGregory Neil Shapiro		connect fails and DialDelay is set.  Patch from Servaas
1307605302a5SGregory Neil Shapiro		Vandenberghe of Katholieke Universiteit Leuven.
1308605302a5SGregory Neil Shapiro	Properly deal with a case where sendmail is called by root running
1309605302a5SGregory Neil Shapiro		a set-user-ID (non-root) program.  Problem noted by Jon
1310605302a5SGregory Neil Shapiro		Lusky of ISS Atlanta.
1311605302a5SGregory Neil Shapiro	Avoid leaving behind stray transcript (xf) files if multiple queue
1312605302a5SGregory Neil Shapiro		directories are used and mail is sent to a mailing list
1313605302a5SGregory Neil Shapiro		which has an owner- alias.  Problem noted by Anne Bennett
1314605302a5SGregory Neil Shapiro		of Concordia University.
1315605302a5SGregory Neil Shapiro	Fix class map parsing code if optional key is specified.  Problem
1316605302a5SGregory Neil Shapiro		found by Mario Nigrovic.
1317605302a5SGregory Neil Shapiro	The SMTP daemon no longer tries to fix up improperly dot-stuffed
1318605302a5SGregory Neil Shapiro		incoming messages.  A leading dot is always stripped by the
1319605302a5SGregory Neil Shapiro		SMTP receiver regardless of whether or not it is followed by
1320605302a5SGregory Neil Shapiro		another dot.  Problem noted by Jordan Ritter of darkridge.com.
1321605302a5SGregory Neil Shapiro	Fix corruption when doing automatic MIME 7-bit quoted-printable or
1322605302a5SGregory Neil Shapiro		base64 encoding to 8-bit text.  Problem noted by Mark
1323605302a5SGregory Neil Shapiro		Elvers.
1324605302a5SGregory Neil Shapiro	Correct the statistics gathered for total number of connections.
1325605302a5SGregory Neil Shapiro		Instead of being the exact same number as the total number
1326605302a5SGregory Neil Shapiro		of messages (T line in mailstats) it now represents the
1327605302a5SGregory Neil Shapiro		total number of TCP connections.
1328605302a5SGregory Neil Shapiro	Be more explicit about syntax errors in addresses, especially
1329605302a5SGregory Neil Shapiro		non-ASCII characters, and properly create DSNs if necessary.
1330605302a5SGregory Neil Shapiro		Problem noted by Leena Heino of the University of Tampere.
1331605302a5SGregory Neil Shapiro	Prevent small timeouts from being lost on slow machines if itimers
1332605302a5SGregory Neil Shapiro		are used.  Problem noted by Suresh Ramasubramanian.
1333605302a5SGregory Neil Shapiro	Prevent a race condition on child cleanup for delivery to files.
1334605302a5SGregory Neil Shapiro		Problem noted by Fletcher Mattox of the University of
1335605302a5SGregory Neil Shapiro		Texas.
1336605302a5SGregory Neil Shapiro	Change the SMTP error code for temporary map failures from 421
1337605302a5SGregory Neil Shapiro		to 451.
1338605302a5SGregory Neil Shapiro	Do not assume that realloc(NULL, size) works on all OS (this was
1339605302a5SGregory Neil Shapiro		only done in one place: queue group creation).  Based on
1340605302a5SGregory Neil Shapiro		patch by Bryan Costales.
1341605302a5SGregory Neil Shapiro	Initialize Timeout.iconnect in the code to prevent randomly short
1342605302a5SGregory Neil Shapiro		timeouts.  Problem noted by Bradley Watts of AT&T Canada.
1343605302a5SGregory Neil Shapiro	Do not try to send a second SMTP QUIT command if the remote
1344605302a5SGregory Neil Shapiro		responds to a MAIL command with a 421 reply or on I/O
1345605302a5SGregory Neil Shapiro		errors.  By doing so, the host was marked as having a
1346605302a5SGregory Neil Shapiro		temporary problem and other mail destined for that host was
1347605302a5SGregory Neil Shapiro		queued for the next queue run.  Problem noted by Fletcher
1348605302a5SGregory Neil Shapiro		Mattox of the University of Texas, Allan E Johannesen of
1349605302a5SGregory Neil Shapiro		Worcester Polytechnic Institute, Larry Greenfield of CMU,
1350605302a5SGregory Neil Shapiro		and Neil Rickert of Northern Illinois University.
1351605302a5SGregory Neil Shapiro	Ignore error replies from the SMTP QUIT command (including servers
1352605302a5SGregory Neil Shapiro		which drop the connection instead of responding to the
1353605302a5SGregory Neil Shapiro		command).
1354605302a5SGregory Neil Shapiro	Portability:
1355605302a5SGregory Neil Shapiro		Check LDAP_API_VERSION to determine if ldap_memfree() is
135694c01205SGregory Neil Shapiro			available.
1357605302a5SGregory Neil Shapiro		Define HPUX10 when building on HP-UX 10.X.  That platform
1358605302a5SGregory Neil Shapiro			now gets the proper _PATH_SENDMAIL and SMRSH_CMDDIR
1359605302a5SGregory Neil Shapiro			settings.  Patch from Elias Halldor Agustsson of
1360605302a5SGregory Neil Shapiro			Skyrr.
1361605302a5SGregory Neil Shapiro		Fix dependency building on Mac OS X and Darwin.  Problem
1362605302a5SGregory Neil Shapiro			noted by John Beck.
1363605302a5SGregory Neil Shapiro		Preliminary support for the sparc64 port of FreeBSD 5.0.
1364605302a5SGregory Neil Shapiro		Add /sbin/sh as an acceptable user shell on HP-UX.  From
1365605302a5SGregory Neil Shapiro			Rajesh Somasund of Hewlett-Packard.
1366605302a5SGregory Neil Shapiro	CONFIG: Add FEATURE(`authinfo') to allow a separate database for
1367605302a5SGregory Neil Shapiro		SMTP AUTH information.  This feature was actually added in
1368605302a5SGregory Neil Shapiro		8.12.0 but a release note was not included.
1369605302a5SGregory Neil Shapiro	CONFIG: Do not bounce mail if FEATURE(`ldap_routing')'s bounce
1370605302a5SGregory Neil Shapiro		parameter is set and the LDAP lookup returns a temporary
1371605302a5SGregory Neil Shapiro		error.
1372605302a5SGregory Neil Shapiro	CONFIG: Honor FEATURE(`relay_hosts_only') when using
1373605302a5SGregory Neil Shapiro		FEATURE(`relay_mail_from', `domain').  Problem noted by
1374605302a5SGregory Neil Shapiro		Krzysztof Oledzki.
1375605302a5SGregory Neil Shapiro	CONFIG: FEATURE(`msp') now disables any type of alias
1376605302a5SGregory Neil Shapiro		initialization as aliases are not needed for the MSP.
1377605302a5SGregory Neil Shapiro	CONFIG: Allow users to override RELAY_MAILER_ARGS when FEATURE(`msp')
1378605302a5SGregory Neil Shapiro		is in use.  Patch from Andrzej Filip.
1379605302a5SGregory Neil Shapiro	CONFIG: FEATURE(`msp') uses `[localhost]' as default instead of
1380605302a5SGregory Neil Shapiro		`localhost' and turns on MX lookups for the SMTP mailers.
1381605302a5SGregory Neil Shapiro		This will only have an effect if a parameter is specified,
1382605302a5SGregory Neil Shapiro		i.e., an MX lookup will be performed on the hostname unless
1383605302a5SGregory Neil Shapiro		it is embedded in square brackets.  Problem noted by
1384605302a5SGregory Neil Shapiro		Theo Van Dinter of Collective Technologies.
1385605302a5SGregory Neil Shapiro	CONFIG: Set confTIME_ZONE to USE_TZ in submit.mc (TimeZoneSpec= in
1386605302a5SGregory Neil Shapiro		submit.cf) to use $TZ for time stamps.  This is a compromise
1387605302a5SGregory Neil Shapiro		to allow for the proper time zone on systems where the
1388605302a5SGregory Neil Shapiro		default results in misleading time stamps. That is, syslog
1389605302a5SGregory Neil Shapiro		time stamps and Date headers on submitted mail will use the
1390605302a5SGregory Neil Shapiro		user's $TZ setting.  Problem noted by Mark Roth of the
1391605302a5SGregory Neil Shapiro		University of Illinois at Urbana-Champaign, solution proposed
1392605302a5SGregory Neil Shapiro		by Neil Rickert of Northern Illinois University.
1393605302a5SGregory Neil Shapiro	CONFIG: Mac OS X (Darwin) ships with mail.local as non-set-user-ID
1394605302a5SGregory Neil Shapiro		binary.  Adjust local mailer flags accordingly.  Problem
1395605302a5SGregory Neil Shapiro		noted by John Beck.
1396605302a5SGregory Neil Shapiro	CONTRIB: Add a warning to qtool.pl to not move queue files around
1397605302a5SGregory Neil Shapiro		if queue groups are used.
1398605302a5SGregory Neil Shapiro	CONTRIB: buildvirtuser: Add -f option to force rebuild.
1399605302a5SGregory Neil Shapiro	CONTRIB: smcontrol.pl: Add -f option to specify control socket.
1400605302a5SGregory Neil Shapiro	CONTRIB: smcontrol.pl: Add support for 'memdump' command.
1401605302a5SGregory Neil Shapiro		Suggested by Bryan Costales.
1402605302a5SGregory Neil Shapiro	DEVTOOLS: Add dependency generation for test programs.
1403605302a5SGregory Neil Shapiro	LIBMILTER: Remove conversion of port number for the socket
1404605302a5SGregory Neil Shapiro		structure that is passed to xxfi_connect().  Notice:
140594c01205SGregory Neil Shapiro		this fix requires that sendmail and libmilter both have
140694c01205SGregory Neil Shapiro		this change; mixing versions may lead to wrong port
1407605302a5SGregory Neil Shapiro		values depending on the endianness of the involved systems.
1408605302a5SGregory Neil Shapiro		Problem noted by Gisle Aas of ActiveState.
1409605302a5SGregory Neil Shapiro	LIBMILTER: If smfi_setreply() sets a custom reply code of '4XX' but
1410605302a5SGregory Neil Shapiro		SMFI_REJECT is returned, ignore the custom reply.  Do the
1411605302a5SGregory Neil Shapiro		same if '5XX' is used and SMFI_TEMPFAIL is returned.
1412605302a5SGregory Neil Shapiro	LIBMILTER: Install include files in ${INCLUDEDIR}/libmilter/ as
1413605302a5SGregory Neil Shapiro		required by mfapi.h.  Problem noted by Jose Marcio Martins
1414605302a5SGregory Neil Shapiro		da Cruz of Ecole Nationale Superieure des Mines de Paris.
1415605302a5SGregory Neil Shapiro	LIBSM: Add SM_CONF_LDAP_MEMFREE as a configuration define.  Set
1416605302a5SGregory Neil Shapiro		this to 1 if your LDAP client libraries include
1417605302a5SGregory Neil Shapiro		ldap_memfree().
1418605302a5SGregory Neil Shapiro	LIBSMDB: Avoid a file creation race condition for Berkeley DB 1.X
1419605302a5SGregory Neil Shapiro		and NDBM on systems with the O_EXLOCK open(2) flag.
1420605302a5SGregory Neil Shapiro	SMRSH: Fix compilation problem on some operating systems.  Problem
1421605302a5SGregory Neil Shapiro		noted by Christian Krackowizer of schuler technodat GmbH.
1422605302a5SGregory Neil Shapiro	VACATION: Allow root to operate on user vacation databases.  Based
1423605302a5SGregory Neil Shapiro		on patch from Greg Couch of the University of California,
1424605302a5SGregory Neil Shapiro		San Francisco.
1425605302a5SGregory Neil Shapiro	VACATION: Don't ignore -C option.  Based on patch by Bryan Costales.
1426605302a5SGregory Neil Shapiro	VACATION: Clarify option usage in the man page.  Problem noted by
1427605302a5SGregory Neil Shapiro		Joe Barbish.
1428605302a5SGregory Neil Shapiro	New Files:
1429605302a5SGregory Neil Shapiro		libmilter/docs/smfi_setbacklog.html
1430605302a5SGregory Neil Shapiro
143140266059SGregory Neil Shapiro8.12.2/8.12.2	2002/01/13
143240266059SGregory Neil Shapiro	Don't complain too much if stdin, stdout, or stderr are missing
143340266059SGregory Neil Shapiro		at startup, only log an error message.
143440266059SGregory Neil Shapiro	Fix potential problem if an unknown operation mode (character
143540266059SGregory Neil Shapiro		following -b) has been specified.
143640266059SGregory Neil Shapiro	Prevent purgestat from looping even if someone changes the
143740266059SGregory Neil Shapiro		permissions or owner of hoststatus files.  Problem noted
143840266059SGregory Neil Shapiro		by Kari Hurtta of the Finnish Meteorological Institute.
143940266059SGregory Neil Shapiro	Properly record dropped connections in persistent host status.
144040266059SGregory Neil Shapiro		Problem noted by Ulrich Windl of the Universitat
144140266059SGregory Neil Shapiro		Regensburg.
144240266059SGregory Neil Shapiro	Remove newlines from recipients read via sendmail -t to prevent
144340266059SGregory Neil Shapiro		SMTP protocol errors when sending the RCPT command.
144440266059SGregory Neil Shapiro		Problem noted by William D. Colburn of the New Mexico
144540266059SGregory Neil Shapiro		Institute of Mining and Technology.
144640266059SGregory Neil Shapiro	Only log milter body replacements once instead of for each body
144740266059SGregory Neil Shapiro		chunk sent by a filter.  Problem noted by Kari Hurtta of
144840266059SGregory Neil Shapiro		the Finnish Meteorological Institute.
144940266059SGregory Neil Shapiro	In 8.12.0 and 8.12.1, the headers were mistakenly not included in
145040266059SGregory Neil Shapiro		the message size calculation.  Problem noted by Kari Hurtta
145140266059SGregory Neil Shapiro		of the Finnish Meteorological Institute.
145240266059SGregory Neil Shapiro	Since 8.12 no longer forks at the SMTP MAIL command, the daemon
145340266059SGregory Neil Shapiro		needs to collect children status to avoid zombie processes.
145440266059SGregory Neil Shapiro		Problem noted by Chris Adams of HiWAAY Informations Services.
145540266059SGregory Neil Shapiro	Shut down "nullserver" and ETRN-only connections after 25 bad
145640266059SGregory Neil Shapiro		commands are issued.  This makes it consistent with normal
145740266059SGregory Neil Shapiro		SMTP connections.
145840266059SGregory Neil Shapiro	Avoid duplicate logging of milter rejections.  Problem noted by
145940266059SGregory Neil Shapiro		William D. Colburn of the New Mexico Institute of Mining
146040266059SGregory Neil Shapiro		and Technology.
146140266059SGregory Neil Shapiro	Error and delay DSNs were being sent to postmaster instead of the
146240266059SGregory Neil Shapiro		message sender if the sender had used a deprecated RFC822
146340266059SGregory Neil Shapiro		source route.  Problem noted by Kari Hurtta of the Finnish
146440266059SGregory Neil Shapiro		Meteorological Institute.
146540266059SGregory Neil Shapiro	Fix FallbackMXhost behavior for temporary errors during address
146640266059SGregory Neil Shapiro		parsing.  Problem noted by Jorg Bielak from Coastal Web
146740266059SGregory Neil Shapiro		Online.
146840266059SGregory Neil Shapiro	For systems on which stat(2) does not return a value for st_blksize
146940266059SGregory Neil Shapiro		that is the "optimal blocksize for I/O" three new compile
147040266059SGregory Neil Shapiro		time flags are available: SM_IO_MAX_BUF_FILE, SM_IO_MIN_BUF,
147140266059SGregory Neil Shapiro		and SM_IO_MAX_BUF, which define an upper limit for
147240266059SGregory Neil Shapiro		regular files, and a lower and upper limit for other file
147340266059SGregory Neil Shapiro		types, respectively.
147440266059SGregory Neil Shapiro	Fix a potential deadlock if two events are supposed to occur at
147540266059SGregory Neil Shapiro		exactly the same time.  Problem noted by Valdis Kletnieks
147640266059SGregory Neil Shapiro		of Virginia Tech.
147740266059SGregory Neil Shapiro	Perform envelope splitting for aliases listed directly in the
147840266059SGregory Neil Shapiro		alias file, not just for include/.forward files.
147940266059SGregory Neil Shapiro		Problem noted by John Beck of Sun Microsystems.
148040266059SGregory Neil Shapiro	Allow selection of queue group for mailq using -qGgroup.
148140266059SGregory Neil Shapiro		Based on patch by John Beck of Sun Microsystems.
148240266059SGregory Neil Shapiro	Make sure cached LDAP connections used my multiple maps in the same
148340266059SGregory Neil Shapiro		process are closed.  Patch from Taso N. Devetzis.
148440266059SGregory Neil Shapiro	If running as root, allow reading of class files in protected
148540266059SGregory Neil Shapiro		directories.  Patch from Alexander Talos of the University
148640266059SGregory Neil Shapiro		of Vienna.
148740266059SGregory Neil Shapiro	Correct a few LDAP related memory leaks.  Patch from David Powell
148840266059SGregory Neil Shapiro		of Sun Microsystems.
148940266059SGregory Neil Shapiro	Allow specification of an empty realm via the authinfo ruleset.
149040266059SGregory Neil Shapiro		This is necessary to interoperate as an SMTP AUTH client
149140266059SGregory Neil Shapiro		with servers that do not support realms when using
149240266059SGregory Neil Shapiro		CRAM-MD5.  Problem noted by Bjoern Voigt of TU Berlin.
149340266059SGregory Neil Shapiro	Avoid a potential information leak if AUTH PLAIN is used and the
149440266059SGregory Neil Shapiro		server gets stuck while processing that command.  Problem
149540266059SGregory Neil Shapiro		noted by Chris Adams from HiWAAY Informations Services.
149640266059SGregory Neil Shapiro	In addition to printing errors when parsing recipients during
149740266059SGregory Neil Shapiro		command line invocations log them to make it simpler
149840266059SGregory Neil Shapiro		to understand possible DSNs to postmaster.
149940266059SGregory Neil Shapiro	Do not use FallbackMXhost on mailers which have the F=0 flag set.
150040266059SGregory Neil Shapiro	Allow local mailers (F=l) to specify a host for TCP connections
150140266059SGregory Neil Shapiro		instead of forcing localhost.
150240266059SGregory Neil Shapiro	Obey ${DESTDIR} for installation of the client mail queue and
150340266059SGregory Neil Shapiro		submit.cf.  Patch from Peter 'Luna' Runestig.
150440266059SGregory Neil Shapiro	Re-enable support for -M option which was broken in 8.12.1.  Problem
150540266059SGregory Neil Shapiro		noted by Neil Rickert of Northern Illinois University.
150640266059SGregory Neil Shapiro	If a remote server violates the SMTP standard by unexpectedly
150740266059SGregory Neil Shapiro		dropping the connection during an SMTP transaction, stop
150840266059SGregory Neil Shapiro		sending commands.  This prevents bogus "Bad file number"
150940266059SGregory Neil Shapiro		recipient status.  Problem noted by Allan E Johannesen of
151040266059SGregory Neil Shapiro		Worcester Polytechnic Institute.
151140266059SGregory Neil Shapiro	Do not use a size estimate of 100 for postmaster bounces, it's
151240266059SGregory Neil Shapiro		almost always too small; do not guess the size at all.
151340266059SGregory Neil Shapiro	New VENDOR_DEC for Compaq/DEC.  Requested by James Seagraves of
151440266059SGregory Neil Shapiro		Compaq Computer Corp.
151540266059SGregory Neil Shapiro	Fix DaemonPortOptions IPv6 address parsing such that ::1 works
151640266059SGregory Neil Shapiro		properly.  Problem noted by Valdis Kletnieks of Virginia
151740266059SGregory Neil Shapiro		Tech.
151840266059SGregory Neil Shapiro	Portability:
151940266059SGregory Neil Shapiro		Fix IPv6 network interface probing on HP-UX 11.X.  Based on
152040266059SGregory Neil Shapiro			patch provided by HP.
152140266059SGregory Neil Shapiro		Mac OS X (aka Darwin) has a broken setreuid() call, but a
152240266059SGregory Neil Shapiro			working seteuid() call.  From Daniel J. Luke.
152340266059SGregory Neil Shapiro		Use proper type for a 32-bit integer on SINIX.  From Ganu
152440266059SGregory Neil Shapiro			Sachin of Siemens.
152540266059SGregory Neil Shapiro		Set SM_IO_MIN_BUF (4K) and SM_IO_MAX_BUF (8K) for HP-UX.
152640266059SGregory Neil Shapiro		Reduce optimization from +O3 to +O2 on HP-UX 11.  This
152740266059SGregory Neil Shapiro			fixes a problem that caused additional bogus
152840266059SGregory Neil Shapiro			characters to be written to the qf file.  Problem
152940266059SGregory Neil Shapiro			noted by Tapani Tarvainen.
153040266059SGregory Neil Shapiro		Set LDA_USE_LOCKF by default for UnixWare.  Problem noted
153140266059SGregory Neil Shapiro			by Boyd Lynn Gerber.
153240266059SGregory Neil Shapiro		Add support for HP MPE/iX.  See sendmail/README for port
153340266059SGregory Neil Shapiro			information.  From Mark Bixby of Hewlett-Packard.
153440266059SGregory Neil Shapiro		New portability defines HASNICE, HASRRESVPORT, USE_ENVIRON,
153540266059SGregory Neil Shapiro			USE_DOUBLE_FORK, and NEEDLINK.  See sendmail/README
153640266059SGregory Neil Shapiro			for more information.  From Mark Bixby of
153740266059SGregory Neil Shapiro			Hewlett-Packard.
153840266059SGregory Neil Shapiro		If an OS doesn't have a method of finding free disk space
153940266059SGregory Neil Shapiro			(SFS_NONE), lie and say there is plenty of space.
154040266059SGregory Neil Shapiro			From Mark Bixby of Hewlett-Packard.
154140266059SGregory Neil Shapiro		Add support for AIX 5.1.  From Valdis Kletnieks of
154240266059SGregory Neil Shapiro			Virginia Tech.
154340266059SGregory Neil Shapiro		Fix man page location for NeXTSTEP.  From Hisanori Gogota
154440266059SGregory Neil Shapiro			of the NTT/InterCommunication Center.
154540266059SGregory Neil Shapiro		Do not assume that strerror() always returns a string.
154640266059SGregory Neil Shapiro			Problem noted by John Beck of Sun Microsystems.
154740266059SGregory Neil Shapiro	CONFIG: Add OSTYPE(freebsd5) for FreeBSD 5.X, which has removed
154840266059SGregory Neil Shapiro		UUCP from the base operating system.  From Mark Murray of
154940266059SGregory Neil Shapiro		FreeBSD Services, Ltd.
155040266059SGregory Neil Shapiro	CONFIG: Add OSTYPE(mpeix) and a generic .mc file for HP MPE/iX
155140266059SGregory Neil Shapiro		systems.  From Mark Bixby of Hewlett-Packard.
155240266059SGregory Neil Shapiro	CONFIG: Add support for selecting a queue group for all mailers.
155340266059SGregory Neil Shapiro		Based on proposal by Stephen L. Ulmer of the University of
155440266059SGregory Neil Shapiro		Florida.
155540266059SGregory Neil Shapiro	CONFIG: Fix error reporting for compat_check.m4.  Problem noted by
155640266059SGregory Neil Shapiro		Altin Waldmann.
155740266059SGregory Neil Shapiro	CONFIG: Do not override user selections for confRUN_AS_USER and
155840266059SGregory Neil Shapiro		confTRUSTED_USER in FEATURE(msp).  From Mark Bixby of
155940266059SGregory Neil Shapiro		Hewlett-Packard.
156040266059SGregory Neil Shapiro	LIBMILTER: Fix bug that prevented the removal of a socket after
156140266059SGregory Neil Shapiro		libmilter terminated.  Problem reported by Andrey V. Pevnev
156240266059SGregory Neil Shapiro		of MSFU.
156340266059SGregory Neil Shapiro	LIBMILTER: Fix configuration error that required libsm for linking.
156440266059SGregory Neil Shapiro		Problem noted by Kari Hurtta of the Finnish Meteorological
156540266059SGregory Neil Shapiro		Institute.
156640266059SGregory Neil Shapiro	LIBMILTER: Portability fix for OpenUNIX.  Patch from Larry Rosenman.
156740266059SGregory Neil Shapiro	LIBMILTER: Fix a theoretical memory leak and a possible attempt
156840266059SGregory Neil Shapiro		to free memory twice.
156940266059SGregory Neil Shapiro	LIBSM: Fix a potential segmentation violation in the I/O library.
157040266059SGregory Neil Shapiro		Problem found and analyzed by John Beck and Tim Haley
157140266059SGregory Neil Shapiro		of Sun Microsystems.
157240266059SGregory Neil Shapiro	LIBSM: Do not clear the LDAP configuration information when
157340266059SGregory Neil Shapiro		terminating the mailbox database connection in the LDAP
157440266059SGregory Neil Shapiro		example code.  Problem noted by Nikos Voutsinas of the
157540266059SGregory Neil Shapiro		University of Athens.
157640266059SGregory Neil Shapiro	New Files:
157740266059SGregory Neil Shapiro		cf/cf/generic-mpeix.cf
157840266059SGregory Neil Shapiro		cf/cf/generic-mpeix.mc
157940266059SGregory Neil Shapiro		cf/ostype/freebsd5.m4
158040266059SGregory Neil Shapiro		cf/ostype/mpeix.m4
158140266059SGregory Neil Shapiro		devtools/OS/AIX.5.1
158240266059SGregory Neil Shapiro		devtools/OS/MPE-iX
158340266059SGregory Neil Shapiro		include/sm/os/sm_os_mpeix.h
158440266059SGregory Neil Shapiro		libsm/mpeix.c
158540266059SGregory Neil Shapiro
158640266059SGregory Neil Shapiro8.12.1/8.12.1	2001/10/01
158740266059SGregory Neil Shapiro	SECURITY: Check whether dropping group privileges actually succeeded
158840266059SGregory Neil Shapiro		to avoid possible compromises of the mail system by
158940266059SGregory Neil Shapiro		supplying bogus data.  Add configuration options for
159040266059SGregory Neil Shapiro		different set*gid() calls to reset saved gid.  Problem
159140266059SGregory Neil Shapiro		found by Michal Zalewski.
159240266059SGregory Neil Shapiro	PRIVACY: Prevent information leakage when sendmail has extra
159340266059SGregory Neil Shapiro		privileges by disabling debugging (command line -d flag)
159440266059SGregory Neil Shapiro		during queue runs and disabling ETRN when sendmail -bs is
159540266059SGregory Neil Shapiro		used.  Suggested by Michal Zalewski.
159640266059SGregory Neil Shapiro	Avoid memory corruption problems resulting from bogus .cf files.
159740266059SGregory Neil Shapiro		Problem found by Michal Zalewski.
159840266059SGregory Neil Shapiro	Set the ${server_addr} macro to name of mailer when doing LMTP
159940266059SGregory Neil Shapiro		delivery.  LMTP systems may offer SMTP Authentication or
160040266059SGregory Neil Shapiro		STARTTLS causing sendmail to use this macro in rulesets.
160140266059SGregory Neil Shapiro	If debugging is turned on (-d0.10) print not just the default
160240266059SGregory Neil Shapiro		values for configuration file and pid file but also the
160340266059SGregory Neil Shapiro		selected values.  Problem noted by Brad Chapman.
160440266059SGregory Neil Shapiro	Continue dealing with broken nameservers by ignoring SERVFAIL
160540266059SGregory Neil Shapiro		errors returned on T_AAAA (IPv6) lookups at delivery time
160640266059SGregory Neil Shapiro		if ResolverOptions=WorkAroundBrokenAAAA is set.  Previously
160740266059SGregory Neil Shapiro		this only applied to hostname canonification.  Problem
160840266059SGregory Neil Shapiro		noted by Bill Fenner of AT&T Research.
160940266059SGregory Neil Shapiro	Ignore comments in NIS host records when trying to find the
161040266059SGregory Neil Shapiro		canonical name for a host.
161140266059SGregory Neil Shapiro	When sendmail has extra privileges, limit mail submission command
161240266059SGregory Neil Shapiro		line flags (i.e., -G, -h, -F, etc.)  to mail submission
161340266059SGregory Neil Shapiro		operating modes (i.e., -bm, -bs, -bv, etc.).  Idea based on
161440266059SGregory Neil Shapiro		suggestion from Michal Zalewski.
161540266059SGregory Neil Shapiro	Portability:
161640266059SGregory Neil Shapiro		AIX: Use `oslevel` if available to determine OS version.
161740266059SGregory Neil Shapiro			`uname` does not given complete information.
161840266059SGregory Neil Shapiro			Problem noted by Keith Neufeld of the Cessna
161940266059SGregory Neil Shapiro			Aircraft Company.
162040266059SGregory Neil Shapiro		OpenUNIX: Use lockf() for LDA delivery (affects mail.local).
162140266059SGregory Neil Shapiro			Problem noticed by Boyd Lynn Gerber of ZENEX.
162240266059SGregory Neil Shapiro		Avoid compiler warnings by not using pointers to pass
162340266059SGregory Neil Shapiro			integers.  Problem noted by Todd C. Miller of
162440266059SGregory Neil Shapiro			Courtesan Consulting.
162540266059SGregory Neil Shapiro	CONFIG: Add restrictqrun to PrivacyOptions for the MSP to minimize
162640266059SGregory Neil Shapiro		problems with potential misconfigurations.
162740266059SGregory Neil Shapiro	CONFIG: Fix comment showing default value of MaxHopCount.  Problem
162840266059SGregory Neil Shapiro		noted by Greg Robinson of the Defence Science and
162940266059SGregory Neil Shapiro		Technology Organisation of Australia.
163040266059SGregory Neil Shapiro	CONFIG: dnsbl: If an argument specifies an error message in case
163140266059SGregory Neil Shapiro		of temporary lookup failures for DNS based blacklists
163240266059SGregory Neil Shapiro		then use it.
163340266059SGregory Neil Shapiro	LIBMILTER: Install mfdef.h, required by mfapi.h.  Problem noted by
163440266059SGregory Neil Shapiro		Richard A. Nelson of Debian.
163540266059SGregory Neil Shapiro	LIBMILTER: Add __P definition for OS that lack it.  Problem noted
163640266059SGregory Neil Shapiro		by Chris Adams from HiWAAY Informations Services.
163740266059SGregory Neil Shapiro	LIBSMDB: Fix a lock race condition that affects makemap, praliases,
163840266059SGregory Neil Shapiro		and vacation.
163940266059SGregory Neil Shapiro	MAKEMAP: Avoid going beyond the end of an input line if it does
164040266059SGregory Neil Shapiro		not contain a value for a key.  Based on patch from
164140266059SGregory Neil Shapiro		Mark Bixby from Hewlett-Packard.
164240266059SGregory Neil Shapiro	New Files:
164340266059SGregory Neil Shapiro		test/Build
164440266059SGregory Neil Shapiro		test/Makefile
164540266059SGregory Neil Shapiro		test/Makefile.m4
164640266059SGregory Neil Shapiro		test/README
164740266059SGregory Neil Shapiro		test/t_dropgid.c
164840266059SGregory Neil Shapiro		test/t_setgid.c
164940266059SGregory Neil Shapiro	Deleted Files:
165040266059SGregory Neil Shapiro		include/sm/stdio.h
165140266059SGregory Neil Shapiro		include/sm/sysstat.h
165240266059SGregory Neil Shapiro
165340266059SGregory Neil Shapiro8.12.0/8.12.0	2001/09/08
165440266059SGregory Neil Shapiro	*NOTICE*: The default installation of sendmail does not use
165540266059SGregory Neil Shapiro		set-user-ID root anymore.  You need to create a new user and
165640266059SGregory Neil Shapiro		a new group before installing sendmail (both called smmsp by
165740266059SGregory Neil Shapiro		default).  The installation process tries to install
165840266059SGregory Neil Shapiro		/etc/mail/submit.cf and creates /var/spool/clientmqueue by
165940266059SGregory Neil Shapiro		default.  Please see sendmail/SECURITY for details.
166040266059SGregory Neil Shapiro	SECURITY: Check for group and world writable forward and :include:
166140266059SGregory Neil Shapiro		files.  These checks can be turned off if absolutely
166240266059SGregory Neil Shapiro		necessary using the DontBlameSendmail option and the new
166340266059SGregory Neil Shapiro		flags:
166440266059SGregory Neil Shapiro			GroupWritableForwardFile
166540266059SGregory Neil Shapiro			WorldWritableForwardFile
166640266059SGregory Neil Shapiro			GroupWritableIncludeFile
166740266059SGregory Neil Shapiro			WorldWritableIncludeFile
166840266059SGregory Neil Shapiro		Problem noted by Slawek Zak of Politechnika Warszawska,
166940266059SGregory Neil Shapiro	SECURITY: Drop privileges when using address test mode.  Suggested
167040266059SGregory Neil Shapiro		by Michal Zalewski of the "Internet for Schools" project
167140266059SGregory Neil Shapiro		(IdS).
167240266059SGregory Neil Shapiro	Fixed problem of a global variable being used for a timeout jump
167340266059SGregory Neil Shapiro		point where the variable could become overused for more than
167440266059SGregory Neil Shapiro		one timeout concurrently.  This erroneous behavior resulted in
167540266059SGregory Neil Shapiro		a corrupted stack causing a core dump.  The timeout is now
167640266059SGregory Neil Shapiro		handled via libsm.  Problem noted by Michael Shapiro,
167740266059SGregory Neil Shapiro		John Beck, and Carl Smith of Sun Microsystems.
167840266059SGregory Neil Shapiro	If sendmail is set-group-ID then that group ID is used for permission
167940266059SGregory Neil Shapiro		checks (group ID of RunAsUser).  This allows use of a
168040266059SGregory Neil Shapiro		set-group-ID sendmail binary for initial message submission
168140266059SGregory Neil Shapiro		and no set-user-ID root sendmail is needed.  For details
168240266059SGregory Neil Shapiro		see sendmail/SECURITY.
168340266059SGregory Neil Shapiro	Log a warning if a non-trusted user changes the syslog label.
168440266059SGregory Neil Shapiro		Based on notice from Bryan Costales of SL3D, Inc.
168540266059SGregory Neil Shapiro	If sendmail is called for initial delivery, try to use submit.cf
168640266059SGregory Neil Shapiro		with a fallback of sendmail.cf as configuration file.  See
168740266059SGregory Neil Shapiro		sendmail/SECURITY.
168840266059SGregory Neil Shapiro	New configuration file option UseMSP to allow group writable queue
168940266059SGregory Neil Shapiro		files if the group is the same as that of a set-group-ID
169040266059SGregory Neil Shapiro		sendmail binary.  See sendmail/SECURITY.
169140266059SGregory Neil Shapiro	The .cf file is chosen based on the operation mode. For -bm (default),
169240266059SGregory Neil Shapiro		-bs, and -t it is submit.cf if it exists for all others it
169340266059SGregory Neil Shapiro		is sendmail.cf (to be backward compatible).  This selection
169440266059SGregory Neil Shapiro		can be changed by the new option -Ac or -Am (alternative .cf
169540266059SGregory Neil Shapiro		file: client or mta).  See sendmail/SECURITY.
169640266059SGregory Neil Shapiro	The SMTP server no longer forks on each MAIL command.  The ONEX
169740266059SGregory Neil Shapiro		command has been removed.
169840266059SGregory Neil Shapiro	Implement SMTP PIPELINING per RFC 2920.  It can be turned off
169940266059SGregory Neil Shapiro		at compile time or per host (ruleset).
170040266059SGregory Neil Shapiro	New option MailboxDatabase specifies the type of mailbox database
170140266059SGregory Neil Shapiro		used to look up local mail recipients; the default value
170240266059SGregory Neil Shapiro		is "pw", which means to use getpwnam().  New mailbox database
170340266059SGregory Neil Shapiro		types can be added by adding custom code to libsm/mbdb.c.
170440266059SGregory Neil Shapiro	Queue file names are now 15 characters long, rather than 14 characters
170540266059SGregory Neil Shapiro		long, to accomodate envelope splitting.  File systems with
170640266059SGregory Neil Shapiro		a 14 character file name length limit are no longer
170740266059SGregory Neil Shapiro		supported.
170840266059SGregory Neil Shapiro	Recipient list used for delivery now gets internally ordered by
170940266059SGregory Neil Shapiro		hostsignature (character string version of MX RR).  This orders
171040266059SGregory Neil Shapiro		recipients for the same MX RR's together meaning smaller
171140266059SGregory Neil Shapiro		portions of the list need to be scanned (instead of the whole
171240266059SGregory Neil Shapiro		list) each delivery() pass to determine piggybacking.  The
171340266059SGregory Neil Shapiro		significance of the change is better the larger the recipient
171440266059SGregory Neil Shapiro		list.  Hostsignature is now created during recipient list
171540266059SGregory Neil Shapiro		creation rather than just before delivery.
171640266059SGregory Neil Shapiro	Enhancements for more opportunistic piggybacking.  Previous
171740266059SGregory Neil Shapiro		piggybacking (called coincidental) extended to coattail
171840266059SGregory Neil Shapiro		piggybacking.  Rather than complete MX RR matching
171940266059SGregory Neil Shapiro		(coincidental) piggybacking is done if just the lowest value
172040266059SGregory Neil Shapiro		preference matches (coattail).
172140266059SGregory Neil Shapiro	If sendmail receives a temporary error on a RCPT TO: command, it will
172240266059SGregory Neil Shapiro		try other MX hosts if available.
172340266059SGregory Neil Shapiro	DefaultAuthInfo can contain a list of mechanisms to be used for
172440266059SGregory Neil Shapiro		outgoing (client-side) SMTP Authentication.
172540266059SGregory Neil Shapiro	New modifier 'A' for DaemonPortOptions/ClientPortOptions to disable
172640266059SGregory Neil Shapiro		AUTH (overrides 'a' modifier in DaemonPortOptions).  Based
172740266059SGregory Neil Shapiro		on patch from Lyndon Nerenberg of Messaging Direct.
172840266059SGregory Neil Shapiro	Enable AUTH mechanism EXTERNAL if STARTTLS is used.
172940266059SGregory Neil Shapiro	A new ruleset authinfo can be used to return client side
173040266059SGregory Neil Shapiro		authentication information for AUTH instead of DefaultAuthInfo.
173140266059SGregory Neil Shapiro		Therefore the DefaultAuthInfo option is deprecated and will be
173240266059SGregory Neil Shapiro		removed in future versions.
173340266059SGregory Neil Shapiro	Accept any SMTP continuation code 3xy for AUTH even though RFC 2554
173440266059SGregory Neil Shapiro		requires 334.  Mercury 1.48 is a known offender.
173540266059SGregory Neil Shapiro	Add new option AuthMaxBits to limit the overall encryption strength
173640266059SGregory Neil Shapiro		for the security layer in SMTP AUTH (SASL).  See
173740266059SGregory Neil Shapiro		doc/op/op.me for details.
173840266059SGregory Neil Shapiro	Introduce new STARTTLS related macros {cn_issuer}, {cn_subject},
173940266059SGregory Neil Shapiro		{cert_md5} which hold the CN (common name) of the CA that
174040266059SGregory Neil Shapiro		signed the presented certificate, the CN and the MD5 hash
174140266059SGregory Neil Shapiro		of the presented certificate, respectively.
174240266059SGregory Neil Shapiro	New ruleset try_tls to decide whether to try (as client) STARTTLS.
174340266059SGregory Neil Shapiro	New ruleset srv_features to enable/disable certain features in the
174440266059SGregory Neil Shapiro		server per connection.  See doc/op/op.me for details.
174540266059SGregory Neil Shapiro	New ruleset tls_rcpt to decide whether to send e-mail to a particular
174640266059SGregory Neil Shapiro		recipient; useful to decide whether a conection is secure
174740266059SGregory Neil Shapiro		enough on a per recipient basis.
174840266059SGregory Neil Shapiro	New option TLSSrvOptions to modify some aspects of the server
174940266059SGregory Neil Shapiro		for STARTTLS.
175040266059SGregory Neil Shapiro	If no certificate has been requested, the macro {verify} has the
175140266059SGregory Neil Shapiro		value "NOT".
175240266059SGregory Neil Shapiro	New M=S modifier for ClientPortOptions/DaemonPortOptions to turn off
175340266059SGregory Neil Shapiro		using/offering STARTTLS when delivering/receiving e-mail.
175440266059SGregory Neil Shapiro	Macro expand filenames/directories for certs and keys in the .cf file.
175540266059SGregory Neil Shapiro		Proposed by Neil Rickert of Northern Illinois University.
175640266059SGregory Neil Shapiro	Generate an ephemeral RSA key for a STARTTLS connection only if
175740266059SGregory Neil Shapiro		really required.  This change results in a noticable
175840266059SGregory Neil Shapiro		performance gains on most machines.  Moreover, if shared
175940266059SGregory Neil Shapiro		memory is in use, reuse the key several times.
176040266059SGregory Neil Shapiro	Add queue groups which can be used to group queue directories with
176140266059SGregory Neil Shapiro		the same behavior together.  See doc/op/op.me for details.
176240266059SGregory Neil Shapiro	If the new option FastSplit (defaults to one) has a value greater
176340266059SGregory Neil Shapiro		than zero, it suppresses the MX lookups on addresses when they
176440266059SGregory Neil Shapiro		are initially sorted which may result in faster envelope
176540266059SGregory Neil Shapiro		splitting.  If the mail is submitted directly from the
176640266059SGregory Neil Shapiro		command line, then the value also limits the number of
176740266059SGregory Neil Shapiro		processes to deliver the envelopes; if more envelopes are
176840266059SGregory Neil Shapiro		created they are only queued up and must be taken care of
176940266059SGregory Neil Shapiro		by a queue run.
177040266059SGregory Neil Shapiro	The check for 'enough disk space' now pays attention to which file
177140266059SGregory Neil Shapiro		system each queue directory resides in.
177240266059SGregory Neil Shapiro	All queue runners can be cleanly terminated via SIGTERM to parent.
177340266059SGregory Neil Shapiro	New option QueueFileMode for the default permissions of queue files.
177440266059SGregory Neil Shapiro	Add parallel queue runner code.  Allows multiple queue runners per work
177540266059SGregory Neil Shapiro		group (one or more queues in a multi-queue environment
177640266059SGregory Neil Shapiro		collected together) to process the same work list at the
177740266059SGregory Neil Shapiro		same time.
177840266059SGregory Neil Shapiro	Option MaxQueueChildren added to limit the number of concurrently
177940266059SGregory Neil Shapiro		active queue runner processes.
178040266059SGregory Neil Shapiro	New option MaxRunnersPerQueue to specify the maximum number of queue
178140266059SGregory Neil Shapiro		runners per queue group.
178240266059SGregory Neil Shapiro	Queue member selection by substring pattern matching now allows
178340266059SGregory Neil Shapiro		the pattern to be negated.  For -qI, -qR and -qS it is
178440266059SGregory Neil Shapiro		permissible for -q!I, -q!R and -q!S to mean remove members
178540266059SGregory Neil Shapiro		of the queue that match during processing.
178640266059SGregory Neil Shapiro	New -qp[time] option is similar to -qtime, except that instead of
178740266059SGregory Neil Shapiro		periodically forking a child to process the queue, a single
178840266059SGregory Neil Shapiro		child is forked for each queue that sleeps between queue
178940266059SGregory Neil Shapiro		runs.  A SIGHUP signal can be sent to restart this
179040266059SGregory Neil Shapiro		persistent queue runner.
179140266059SGregory Neil Shapiro	The SIGHUP signal now restarts a timed queue run process (i.e., a
179240266059SGregory Neil Shapiro		sendmail process which only runs the queue at an interval:
179340266059SGregory Neil Shapiro		sendmail -q15m).
179440266059SGregory Neil Shapiro	New option NiceQueueRun	to set the priority of queue runners.
179540266059SGregory Neil Shapiro		Proposed by Thom O'Connor.
179640266059SGregory Neil Shapiro	sendmail will run the queue(s) in the background when invoked with -q
179740266059SGregory Neil Shapiro		unless the new -qf option or -v is used.
179840266059SGregory Neil Shapiro	QueueSortOrder=Random sorts the queue randomly, which is useful if
179940266059SGregory Neil Shapiro		several queue runners are started by hand to avoid contention.
180040266059SGregory Neil Shapiro	QueueSortOrder=Modification sorts the queue by the modification time
180140266059SGregory Neil Shapiro		of the qf file (older entries first).
180240266059SGregory Neil Shapiro	Support Deliver By SMTP Service Extension (RFC 2852) which allows
180340266059SGregory Neil Shapiro		a client to specify an amount of time within which an e-mail
180440266059SGregory Neil Shapiro		should be delivered.  New option DeliverByMin added to set the
180540266059SGregory Neil Shapiro		minimum amount of time or disable the extension.
180640266059SGregory Neil Shapiro	Non-printable characters (ASCII: 0-31, 127) in mailbox addresses are
180740266059SGregory Neil Shapiro		not allowed unless escaped or quoted.
180840266059SGregory Neil Shapiro	Add support for a generic DNS map.  Based on a patch contributed
180940266059SGregory Neil Shapiro		by Leif Johansson of Stockholm University, which was based on
181040266059SGregory Neil Shapiro		work by Assar Westerlund of Swedish Institute of Computer
181140266059SGregory Neil Shapiro		Science, Kista, and Johan Danielsson of Royal Institute of
181240266059SGregory Neil Shapiro		Technology, Stockholm, Sweden.
181340266059SGregory Neil Shapiro	MX records will be looked up for FallBackMXhost.  To use the old
181440266059SGregory Neil Shapiro		behavior (no MX lookups), put the name in square brackets.
181540266059SGregory Neil Shapiro		Proposed by Thom O'Connor.
181640266059SGregory Neil Shapiro	Use shared memory to store free space of filesystems that are used
181740266059SGregory Neil Shapiro		for queues, if shared memory is available and if a key is set
181840266059SGregory Neil Shapiro		via SharedMemoryKey.  This minimizes the number of system
181940266059SGregory Neil Shapiro		calls to check the available space.  See doc/op/op.me for
182040266059SGregory Neil Shapiro		details.
182140266059SGregory Neil Shapiro	If shared memory is compiled in the option -bP can be used to print
182240266059SGregory Neil Shapiro		the number of entries in the queue(s).
182340266059SGregory Neil Shapiro	Enable generic mail filter API (milter).  See libmilter/README
182440266059SGregory Neil Shapiro		and the usual documentation for details.
182540266059SGregory Neil Shapiro	Remove AutoRebuildAliases option, deprecated since 8.10.
182640266059SGregory Neil Shapiro	Remove '-U' (initial user submission) command line option as
182740266059SGregory Neil Shapiro		announced in 8.10.
182840266059SGregory Neil Shapiro	Remove support for non-standard SMTP command XUSR.  Use an MSA instead.
182940266059SGregory Neil Shapiro	New macro {addr_type} which contains whether the current address is
183040266059SGregory Neil Shapiro		an envelope sender or recipient address.  Suggested by
183140266059SGregory Neil Shapiro		Neil Rickert of Northern Illinois University.
183240266059SGregory Neil Shapiro	Two new options for host maps: -d (retransmission timeout),
183340266059SGregory Neil Shapiro		-r (number of retries).
183440266059SGregory Neil Shapiro	New option for LDAP maps: the -V<sep> allows you to specify a
183540266059SGregory Neil Shapiro		separator such that a lookup can return both an attribute
183640266059SGregory Neil Shapiro		and value separated by the given separator.
183740266059SGregory Neil Shapiro	Add new operators '%', '|', '&' (modulo, binary or, binary and)
183840266059SGregory Neil Shapiro		to map class arith.
183940266059SGregory Neil Shapiro	If DoubleBounceAddress expands to an empty string, ``double bounces''
184040266059SGregory Neil Shapiro		(errors that occur when sending an error message) are dropped.
184140266059SGregory Neil Shapiro	New DontBlameSendmail options GroupReadableSASLDBFile and
184240266059SGregory Neil Shapiro		GroupWritableSASLDBFile to relax requirements for sasldb files.
184340266059SGregory Neil Shapiro	New DontBlameSendmail options GroupReadableKeyFile to relax
184440266059SGregory Neil Shapiro		requirements for files containing secret keys.  This is
184540266059SGregory Neil Shapiro		necessary for the MSP if client authentification is used.
184640266059SGregory Neil Shapiro	Properly handle quoted filenames for class files (to allow for
184740266059SGregory Neil Shapiro		filenames with spaces).
184840266059SGregory Neil Shapiro	Honor the resolver option RES_NOALIASES when canonifying hostnames.
184940266059SGregory Neil Shapiro	Add macros to avoid the reuse of {if_addr} etc:
185040266059SGregory Neil Shapiro		{if_name_out}	hostname of interface of outgoing connection.
185140266059SGregory Neil Shapiro		{if_addr_out}	address of interface of outgoing connection.
185240266059SGregory Neil Shapiro		{if_family_out}	family of interface of outgoing connection.
185340266059SGregory Neil Shapiro		The latter two are only set if the interface does not belong
185440266059SGregory Neil Shapiro		to the loopback net.
185540266059SGregory Neil Shapiro	Add macro {nrcpts} which holds the number of (validated) recipients.
185640266059SGregory Neil Shapiro	DialDelay option applies only to mailers with flag 'Z'.  Patch from
185740266059SGregory Neil Shapiro		Juergen Georgi of RUS University of Stuttgart.
185840266059SGregory Neil Shapiro	New Timeout.lhlo,auth,starttls options to limit the time waiting for
185940266059SGregory Neil Shapiro		an answer to the LMTP LHLO, SMTP AUTH or STARTTLS command.
186040266059SGregory Neil Shapiro	New Timeout.aconnect option to limit the overall waiting time for
186140266059SGregory Neil Shapiro		all connections for a single delivery attempt to succeed.
186240266059SGregory Neil Shapiro	Limit the rate recipients in the SMTP envelope are accepted once
186340266059SGregory Neil Shapiro		a threshold number of recipients has been rejected (option
186440266059SGregory Neil Shapiro		BadRcptThrottle).  From Gregory A Lundberg of the WU-FTPD
186540266059SGregory Neil Shapiro		Development Group.
186640266059SGregory Neil Shapiro	New option DelayLA to delay connections if the load averages
186740266059SGregory Neil Shapiro		exceeds the specified value.  The default of 0 does not
186840266059SGregory Neil Shapiro		change the previous behavior.  A value greater than 0
186940266059SGregory Neil Shapiro		will cause sendmail to sleep for one second on most
187040266059SGregory Neil Shapiro		SMTP commands and before accepting connections if that
187140266059SGregory Neil Shapiro		load average is exceeded.
187240266059SGregory Neil Shapiro	Use a dynamic (instead of fixed-size) buffer for the list of
187340266059SGregory Neil Shapiro		recipients that are sent during a connection to a mailer.
187440266059SGregory Neil Shapiro		This also introduces a new mailer field 'r' which defines
187540266059SGregory Neil Shapiro		the maximum number of recipients (defaults to 100).
187640266059SGregory Neil Shapiro		Based on patch by Motonori Nakamura of Kyoto University.
187740266059SGregory Neil Shapiro	Add new F=1 mailer flag to disable sending of null characters ('\0').
187840266059SGregory Neil Shapiro	Add new F=2 mailer flag to disable use of ESMTP, using SMTP instead.
187940266059SGregory Neil Shapiro	The deprecated [TCP] builtin mailer pathname (P=) is gone.  Use [IPC]
188040266059SGregory Neil Shapiro		instead.
188140266059SGregory Neil Shapiro	IPC is no longer available as first mailer argument (A=) for [IPC]
188240266059SGregory Neil Shapiro		builtin mailer pathnames.  Use TCP instead.
188340266059SGregory Neil Shapiro	PH map code updated to use the new libphclient API instead of the
188440266059SGregory Neil Shapiro		old libqiapi library.  Contributed by Mark Roth of the
188540266059SGregory Neil Shapiro		University of Illinois at Urbana-Champaign.
188640266059SGregory Neil Shapiro	New option DirectSubmissionModifiers to define {daemon_flags}
188740266059SGregory Neil Shapiro		for direct (command line) submissions.
188840266059SGregory Neil Shapiro	New M=O modifier for DaemonPortOptions to ignore the socket in
188940266059SGregory Neil Shapiro		case of failures.  Based on patch by Jun-ichiro itojun
189040266059SGregory Neil Shapiro		Hagino of the KAME Project.
189140266059SGregory Neil Shapiro	Add Disposition-Notification-To: (RFC 2298) to the list of headers
189240266059SGregory Neil Shapiro		whose content is rewritten similar to Reply-To:.
189340266059SGregory Neil Shapiro		Proposed by Andrzej Filip.
189440266059SGregory Neil Shapiro	Use STARTTLS/AUTH=server/client for logging incoming/outgoing
189540266059SGregory Neil Shapiro		STARTTLS/AUTH connections; log incoming connections at level
189640266059SGregory Neil Shapiro		9 or higher.  Use AUTH/STARTTLS instead of SASL/TLS for SMTP
189740266059SGregory Neil Shapiro		AUTH/STARTTLS related logfile entries.
189840266059SGregory Neil Shapiro	Convert unprintable characters (and backslash) into octal or C format
189940266059SGregory Neil Shapiro		before logging.
190040266059SGregory Neil Shapiro	Log recipients if no message is transferred but QUIT/RSET is given
190140266059SGregory Neil Shapiro		(at LogLevel 9/10 or higher).
190240266059SGregory Neil Shapiro	Log discarded recipients at LogLevel 10 or higher.
190340266059SGregory Neil Shapiro	Do not log "did not issue MAIL/EXPN/VRFY/ETRN" for connections
190440266059SGregory Neil Shapiro		in which most commands are rejected due to check_relay or
190540266059SGregory Neil Shapiro		TCP Wrappers if the host tries one of those commands anyway.
190640266059SGregory Neil Shapiro	Change logging format for cloned envelopes to be similar to that for
190740266059SGregory Neil Shapiro		DSNs ("old id: new id: clone").  Suggested by Ulrich Windl
190840266059SGregory Neil Shapiro		of the Universitat Regensburg.
190940266059SGregory Neil Shapiro	Added libsm, a C library of general purpose abstractions including
191040266059SGregory Neil Shapiro		assertions, tracing and debugging with named debug categories,
191140266059SGregory Neil Shapiro		exception handling, malloc debugging, resource pools,
191240266059SGregory Neil Shapiro		portability abstractions, and an extensible buffered I/O
191340266059SGregory Neil Shapiro		package.  It will at some point replace libsmutil.
191440266059SGregory Neil Shapiro		See libsm/index.html for details.
191540266059SGregory Neil Shapiro	Fixed most memory leaks in sendmail which were previously taken
191640266059SGregory Neil Shapiro		care of by fork() and exit().
191740266059SGregory Neil Shapiro	Use new sm_io*() functions in place of stdio calls.  Allows for
191840266059SGregory Neil Shapiro		more consistent portablity amongst different platforms
191940266059SGregory Neil Shapiro		new and old (from new libsm).
192040266059SGregory Neil Shapiro	Common I/O pkg means just one buffering method needed instead of two
192140266059SGregory Neil Shapiro		('bf_portable' and 'bf_torek' now just 'bf').
192240266059SGregory Neil Shapiro	Sfio no longer needed as SASL/TLS code uses sm_io*() API's.
192340266059SGregory Neil Shapiro	New possible value 'interactive' for SuperSafe which can be used
192440266059SGregory Neil Shapiro		together with DeliveryMode=interactive is to avoid some disk
192540266059SGregory Neil Shapiro		synchronizations calls.
192640266059SGregory Neil Shapiro	Add per-recipient status information to mailq -v output.
192740266059SGregory Neil Shapiro	T_ANY queries are no longer used by sendmail.
192840266059SGregory Neil Shapiro	When compiling with "gcc -O -Wall" specify "-DSM_OMIT_BOGUS_WARNINGS"
192940266059SGregory Neil Shapiro		too (see include/sm/cdefs.h for more info).
193040266059SGregory Neil Shapiro	sendmail -d now has general support for named debug categories.
193140266059SGregory Neil Shapiro		See libsm/debug.html and section 3.4 of doc/op/op.me
193240266059SGregory Neil Shapiro		for details.
193340266059SGregory Neil Shapiro	Eliminate the "postmaster warning" DSNs on address parsing errors
193440266059SGregory Neil Shapiro		such as unbalanced angle brackets or parentheses.  The DSNs
193540266059SGregory Neil Shapiro		generated by this condition were illegal (not RFC conform).
193640266059SGregory Neil Shapiro		Problem noted by Ulrich Windl of the Universitaet Regensburg.
193740266059SGregory Neil Shapiro	Do not issue a DSN if the ruleset localaddr resolves to the $#error
193840266059SGregory Neil Shapiro		mailer and the recipient has hence been rejected during the
193940266059SGregory Neil Shapiro		SMTP dialogue.  Problem reported by Larry Greenfield of CMU.
194040266059SGregory Neil Shapiro	Deal with a case of multiple deliveries on misconfigured systems
194140266059SGregory Neil Shapiro		that do not have postmaster defined.  If an email was sent
194240266059SGregory Neil Shapiro		from an address to which a DSN cannot be returned and
194340266059SGregory Neil Shapiro		in which at least one recipient address is non-deliverable,
194440266059SGregory Neil Shapiro		then that email had been delivered in each queue run.
194540266059SGregory Neil Shapiro		Problem reported by Matteo HCE Valsasna of Universita
194640266059SGregory Neil Shapiro		degli Studi dell'Insubria.
194740266059SGregory Neil Shapiro	The compilation options SMTP, DAEMON, and QUEUE have been removed,
194840266059SGregory Neil Shapiro		i.e., the corresponding code is always compiled in now.
194940266059SGregory Neil Shapiro	Log the command line in daemon/queue-run mode at LogLevel 10 and
195040266059SGregory Neil Shapiro		higher.  Suggested by Robert Harker of Harker Systems.
195140266059SGregory Neil Shapiro	New ResolverOptions setting: WorkAroundBrokenAAAA.  When
195240266059SGregory Neil Shapiro		attempting to canonify a hostname, some broken nameservers
195340266059SGregory Neil Shapiro		will return SERVFAIL (a temporary failure) on T_AAAA (IPv6)
195440266059SGregory Neil Shapiro		lookups.  If you want to excuse this behavior, use this new
195540266059SGregory Neil Shapiro		flag.  Suggested by Chris Foote of SE Network Access and
195640266059SGregory Neil Shapiro		Mark Roth of the University of Illinois at
195740266059SGregory Neil Shapiro		Urbana-Champaign.
195840266059SGregory Neil Shapiro	Free the memory allocated by getipnodeby{addr,name}().  Problem
195940266059SGregory Neil Shapiro		noted by Joy Latten of IBM.
196040266059SGregory Neil Shapiro	ConnectionRateThrottle limits the number of connections per second
196140266059SGregory Neil Shapiro		to each daemon individually, not the overall number of
196240266059SGregory Neil Shapiro		connections.
196340266059SGregory Neil Shapiro	Specifying only "ldap:" as an AliasFile specification will force
196440266059SGregory Neil Shapiro		sendmail to use a default alias schema as outlined in the
196540266059SGregory Neil Shapiro		``USING LDAP FOR ALIASES, MAPS, and CLASSES'' section of
196640266059SGregory Neil Shapiro		cf/README.
196740266059SGregory Neil Shapiro	Add a new syntax for the 'F' (file class) sendmail.cf command.  If
196840266059SGregory Neil Shapiro		the first character after the class name is not a '/' or a
196940266059SGregory Neil Shapiro		'|' and it contains an '@' (e.g., F{X}key@class:spec), the
197040266059SGregory Neil Shapiro		rest of the line will be parsed as a map lookup.  This
197140266059SGregory Neil Shapiro		allows classes to be filled via a map lookup.  See op.me
197240266059SGregory Neil Shapiro		for more syntax information.  Specifically, this can be
197340266059SGregory Neil Shapiro		used for commands such as VIRTUSER_DOMAIN_FILE() to read
197440266059SGregory Neil Shapiro		the list of domains via LDAP (see the ``USING LDAP FOR
197540266059SGregory Neil Shapiro		ALIASES, MAPS, and CLASSES'' section of cf/README for an
197640266059SGregory Neil Shapiro		example).
197740266059SGregory Neil Shapiro	The new macro ${sendmailMTACluster} determines the LDAP cluster for
197840266059SGregory Neil Shapiro		the default schema used in the above two items.
197940266059SGregory Neil Shapiro	Unless DontBlameSendmail=RunProgramInUnsafeDirPath is set, log a
198040266059SGregory Neil Shapiro		warning if a program being run from a mailer or file class
198140266059SGregory Neil Shapiro		(e.g., F|/path/to/prog) is in an unsafe directory path.
198240266059SGregory Neil Shapiro	Unless DontBlameSendmail=RunWritableProgram is set, log a warning
198340266059SGregory Neil Shapiro		if a program being run from a mailer or file class
198440266059SGregory Neil Shapiro		(e.g., F|/path/to/prog) is group or world writable.
198540266059SGregory Neil Shapiro	Loopback interfaces (e.g., "lo0") are now probed for class {w}
198640266059SGregory Neil Shapiro		hostnames.  Setting DontProbeInterfaces to "loopback"
198740266059SGregory Neil Shapiro		(without quotes) will disable this and return to the
198840266059SGregory Neil Shapiro		pre-8.12 behavior of only probing non-loopback interfaces.
198940266059SGregory Neil Shapiro		Suggested by Bryan Stansell of GNAC.
199040266059SGregory Neil Shapiro	In accordance with RFC 2821 section 4.1.4, accept multiple
199140266059SGregory Neil Shapiro		HELO/EHLO commands.
199240266059SGregory Neil Shapiro	Multiple ClientPortOptions settings are now allowed, one for each
199340266059SGregory Neil Shapiro		possible protocol family which may be used for outgoing
199440266059SGregory Neil Shapiro		connections.  Restrictions placed on one family only affect
199540266059SGregory Neil Shapiro		outgoing connections on that particular family.  Because of
199640266059SGregory Neil Shapiro		this change, the ${client_flags} macro is not set until the
199740266059SGregory Neil Shapiro		connection is established.  Based on patch from Motonori
199840266059SGregory Neil Shapiro		Nakamura of Kyoto University.
199940266059SGregory Neil Shapiro	PrivacyOptions=restrictexpand instructs sendmail to drop privileges
200040266059SGregory Neil Shapiro		when the -bv option is given by users who are neither root
200140266059SGregory Neil Shapiro		nor the TrustedUser so users can not read private aliases,
200240266059SGregory Neil Shapiro		forwards, or :include: files.  It also will override the -v
200340266059SGregory Neil Shapiro		(verbose) command line option.
200440266059SGregory Neil Shapiro	If the M=b modifier is set in DaemonPortOptions and the interface
200540266059SGregory Neil Shapiro		address can't be used for the outgoing connection, fall
200640266059SGregory Neil Shapiro		back to the settings in ClientPortOptions (if set).
200740266059SGregory Neil Shapiro		Problem noted by John Beck of Sun Microsystems.
200840266059SGregory Neil Shapiro	New named config file rule check_data for DATA command (input:
200940266059SGregory Neil Shapiro		number of recipients).  Based on patch from Mark Roth of
201040266059SGregory Neil Shapiro		the University of Illinois at Urbana-Champaign.
201140266059SGregory Neil Shapiro	Add support for ETRN queue selection per RFC 1985.  The queue group
201240266059SGregory Neil Shapiro		can be specified using the '#' option character.  For
201340266059SGregory Neil Shapiro		example, 'ETRN #queuegroup'.
201440266059SGregory Neil Shapiro	If an LDAP server times out or becomes unavailable, close the
201540266059SGregory Neil Shapiro		current connection and reopen to get to one of the fallback
201640266059SGregory Neil Shapiro		servers.  Patch from Paul Hilchey of the University of
201740266059SGregory Neil Shapiro		British Columbia.
201840266059SGregory Neil Shapiro	Make default error number on $#error messages 550 instead of 501
201940266059SGregory Neil Shapiro		because 501 is not allowed on all commands.
202040266059SGregory Neil Shapiro	The .cf file option UnsafeGroupWrites is deprecated, it should be
202140266059SGregory Neil Shapiro		replaced with the settings GroupWritableForwardFileSafe
202240266059SGregory Neil Shapiro		and GroupWritableIncludeFileSafe in DontBlameSendmail
202340266059SGregory Neil Shapiro		if required.
202440266059SGregory Neil Shapiro	The deprecated ldapx map class has been removed.  Use the ldap map
202540266059SGregory Neil Shapiro		class instead.
202640266059SGregory Neil Shapiro	Any IPv6 addresses used in configuration should be prefixed by the
202740266059SGregory Neil Shapiro		"IPv6:" tag to identify the address properly.  For example,
202840266059SGregory Neil Shapiro		if you want to add the IPv6 address [2002:c0a8:51d2::23f4] to
202940266059SGregory Neil Shapiro		class {w}, you would need to add [IPv6:2002:c0a8:51d2::23f4].
203040266059SGregory Neil Shapiro	Change the $&{opMode} macro if the operation mode changes while the
203140266059SGregory Neil Shapiro		MTA is running.  For example, during a queue run.
203240266059SGregory Neil Shapiro	Add "use_inet6" as a new ResolverOptions flag to control the
203340266059SGregory Neil Shapiro		RES_USE_INET6 resolver option.  Based on patch from Rick
203440266059SGregory Neil Shapiro		Nelson of IBM.
203540266059SGregory Neil Shapiro	The maximum number of commands before the MTA slows down when too
203640266059SGregory Neil Shapiro		many "light weight" commands have been received are now
203740266059SGregory Neil Shapiro		configurable during compile time.  The current values and
203840266059SGregory Neil Shapiro		their defaults are:
203940266059SGregory Neil Shapiro		    MAXBADCOMMANDS	25	unknown commands
204040266059SGregory Neil Shapiro		    MAXNOOPCOMMANDS	20	NOOP, VERB, ONEX, XUSR
204140266059SGregory Neil Shapiro		    MAXHELOCOMMANDS	3	HELO, EHLO
204240266059SGregory Neil Shapiro		    MAXVRFYCOMMANDS	6	VRFY, EXPN
204340266059SGregory Neil Shapiro		    MAXETRNCOMMANDS	8	ETRN
204440266059SGregory Neil Shapiro		Setting a value to 0 disables the check.  Patch from Bryan
204540266059SGregory Neil Shapiro		Costales of SL3D, Inc.
204640266059SGregory Neil Shapiro	The header syntax H?${MyMacro}?X-My-Header: now not only checks if
204740266059SGregory Neil Shapiro		${MyMacro} is defined but also that it is not empty.
204840266059SGregory Neil Shapiro	Properly quote usernames with special characters if they are used
204940266059SGregory Neil Shapiro		in headers.  Problem noted by Kari Hurtta of the Finnish
205040266059SGregory Neil Shapiro		Meteorological Institute.
205140266059SGregory Neil Shapiro	Be sure to include the proper Final-Recipient: DSN header in bounce
205240266059SGregory Neil Shapiro		messages for messages for mailing list expanded addresses
205340266059SGregory Neil Shapiro		which are not delivered on the initial attempt.
205440266059SGregory Neil Shapiro	Do not treat errors as sticky when doing delivery via LMTP after
205540266059SGregory Neil Shapiro		the final dot has been sent to avoid affecting future
205640266059SGregory Neil Shapiro		deliveries.  Problem reported by Larry Greenfield of CMU.
205740266059SGregory Neil Shapiro	New compile time flag REQUIRES_DIR_FSYNC which turns on support for
205840266059SGregory Neil Shapiro		file systems that require to call fsync() for a directory
205940266059SGregory Neil Shapiro		if the meta-data in it has been changed.  This should be
206040266059SGregory Neil Shapiro		set at least for ReiserFS; it is enabled by default for Linux.
206140266059SGregory Neil Shapiro		See sendmail/README for further information.
206240266059SGregory Neil Shapiro	Avoid file locking deadlock when updating the statistics file if
206340266059SGregory Neil Shapiro		sendmail is signaled to terminate.  Problem noted by
206440266059SGregory Neil Shapiro		Christophe Wolfhugel of France Telecom.
206540266059SGregory Neil Shapiro	Set the $c macro (hop count) as it is being set instead of when the
206640266059SGregory Neil Shapiro		envelope is initialized.  Problem noted by Kari Hurtta of
206740266059SGregory Neil Shapiro		the Finnish Meteorological Institute.
206840266059SGregory Neil Shapiro	Properly count recipients for DeliveryMode defer and queue.  Fix
206940266059SGregory Neil Shapiro		from Peter A. Friend of EarthLink.
207040266059SGregory Neil Shapiro	Treat invalid hesiod lookups as permanent errors instead of
207140266059SGregory Neil Shapiro		temporary errors.  Problem noted by Russell McOrmond of
207240266059SGregory Neil Shapiro		flora.ca.
207340266059SGregory Neil Shapiro	Portability:
207440266059SGregory Neil Shapiro		Remove support for AIX 2, which supports only 14 character
207540266059SGregory Neil Shapiro			filenames and is outdated anyway.  Suggested by
207640266059SGregory Neil Shapiro			Valdis Kletnieks of Virginia Tech.
207740266059SGregory Neil Shapiro		Change several settings for Irix 6: remove confSBINDIR,
207840266059SGregory Neil Shapiro			i.e., use default /usr/sbin, change owner/group
207940266059SGregory Neil Shapiro			of man pages and user-executable to root/sys, set
208040266059SGregory Neil Shapiro			optimization limit to 0 (unlimited).  Based on patch
208140266059SGregory Neil Shapiro			from Ayamura Kikuchi, M.D, and proposal from Kari
208240266059SGregory Neil Shapiro			Hurtta of the Finnish Meteorological Institute.
208340266059SGregory Neil Shapiro		Do not assume LDAP support is installed by default under
208440266059SGregory Neil Shapiro			Solaris 8 and later.
208540266059SGregory Neil Shapiro		Add support for OpenUNIX.
208640266059SGregory Neil Shapiro	CONFIG: Increment version number of config file to 10.
208740266059SGregory Neil Shapiro	CONFIG: Add an install target and a README file in cf/cf.
208840266059SGregory Neil Shapiro	CONFIG: Don't accept addresses of the form a@b@, a@b@c, a@[b]c, etc.
208940266059SGregory Neil Shapiro	CONFIG: Reject empty recipient addresses (in check_rcpt).
209040266059SGregory Neil Shapiro	CONFIG: The access map uses an option of -T<TMPF> to deal with
209140266059SGregory Neil Shapiro		temporary lookup failures.
209240266059SGregory Neil Shapiro	CONFIG: New value for access map: SKIP, which causes the default
209340266059SGregory Neil Shapiro		action to be taken by aborting the search for domain names
209440266059SGregory Neil Shapiro		or IP nets.
209540266059SGregory Neil Shapiro	CONFIG: check_rcpt can deal with TEMPFAIL for either recipient or
209640266059SGregory Neil Shapiro		relay address as long as the other part allows the email
209740266059SGregory Neil Shapiro		to get through.
209840266059SGregory Neil Shapiro	CONFIG: Entries for virtusertable can make use of a third parameter
209940266059SGregory Neil Shapiro		"%3" which contains "+detail" of a wildcard match, i.e., an
210040266059SGregory Neil Shapiro		entry like user+*@domain.  This allows handling of details by
210140266059SGregory Neil Shapiro		using %1%3 as the RHS.  Additionally, a "+" wildcard has been
210240266059SGregory Neil Shapiro		introduced to match only non-empty details of addresses.
210340266059SGregory Neil Shapiro	CONFIG: Numbers for rulesets used by MAILERs have been removed
210440266059SGregory Neil Shapiro		and hence there is no required order within the MAILER
210540266059SGregory Neil Shapiro		section anymore except for MAILER(`uucp') which must come
210640266059SGregory Neil Shapiro		after MAILER(`smtp') if uucp-dom and uucp-uudom are used.
210740266059SGregory Neil Shapiro	CONFIG: Hosts listed in the generics domain class {G}
210840266059SGregory Neil Shapiro		(GENERICS_DOMAIN() and GENERICS_DOMAIN_FILE()) are treated
210940266059SGregory Neil Shapiro		as canonical.  Suggested by Per Hedeland of Ericsson.
211040266059SGregory Neil Shapiro	CONFIG: If FEATURE(`delay_checks') is used, make sure that a lookup
211140266059SGregory Neil Shapiro		in the access map which returns OK or RELAY actually
211240266059SGregory Neil Shapiro		terminates check_* ruleset checking.
211340266059SGregory Neil Shapiro	CONFIG: New tag TLS_Rcpt: for access map to be used by ruleset
211440266059SGregory Neil Shapiro		tls_rcpt, see cf/README for details.
211540266059SGregory Neil Shapiro	CONFIG: Change format of Received: header line which reveals whether
211640266059SGregory Neil Shapiro		STARTTLS has been used to "(version=${tls_version}
211740266059SGregory Neil Shapiro		cipher=${cipher} bits=${cipher_bits} verify=${verify})".
211840266059SGregory Neil Shapiro	CONFIG: Use "Spam:" as tag for lookups for FEATURE(`delay_checks')
211940266059SGregory Neil Shapiro		options friends/haters instead of "To:" and enable
212040266059SGregory Neil Shapiro		specification of whole domains instead of just users.
212140266059SGregory Neil Shapiro		Notice: this change is not backward compatible.
212240266059SGregory Neil Shapiro		Suggested by Chris Adams from HiWAAY Informations Services.
212340266059SGregory Neil Shapiro	CONFIG: Allow for local extensions for most new rulesets, see
212440266059SGregory Neil Shapiro		cf/README for details.
212540266059SGregory Neil Shapiro	CONFIG: New FEATURE(`lookupdotdomain') to lookup also .domain in
212640266059SGregory Neil Shapiro		the access map.  Proposed by Randall Winchester of the
212740266059SGregory Neil Shapiro		University of Maryland.
212840266059SGregory Neil Shapiro	CONFIG: New FEATURE(`local_no_masquerade') to avoid masquerading for
212940266059SGregory Neil Shapiro		the local mailer.  Proposed by Ingo Brueckl of Wupper Online.
213040266059SGregory Neil Shapiro	CONFIG: confRELAY_MSG/confREJECT_MSG can override the default
213140266059SGregory Neil Shapiro		messages for an unauthorized relaying attempt/for access
213240266059SGregory Neil Shapiro		map entries with RHS REJECT, respectively.
213340266059SGregory Neil Shapiro	CONFIG: FEATURE(`always_add_domain') takes an optional argument
213440266059SGregory Neil Shapiro		to specify another domain to be added instead of the local one.
213540266059SGregory Neil Shapiro		Suggested by Richard H. Gumpertz of Computer Problem
213640266059SGregory Neil Shapiro		Solving.
213740266059SGregory Neil Shapiro	CONFIG: confAUTH_OPTIONS allows setting of Cyrus-SASL specific
213840266059SGregory Neil Shapiro		options, see doc/op/op.me for details.
213940266059SGregory Neil Shapiro	CONFIG: confAUTH_MAX_BITS sets the maximum encryption strength for
214040266059SGregory Neil Shapiro		the security layer in SMTP AUTH (SASL).
214140266059SGregory Neil Shapiro	CONFIG: If Local_localaddr resolves to $#ok, localaddr is terminated
214240266059SGregory Neil Shapiro		immediately.
214340266059SGregory Neil Shapiro	CONFIG: FEATURE(`enhdnsbl') is an enhanced version of dnsbl which
214440266059SGregory Neil Shapiro		allows checking of the return values of the DNS lookups.
214540266059SGregory Neil Shapiro		See cf/README for details.
214640266059SGregory Neil Shapiro	CONFIG: FEATURE(`dnsbl') allows now to specify the behavior for
214740266059SGregory Neil Shapiro		temporary lookup failures.
214840266059SGregory Neil Shapiro	CONFIG: New option confDELIVER_BY_MIN to specify minimum time for
214940266059SGregory Neil Shapiro		Deliver By (RFC 2852) or to turn off the extension.
215040266059SGregory Neil Shapiro	CONFIG: New option confSHARED_MEMORY_KEY to set the key for shared
215140266059SGregory Neil Shapiro		memory use.
215240266059SGregory Neil Shapiro	CONFIG: New FEATURE(`compat_check') to look up a key consisting
215340266059SGregory Neil Shapiro		of the sender and the recipient address delimited by the
215440266059SGregory Neil Shapiro		string "<@>", e.g., sender@sdomain<@>recipient@rdomain,
215540266059SGregory Neil Shapiro		in the access map.  Based on code contributed by Mathias
215640266059SGregory Neil Shapiro		Koerber of Singapore Telecommunications Ltd.
215740266059SGregory Neil Shapiro	CONFIG: Add EXPOSED_USER_FILE() command to allow an exposed user
215840266059SGregory Neil Shapiro		file.  Suggested by John Beck of Sun Microsystems.
215940266059SGregory Neil Shapiro	CONFIG: Don't use MAILER-DAEMON for error messages delivered
216040266059SGregory Neil Shapiro		via LMTP.  Problem reported by Larry Greenfield of CMU.
216140266059SGregory Neil Shapiro	CONFIG: New FEATURE(`preserve_luser_host') to preserve the name of
216240266059SGregory Neil Shapiro		the recipient host if LUSER_RELAY is used.
216340266059SGregory Neil Shapiro	CONFIG: New FEATURE(`preserve_local_plus_detail') to preserve the
216440266059SGregory Neil Shapiro		+detail portion of the address when passing address to
216540266059SGregory Neil Shapiro		local delivery agent.  Disables alias and .forward +detail
216640266059SGregory Neil Shapiro		stripping.  Only use if LDA supports this.
216740266059SGregory Neil Shapiro	CONFIG: Removed deprecated FEATURE(`rbl').
216840266059SGregory Neil Shapiro	CONFIG: Add LDAPROUTE_EQUIVALENT() and LDAPROUTE_EQUIVALENT_FILE()
216940266059SGregory Neil Shapiro		which allow you to specify 'equivalent' hosts for LDAP
217040266059SGregory Neil Shapiro		Routing lookups.  Equivalent hostnames are replaced by the
217140266059SGregory Neil Shapiro		masquerade domain name for lookups.  See cf/README for
217240266059SGregory Neil Shapiro		additional details.
217340266059SGregory Neil Shapiro	CONFIG: Add a fourth argument to FEATURE(`ldap_routing') which
217440266059SGregory Neil Shapiro		instructs the rulesets on what to do if the address being
217540266059SGregory Neil Shapiro		looked up has +detail information.  See cf/README for more
217640266059SGregory Neil Shapiro		information.
217740266059SGregory Neil Shapiro	CONFIG: When chosing a new destination via LDAP Routing, also look
217840266059SGregory Neil Shapiro		up the new routing address/host in the mailertable.  Based
217940266059SGregory Neil Shapiro		on patch from Don Badrak of the United States Census Bureau.
218040266059SGregory Neil Shapiro	CONFIG: Do not reject the SMTP Mail from: command if LDAP Routing
218140266059SGregory Neil Shapiro		is in use and the bounce option is enabled.  Only reject
218240266059SGregory Neil Shapiro		recipients as user unknown.
218340266059SGregory Neil Shapiro	CONFIG: Provide LDAP support for the remaining database map
218440266059SGregory Neil Shapiro		features.  See the ``USING LDAP FOR ALIASES AND MAPS''
218540266059SGregory Neil Shapiro		section of cf/README for more information.
218640266059SGregory Neil Shapiro	CONFIG: Add confLDAP_CLUSTER which defines the ${sendmailMTACluster}
218740266059SGregory Neil Shapiro		macro used for LDAP searches as described above in ``USING
218840266059SGregory Neil Shapiro		LDAP FOR ALIASES, MAPS, AND CLASSES''.
218940266059SGregory Neil Shapiro	CONFIG: confCLIENT_OPTIONS has been replaced by CLIENT_OPTIONS(),
219040266059SGregory Neil Shapiro		which takes the options as argument and can be used
219140266059SGregory Neil Shapiro		multiple times; see cf/README for details.
219240266059SGregory Neil Shapiro	CONFIG: Add configuration macros for new options:
219340266059SGregory Neil Shapiro		confBAD_RCPT_THROTTLE		BadRcptThrottle
219440266059SGregory Neil Shapiro		confDIRECT_SUBMISSION_MODIFIERS	DirectSubmissionModifiers
219540266059SGregory Neil Shapiro		confMAILBOX_DATABASE		MailboxDatabase
219640266059SGregory Neil Shapiro		confMAX_QUEUE_CHILDREN		MaxQueueChildren
219740266059SGregory Neil Shapiro		confMAX_RUNNERS_PER_QUEUE	MaxRunnersPerQueue
219840266059SGregory Neil Shapiro		confNICE_QUEUE_RUN		NiceQueueRun
219940266059SGregory Neil Shapiro		confQUEUE_FILE_MODE		QueueFileMode
220040266059SGregory Neil Shapiro		confFAST_SPLIT			FastSplit
220140266059SGregory Neil Shapiro		confTLS_SRV_OPTIONS		TLSSrvOptions
220240266059SGregory Neil Shapiro		See above (and related documentation) for further information.
220340266059SGregory Neil Shapiro	CONFIG: Add configuration variables for new timeout options:
220440266059SGregory Neil Shapiro		confTO_ACONNECT		Timeout.aconnect
220540266059SGregory Neil Shapiro		confTO_AUTH		Timeout.auth
220640266059SGregory Neil Shapiro		confTO_LHLO		Timeout.lhlo
220740266059SGregory Neil Shapiro		confTO_STARTTLS		Timeout.starttls
220840266059SGregory Neil Shapiro	CONFIG: Add configuration macros for mail filter API:
220940266059SGregory Neil Shapiro		confINPUT_MAIL_FILTERS		InputMailFilters
221040266059SGregory Neil Shapiro		confMILTER_LOG_LEVEL		Milter.LogLevel
221140266059SGregory Neil Shapiro		confMILTER_MACROS_CONNECT	Milter.macros.connect
221240266059SGregory Neil Shapiro		confMILTER_MACROS_HELO		Milter.macros.helo
221340266059SGregory Neil Shapiro		confMILTER_MACROS_ENVFROM	Milter.macros.envfrom
221440266059SGregory Neil Shapiro		confMILTER_MACROS_ENVRCPT	Milter.macros.envrcpt
221540266059SGregory Neil Shapiro		Mail filters can be defined via INPUT_MAIL_FILTER() and
221640266059SGregory Neil Shapiro		MAIL_FILTER().  See libmilter/README, cf/README, and
221740266059SGregory Neil Shapiro		doc/op/op.me for details.
221840266059SGregory Neil Shapiro	CONFIG: Add support for accepting temporarily unresolvable domains.
221940266059SGregory Neil Shapiro		See cf/README for details.  Based on patch by Motonori
222040266059SGregory Neil Shapiro		Nakamura of Kyoto University.
222140266059SGregory Neil Shapiro	CONFIG: confDEQUOTE_OPTS can be used to specify options for the
222240266059SGregory Neil Shapiro		dequote map.
222340266059SGregory Neil Shapiro	CONFIG: New macro QUEUE_GROUP() to define queue groups.
222440266059SGregory Neil Shapiro	CONFIG: New FEATURE(`queuegroup') to select a queue group based
222540266059SGregory Neil Shapiro		on the full e-mail address or the domain of the recipient.
222640266059SGregory Neil Shapiro	CONFIG: Any IPv6 addresses used in configuration should be prefixed
222740266059SGregory Neil Shapiro		by the "IPv6:" tag to identify the address properly.  For
222840266059SGregory Neil Shapiro		example, if you want to use the IPv6 address
222940266059SGregory Neil Shapiro		2002:c0a8:51d2::23f4 in the access database, you would need
223040266059SGregory Neil Shapiro		to use IPv6:2002:c0a8:51d2::23f4 on the left hand side.
223140266059SGregory Neil Shapiro		This affects the access database as well as the
223240266059SGregory Neil Shapiro		relay-domains and local-host-names files.
223340266059SGregory Neil Shapiro	CONFIG: OSTYPE(aux) has been renamed to OSTYPE(a-ux).
223440266059SGregory Neil Shapiro	CONFIG: Avoid expansion of m4 keywords in SMART_HOST.
223540266059SGregory Neil Shapiro	CONFIG: Add MASQUERADE_EXCEPTION_FILE() for reading masquerading
223640266059SGregory Neil Shapiro		exceptions from a file.  Suggested by Trey Breckenridge of
223740266059SGregory Neil Shapiro		Mississippi State University.
223840266059SGregory Neil Shapiro	CONFIG: Add LOCAL_USER_FILE() for reading local users
223940266059SGregory Neil Shapiro		(LOCAL_USER() -- $={L}) entries from a file.
224040266059SGregory Neil Shapiro	CONTRIB: dnsblaccess.m4 is a further enhanced version of enhdnsbl.m4
224140266059SGregory Neil Shapiro		which allows to lookup error codes in the access map.
224240266059SGregory Neil Shapiro		Contributed by Neil Rickert of Northern Illinois University.
224340266059SGregory Neil Shapiro	DEVTOOLS: Add new options for installation of include and library
224440266059SGregory Neil Shapiro		files: confINCGRP, confINCMODE, confINCOWN, confLIBGRP,
224540266059SGregory Neil Shapiro		confLIBMODE, confLIBOWN.
224640266059SGregory Neil Shapiro	DEVTOOLS: Add new option confDONT_INSTALL_CATMAN to turn off
224740266059SGregory Neil Shapiro		installation of the the formatted man pages on operating
224840266059SGregory Neil Shapiro		systems which don't include cat directories.
224940266059SGregory Neil Shapiro	EDITMAP: New program for editing maps as supplement to makemap.
225040266059SGregory Neil Shapiro	MAIL.LOCAL: Mail.local now uses the libsm mbdb package to look up
225140266059SGregory Neil Shapiro		local mail recipients.  New option -D mbdb specifies the
225240266059SGregory Neil Shapiro		mailbox database type.
225340266059SGregory Neil Shapiro	MAIL.LOCAL: New option "-h filename" which instructs mail.local to
225440266059SGregory Neil Shapiro		deliver the mail to the named file in the user's home
225540266059SGregory Neil Shapiro		directory instead of the system mail spool area.  Based on
225640266059SGregory Neil Shapiro		patch from Doug Hardie of the Los Angeles Free-Net.
225740266059SGregory Neil Shapiro	MAILSTATS: New command line option -P which acts the same as -p but
225840266059SGregory Neil Shapiro		doesn't truncate the statistics file.
225940266059SGregory Neil Shapiro	MAKEMAP: Add new option -t to specify a different delimiter
226040266059SGregory Neil Shapiro		instead of white space.
226140266059SGregory Neil Shapiro	RMAIL: Invoke sendmail with '-G' to indicate this is a gateway
226240266059SGregory Neil Shapiro		submission.  Problem noted by Kari Hurtta of the Finnish
226340266059SGregory Neil Shapiro		Meteorological Institute.
226440266059SGregory Neil Shapiro	SMRSH: Use the vendor supplied directory on FreeBSD 3.3 and later.
226540266059SGregory Neil Shapiro	VACATION: Change Auto-Submitted: header value from auto-generated to
226640266059SGregory Neil Shapiro		auto-replied.  From Kenneth Murchison of Oceana Matrix Ltd.
226740266059SGregory Neil Shapiro	VACATION: New option -d to send error/debug messages to stdout
226840266059SGregory Neil Shapiro		instead of syslog.
226940266059SGregory Neil Shapiro	VACATION: New option -U which prevents the attempt to lookup login
227040266059SGregory Neil Shapiro		in the password file.  The -f and -m options must be used
227140266059SGregory Neil Shapiro		to specify the database and message file since there is no
227240266059SGregory Neil Shapiro		home directory for the default settings for these options.
227340266059SGregory Neil Shapiro	VACATION: Vacation now uses the libsm mbdb package to look up
227440266059SGregory Neil Shapiro		local mail recipients; it reads the MailboxDatabase option
227540266059SGregory Neil Shapiro		from the sendmail.cf file.  New option -C cffile which
227640266059SGregory Neil Shapiro		specifies the path of the sendmail.cf file.
227740266059SGregory Neil Shapiro	New Directories:
227840266059SGregory Neil Shapiro		libmilter/docs
227940266059SGregory Neil Shapiro	New Files:
228040266059SGregory Neil Shapiro		cf/cf/README
228140266059SGregory Neil Shapiro		cf/cf/submit.cf
228240266059SGregory Neil Shapiro		cf/cf/submit.mc
228340266059SGregory Neil Shapiro		cf/feature/authinfo.m4
228440266059SGregory Neil Shapiro		cf/feature/compat_check.m4
228540266059SGregory Neil Shapiro		cf/feature/enhdnsbl.m4
228640266059SGregory Neil Shapiro		cf/feature/msp.m4
228740266059SGregory Neil Shapiro		cf/feature/local_no_masquerade.m4
228840266059SGregory Neil Shapiro		cf/feature/lookupdotdomain.m4
228940266059SGregory Neil Shapiro		cf/feature/preserve_luser_host.m4
229040266059SGregory Neil Shapiro		cf/feature/preserve_local_plus_detail.m4
229140266059SGregory Neil Shapiro		cf/feature/queuegroup.m4
229240266059SGregory Neil Shapiro		cf/sendmail.schema
229340266059SGregory Neil Shapiro		contrib/dnsblaccess.m4
229440266059SGregory Neil Shapiro		devtools/M4/UNIX/sm-test.m4
229540266059SGregory Neil Shapiro		devtools/OS/OpenUNIX.5.i386
229640266059SGregory Neil Shapiro		editmap/*
229740266059SGregory Neil Shapiro		include/sm/*
229840266059SGregory Neil Shapiro		libsm/*
229940266059SGregory Neil Shapiro		libsmutil/cf.c
230040266059SGregory Neil Shapiro		libsmutil/err.c
230140266059SGregory Neil Shapiro		sendmail/SECURITY
230240266059SGregory Neil Shapiro		sendmail/TUNING
230340266059SGregory Neil Shapiro		sendmail/bf.c
230440266059SGregory Neil Shapiro		sendmail/bf.h
230540266059SGregory Neil Shapiro		sendmail/sasl.c
230640266059SGregory Neil Shapiro		sendmail/sm_resolve.c
230740266059SGregory Neil Shapiro		sendmail/sm_resolve.h
230840266059SGregory Neil Shapiro		sendmail/tls.c
230940266059SGregory Neil Shapiro	Deleted Files:
231040266059SGregory Neil Shapiro		cf/feature/rbl.m4
231140266059SGregory Neil Shapiro		cf/ostype/aix2.m4
231240266059SGregory Neil Shapiro		devtools/OS/AIX.2
231340266059SGregory Neil Shapiro		include/sendmail/cdefs.h
231440266059SGregory Neil Shapiro		include/sendmail/errstring.h
231540266059SGregory Neil Shapiro		include/sendmail/useful.h
231640266059SGregory Neil Shapiro		libsmutil/errstring.c
231740266059SGregory Neil Shapiro		sendmail/bf_portable.c
231840266059SGregory Neil Shapiro		sendmail/bf_portable.h
231940266059SGregory Neil Shapiro		sendmail/bf_torek.c
232040266059SGregory Neil Shapiro		sendmail/bf_torek.h
232140266059SGregory Neil Shapiro		sendmail/clock.c
232240266059SGregory Neil Shapiro	Renamed Files:
232340266059SGregory Neil Shapiro		cf/cf/generic-solaris2.mc => cf/cf/generic-solaris.mc
232440266059SGregory Neil Shapiro		cf/cf/generic-solaris2.cf => cf/cf/generic-solaris.cf
232540266059SGregory Neil Shapiro		cf/ostype/aux.m4 => cf/ostype/a-ux.m4
232640266059SGregory Neil Shapiro
2327a7ec597cSGregory Neil Shapiro8.11.7/8.11.7	2003/03/29
2328a7ec597cSGregory Neil Shapiro	SECURITY: Fix a remote buffer overflow in header parsing by
2329a7ec597cSGregory Neil Shapiro		dropping sender and recipient header comments if the
2330a7ec597cSGregory Neil Shapiro		comments are too long.  Problem noted by Mark Dowd
2331a7ec597cSGregory Neil Shapiro		of ISS X-Force.
2332a7ec597cSGregory Neil Shapiro	SECURITY: Fix a buffer overflow in address parsing due to
2333a7ec597cSGregory Neil Shapiro		a char to int conversion problem which is potentially
2334a7ec597cSGregory Neil Shapiro		remotely exploitable.  Problem found by Michal Zalewski.
2335a7ec597cSGregory Neil Shapiro		Note: an MTA that is not patched might be vulnerable to
2336a7ec597cSGregory Neil Shapiro		data that it receives from untrusted sources, which
2337a7ec597cSGregory Neil Shapiro		includes DNS.
2338a7ec597cSGregory Neil Shapiro	To provide partial protection to internal, unpatched sendmail MTAs,
2339a7ec597cSGregory Neil Shapiro		8.11.7 changes by default (char)0xff to (char)0x7f in
2340a7ec597cSGregory Neil Shapiro		headers etc.  To turn off this conversion compile with
2341a7ec597cSGregory Neil Shapiro		-DALLOW_255 or use the command line option -d82.101.
2342a7ec597cSGregory Neil Shapiro	To provide partial protection for internal, unpatched MTAs that may be
2343a7ec597cSGregory Neil Shapiro		performing 7->8 or 8->7 bit MIME conversions, the default
2344a7ec597cSGregory Neil Shapiro		for MaxMimeHeaderLength has been changed to 2048/1024.
2345a7ec597cSGregory Neil Shapiro		Note: this does have a performance impact, and it only
2346a7ec597cSGregory Neil Shapiro		protects against frontal attacks from the outside.
2347a7ec597cSGregory Neil Shapiro		To disable the checks and return to pre-8.11.7 defaults,
2348a7ec597cSGregory Neil Shapiro		set MaxMimeHeaderLength to 0/0.
2349a7ec597cSGregory Neil Shapiro	Properly clean up macros to avoid persistence of session data
2350a7ec597cSGregory Neil Shapiro		across various connections.  This could cause session
2351a7ec597cSGregory Neil Shapiro		oriented restrictions, e.g., STARTTLS requirements,
2352a7ec597cSGregory Neil Shapiro		to erroneously allow a connection.  Problem noted
2353a7ec597cSGregory Neil Shapiro		by Tim Maletic of Priority Health.
2354a7ec597cSGregory Neil Shapiro	Ignore comments in NIS host records when trying to find the
2355a7ec597cSGregory Neil Shapiro		canonical name for a host.
2356a7ec597cSGregory Neil Shapiro	Fix a memory leak when closing Hesiod maps.
2357a7ec597cSGregory Neil Shapiro	Set ${msg_size} macro when reading a message from the command line
2358a7ec597cSGregory Neil Shapiro		or the queue.
2359a7ec597cSGregory Neil Shapiro	Prevent a segmentation fault when clearing the event list by
2360a7ec597cSGregory Neil Shapiro		turning off alarms before checking if event list is
2361a7ec597cSGregory Neil Shapiro		empty.  Problem noted by Allan E Johannesen of Worcester
2362a7ec597cSGregory Neil Shapiro		Polytechnic Institute.
2363a7ec597cSGregory Neil Shapiro	Fix a potential core dump problem if the environment variable
2364a7ec597cSGregory Neil Shapiro		NAME is set.  Problem noted by Beth A. Chaney of
2365a7ec597cSGregory Neil Shapiro		Purdue University.
2366a7ec597cSGregory Neil Shapiro	Prevent a race condition on child cleanup for delivery to files.
2367a7ec597cSGregory Neil Shapiro		Problem noted by Fletcher Mattox of the University of
2368a7ec597cSGregory Neil Shapiro		Texas.
2369a7ec597cSGregory Neil Shapiro	CONFIG: Do not bounce mail if FEATURE(`ldap_routing')'s bounce
2370a7ec597cSGregory Neil Shapiro		parameter is set and the LDAP lookup returns a temporary
2371a7ec597cSGregory Neil Shapiro		error.
2372a7ec597cSGregory Neil Shapiro	CONFIG: Fix a syntax error in the try_tls ruleset if
2373a7ec597cSGregory Neil Shapiro		FEATURE(`access_db') is not enabled.
2374a7ec597cSGregory Neil Shapiro	LIBSMDB: Fix a lock race condition that affects makemap, praliases,
2375a7ec597cSGregory Neil Shapiro		and vacation.
2376a7ec597cSGregory Neil Shapiro	LIBSMDB: Avoid a file creation race condition for Berkeley DB 1.X
2377a7ec597cSGregory Neil Shapiro		and NDBM on systems with the O_EXLOCK open(2) flag.
2378a7ec597cSGregory Neil Shapiro	MAKEMAP: Avoid going beyond the end of an input line if it does
2379a7ec597cSGregory Neil Shapiro		not contain a value for a key.  Based on patch from
2380a7ec597cSGregory Neil Shapiro		Mark Bixby from Hewlett-Packard.
2381a7ec597cSGregory Neil Shapiro	MAIL.LOCAL: Fix a truncation race condition if the close() on
2382a7ec597cSGregory Neil Shapiro		the mailbox fails.  Problem noted by Tomoko Fukuzawa of
2383a7ec597cSGregory Neil Shapiro		Sun Microsystems.
2384a7ec597cSGregory Neil Shapiro	SMRSH: SECURITY: Only allow regular files or symbolic links to be
2385a7ec597cSGregory Neil Shapiro		used for a command.  Problem noted by David Endler of
2386a7ec597cSGregory Neil Shapiro		iDEFENSE, Inc.
2387a7ec597cSGregory Neil Shapiro
2388c86d5965SGregory Neil Shapiro8.11.6/8.11.6	2001/08/20
2389c86d5965SGregory Neil Shapiro	SECURITY: Fix a possible memory access violation when specifying
2390c86d5965SGregory Neil Shapiro		out-of-bounds debug parameters.  Problem detected by
2391c86d5965SGregory Neil Shapiro		Cade Cairns of SecurityFocus.
2392c86d5965SGregory Neil Shapiro	Avoid leaking recipient information in unrelated DSNs.  This could
2393c86d5965SGregory Neil Shapiro		happen if a connection is aborted, several mails had been
2394c86d5965SGregory Neil Shapiro		scheduled for delivery via that connection, and the timeout
2395c86d5965SGregory Neil Shapiro		is reached such that several DSNs are sent next.  Problem
2396c86d5965SGregory Neil Shapiro		noted by Dileepan Moorkanat of Hewlett-Packard.
2397c86d5965SGregory Neil Shapiro	Fix a possible segmentation violation when specifying too many
2398c86d5965SGregory Neil Shapiro		wildcard operators in a rule.  Problem detected by
2399c86d5965SGregory Neil Shapiro		Werner Wiethege.
2400c86d5965SGregory Neil Shapiro	Avoid a segmentation fault on non-matching Hesiod lookups.  Problem
2401c86d5965SGregory Neil Shapiro		noted by Russell McOrmond of flora.ca
2402c86d5965SGregory Neil Shapiro
240313058a91SGregory Neil Shapiro8.11.5/8.11.5	2001/07/31
240413058a91SGregory Neil Shapiro	Fix a possible race condition when sending a HUP signal to restart
240513058a91SGregory Neil Shapiro		the daemon.  This could terminate the current process without
240613058a91SGregory Neil Shapiro		starting a new daemon.  Problem reported by Wolfgang Breyha
240713058a91SGregory Neil Shapiro		of SE Netway Communications.
240813058a91SGregory Neil Shapiro	Only apply MaxHeadersLength when receiving a message via SMTP or
240913058a91SGregory Neil Shapiro		the command line.  Problem noted by Andrey J. Melnikoff.
241013058a91SGregory Neil Shapiro	When finding the system's local hostname on an IPv6-enabled system
241113058a91SGregory Neil Shapiro		which doesn't have any IPv6 interface addresses, fall back
241213058a91SGregory Neil Shapiro		to looking up only IPv4 addresses.  Problem noted by Tim
241313058a91SGregory Neil Shapiro		Bosserman of EarthLink.
241413058a91SGregory Neil Shapiro	When commands were being rejected due to check_relay or TCP
241513058a91SGregory Neil Shapiro		Wrappers, the ETRN command was not giving a response.
241613058a91SGregory Neil Shapiro	Incoming IPv4 connections on a Family=inet6 daemon (using
241713058a91SGregory Neil Shapiro		IPv4-mapped addresses) were incorrectly labeled as "may be
241813058a91SGregory Neil Shapiro		forged".  Problem noted by Per Steinar Iversen of Oslo
241913058a91SGregory Neil Shapiro		University College.
242013058a91SGregory Neil Shapiro	Shutdown address test mode cleanly on SIGTERM.  Problem noted by
242113058a91SGregory Neil Shapiro		Greg King of the OAO Corporation.
242213058a91SGregory Neil Shapiro	Restore the original real uid (changed in main() to prevent
242313058a91SGregory Neil Shapiro		out of band signals) before invoking a delivery agent.
242413058a91SGregory Neil Shapiro		Some delivery agents use this for the "From " envelope
242513058a91SGregory Neil Shapiro		"header".  Problem noted by Leslie Carroll of the
242613058a91SGregory Neil Shapiro		University at Albany.
242713058a91SGregory Neil Shapiro	Mark closed file descriptors properly to avoid reuse. Problem
242813058a91SGregory Neil Shapiro		noted by Jeff Bronson of J.D. Bronson, Inc.
242913058a91SGregory Neil Shapiro	Setting Timeout options on the command line will also override
243013058a91SGregory Neil Shapiro		their sub-suboptions in the .cf file, e.g., -O
243113058a91SGregory Neil Shapiro		Timeout.queuereturn=2d will set all queuereturn timeouts
243213058a91SGregory Neil Shapiro		to 2 days.  Problem noted by Roger B.A. Klorese.
243313058a91SGregory Neil Shapiro	Portability:
243413058a91SGregory Neil Shapiro		BSD/OS has a broken setreuid() implementation.  Problem
243513058a91SGregory Neil Shapiro			noted by Vernon Schryver of Rhyolite Software.
243613058a91SGregory Neil Shapiro		BSD/OS has /dev/urandom(4) (as of version 4.1/199910 ?).
243713058a91SGregory Neil Shapiro			Noted by Vernon Schryver of Rhyolite Software.
243813058a91SGregory Neil Shapiro		BSD/OS has fchown(2).  Noted by Dave Yadallee of Netline
243913058a91SGregory Neil Shapiro			2000 Internet Solutions Inc.
244013058a91SGregory Neil Shapiro		Solaris 2.X and later have strerror(3).  From Sebastian
244113058a91SGregory Neil Shapiro			Hagedorn of Cologne University.
244213058a91SGregory Neil Shapiro	CONFIG: Fix parsing for IPv6 domain literals in addresses
244313058a91SGregory Neil Shapiro		(user@[IPv6:address]).  Problem noted by Liyuan Zhou.
244413058a91SGregory Neil Shapiro
24458774250cSGregory Neil Shapiro8.11.4/8.11.4	2001/05/28
24468774250cSGregory Neil Shapiro	Clean up signal handling routines to reduce the chances of heap
24478774250cSGregory Neil Shapiro		corruption and other potential race conditions.
24488774250cSGregory Neil Shapiro		Terminating and restarting the daemon may not be
24498774250cSGregory Neil Shapiro		instantaneous due to this change.  Also, non-root users can
24508774250cSGregory Neil Shapiro		no longer send out-of-band signals.  Problem reported by
24518774250cSGregory Neil Shapiro		Michal Zalewski of BindView.
24528774250cSGregory Neil Shapiro	If LogLevel is greater than 9 and SASL fails to negotiate an
24538774250cSGregory Neil Shapiro		encryption layer, avoid core dump logging the encryption
24548774250cSGregory Neil Shapiro		strength.  Problem noted by Miroslav Zubcic of Crol.
24558774250cSGregory Neil Shapiro	If a server offers "AUTH=" and "AUTH " and the list of mechanisms is
24568774250cSGregory Neil Shapiro		different in those two lines, sendmail might not have
24578774250cSGregory Neil Shapiro		recognized (and used) all of the offered mechanisms.
24588774250cSGregory Neil Shapiro	Fix an IP address lookup problem on Solaris 2.0 - 2.3.  Patch
24598774250cSGregory Neil Shapiro		from Kenji Miyake.
24608774250cSGregory Neil Shapiro	This time, really don't use the .. directory when expanding
24618774250cSGregory Neil Shapiro		QueueDirectory wildcards.
24628774250cSGregory Neil Shapiro	If a process is interrupted while closing a map, don't try to close
24638774250cSGregory Neil Shapiro		the same map again while exiting.
24648774250cSGregory Neil Shapiro	Allow local mailers (F=l) to contact remote hosts (e.g., via
24658774250cSGregory Neil Shapiro		LMTP).  Problem noted by Norbert Klasen of the University
24668774250cSGregory Neil Shapiro		of Tuebingen.
24678774250cSGregory Neil Shapiro	If Timeout.QueueReturn was set to a value less the time it took
24688774250cSGregory Neil Shapiro		to write a new queue file (e.g., 0 seconds), the bounce
24698774250cSGregory Neil Shapiro		message would be lost.  Problem noted by Lorraine L Goff of
24708774250cSGregory Neil Shapiro		Oklahoma State University.
24718774250cSGregory Neil Shapiro	Pass map argument vector into map rewriting engine for the regex
24728774250cSGregory Neil Shapiro		and prog map types.  Problem noted by Stephen Gildea of
24738774250cSGregory Neil Shapiro		InTouch Systems, Inc.
24748774250cSGregory Neil Shapiro	When closing an LDAP map due to a temporary error, close all of the
24758774250cSGregory Neil Shapiro		other LDAP maps which share the original map's connection
24768774250cSGregory Neil Shapiro		to the LDAP server.  Patch from Victor Duchovni of
24778774250cSGregory Neil Shapiro		Morgan Stanley.
24788774250cSGregory Neil Shapiro	To detect changes of NDBM aliases files check the timestamp of the
24798774250cSGregory Neil Shapiro		.pag file instead of the .dir file.  Problem noted by Neil
24808774250cSGregory Neil Shapiro		Rickert of Northern Illinois University.
24818774250cSGregory Neil Shapiro	Don't treat temporary hesiod lookup failures as permanent.  Patch
24828774250cSGregory Neil Shapiro		from Werner Wiethege.
24838774250cSGregory Neil Shapiro	If ClientPortOptions is set, make sure to create the outgoing socket
24848774250cSGregory Neil Shapiro		with the family set in that option.  Patch from Sean Farley.
24858774250cSGregory Neil Shapiro	Avoid a segmentation fault trying to dereference a NULL pointer
24868774250cSGregory Neil Shapiro		when logging a MaxHopCount exceeded error with an empty
24878774250cSGregory Neil Shapiro		recipient list.  Problem noted by Chris Adams of HiWAAY
24888774250cSGregory Neil Shapiro		Internet Services.
24898774250cSGregory Neil Shapiro	Fix DSN for "Too many hops" bounces.  Problem noticed by Ulrich
24908774250cSGregory Neil Shapiro		Windl of the Universitaet Regensburg.
24918774250cSGregory Neil Shapiro	Fix DSN for "mail loops back to me" bounces.  Problem noticed by
24928774250cSGregory Neil Shapiro		Kari Hurtta of the Finnish Meteorological Institute.
24938774250cSGregory Neil Shapiro	Portability:
24948774250cSGregory Neil Shapiro		OpenBSD has a broken setreuid() implementation.
24958774250cSGregory Neil Shapiro	CONFIG: Undo change from 8.11.1: change 501 SMTP reply code back
24968774250cSGregory Neil Shapiro		to 553 since it is allowed by DRUMS.
24978774250cSGregory Neil Shapiro	CONFIG: Add OSTYPE(freebsd4) for FreeBSD 4.X.
24988774250cSGregory Neil Shapiro	DEVTOOLS: install.sh did not properly handle paths in the source
24998774250cSGregory Neil Shapiro		file name argument.  Noted by Kari Hurtta of the Finnish
25008774250cSGregory Neil Shapiro		Meteorological Institute.
25018774250cSGregory Neil Shapiro	DEVTOOLS: Add FAST_PID_RECYCLE to compile time options for OpenBSD
25028774250cSGregory Neil Shapiro		since it generates random process ids.
25038774250cSGregory Neil Shapiro	PRALIASES: Add back adaptive algorithm to deal with different endings
25048774250cSGregory Neil Shapiro		of entries in the database (with/without trailing '\0').
25058774250cSGregory Neil Shapiro		Patch from John Beck of Sun Microsystems.
25068774250cSGregory Neil Shapiro	New Files:
25078774250cSGregory Neil Shapiro		cf/ostype/freebsd4.m4
25088774250cSGregory Neil Shapiro
2509602a2b1bSGregory Neil Shapiro8.11.3/8.11.3	2001/02/27
2510602a2b1bSGregory Neil Shapiro	Prevent a segmentation fault when a bogus value was used in the
2511602a2b1bSGregory Neil Shapiro		LDAPDefaultSpec option's -r, -s, or -M flags and if a bogus
2512602a2b1bSGregory Neil Shapiro		option was used.  Problem noted by Allan E Johannesen of
2513602a2b1bSGregory Neil Shapiro		Worcester Polytechnic Institute.
2514602a2b1bSGregory Neil Shapiro	Prevent "token too long" message by shortening {currHeader} which
2515602a2b1bSGregory Neil Shapiro		could be too long if the last copied character was a quote.
2516602a2b1bSGregory Neil Shapiro		Problem detected by Jan Krueger of digitalanswers
2517602a2b1bSGregory Neil Shapiro		communications consulting gmbh.
2518602a2b1bSGregory Neil Shapiro	Additional IPv6 check for unspecified addresses.  Patch from
2519602a2b1bSGregory Neil Shapiro		Jun-ichiro itojun Hagino of the KAME Project.
2520602a2b1bSGregory Neil Shapiro	Do not ignore the ClientPortOptions setting if DaemonPortOptions
2521602a2b1bSGregory Neil Shapiro		Modifier=b (bind to same interface) is set and the
2522602a2b1bSGregory Neil Shapiro		connection came in from the command line.
2523602a2b1bSGregory Neil Shapiro	Do not bind to the loopback address if DaemonPortOptions
2524602a2b1bSGregory Neil Shapiro		Modifier=b (bind to same interface) is set.  Patch from
2525602a2b1bSGregory Neil Shapiro		John Beck of Sun Microsystems.
2526602a2b1bSGregory Neil Shapiro	Properly deal with open failures on non-optional maps used in
2527602a2b1bSGregory Neil Shapiro		check_* rulesets by returning a temporary failure.
2528602a2b1bSGregory Neil Shapiro	Buffered file I/O files were not being properly fsync'ed to disk
2529602a2b1bSGregory Neil Shapiro		when they were committed.
2530602a2b1bSGregory Neil Shapiro	Properly encode '=' for the AUTH= parameter of the MAIL command.
2531602a2b1bSGregory Neil Shapiro		Problem noted by Hadmut Danisch.
2532602a2b1bSGregory Neil Shapiro	Under certain circumstances the macro {server_name} could be set
2533602a2b1bSGregory Neil Shapiro		to the wrong hostname (of a previous connection), which may
2534602a2b1bSGregory Neil Shapiro		cause some rulesets to return wrong results.  This would
2535602a2b1bSGregory Neil Shapiro		usually cause mail to be queued up and delivered later on.
2536602a2b1bSGregory Neil Shapiro	Ignore F=z (LMTP) mailer flag if $u is given in the mailer A=
2537602a2b1bSGregory Neil Shapiro		equate.  Problem noted by Motonori Nakamura of Kyoto
2538602a2b1bSGregory Neil Shapiro		University.
2539602a2b1bSGregory Neil Shapiro	Work around broken accept() implementations which only partially
2540602a2b1bSGregory Neil Shapiro		fill in the peer address if the socket is closed before
2541602a2b1bSGregory Neil Shapiro		accept() completes.
2542602a2b1bSGregory Neil Shapiro	Return an SMTP "421" temporary failure if the data file can't be
2543602a2b1bSGregory Neil Shapiro		opened where the "354" reply would normally be given.
2544602a2b1bSGregory Neil Shapiro	Prevent a CPU loop in trying to expand a macro which doesn't exist
2545602a2b1bSGregory Neil Shapiro		in a queue run.  Problem noted by Gordon Lack of Glaxo
2546602a2b1bSGregory Neil Shapiro		Wellcome.
2547602a2b1bSGregory Neil Shapiro	If delivering via a program and that program exits with EX_TEMPFAIL,
2548602a2b1bSGregory Neil Shapiro		note that fact for the mailq display instead of just showing
2549602a2b1bSGregory Neil Shapiro		"Deferred".  Problem noted by Motonori Nakamura of Kyoto
2550602a2b1bSGregory Neil Shapiro		University.
2551602a2b1bSGregory Neil Shapiro	If doing canonification via /etc/hosts, try both the fully
2552602a2b1bSGregory Neil Shapiro		qualified hostname as well as the first portion of the
2553602a2b1bSGregory Neil Shapiro		hostname.  Problem noted by David Bremner of the
2554602a2b1bSGregory Neil Shapiro		University of New Brunswick.
2555602a2b1bSGregory Neil Shapiro	Portability:
2556602a2b1bSGregory Neil Shapiro		Fix a compilation problem for mail.local and rmail if SFIO
2557602a2b1bSGregory Neil Shapiro			is in use.  Problem noted by Auteria Wally
2558602a2b1bSGregory Neil Shapiro			Winzer Jr. of Champion Nutrition.
2559602a2b1bSGregory Neil Shapiro		IPv6 changes for platforms using KAME.  Patch from
2560602a2b1bSGregory Neil Shapiro			Jun-ichiro itojun Hagino of the KAME Project.
2561602a2b1bSGregory Neil Shapiro		OpenBSD 2.7 and higher has srandomdev(3).  OpenBSD 2.8 and
2562602a2b1bSGregory Neil Shapiro			higher has BSDI-style login classes.  Patch from
2563602a2b1bSGregory Neil Shapiro			Todd C.  Miller of Courtesan Consulting.
2564602a2b1bSGregory Neil Shapiro		Unixware 7.1.1 doesn't allow h_errno to be set directly if
2565602a2b1bSGregory Neil Shapiro			sendmail is being compiled with -kthread.  Problem
2566602a2b1bSGregory Neil Shapiro			noted by Orion Poplawski of CQG, Inc.
2567602a2b1bSGregory Neil Shapiro	CONTRIB: buildvirtuser: Substitute current domain for $DOMAIN and
2568602a2b1bSGregory Neil Shapiro		current left hand side for $LHS in virtuser files.
2569602a2b1bSGregory Neil Shapiro	DEVTOOLS: Do not pass make targets to recursive Build invocations.
2570602a2b1bSGregory Neil Shapiro		Problem noted by Jeff Bronson of J.D. Bronson, Inc.
2571602a2b1bSGregory Neil Shapiro	MAIL.LOCAL: In LMTP mode, do not return errors regarding problems
2572602a2b1bSGregory Neil Shapiro		storing the temporary message file until after the remote
2573602a2b1bSGregory Neil Shapiro		side has sent the final DATA termination dot.  Problem
2574602a2b1bSGregory Neil Shapiro		noted by Allan E Johannesen of Worcester Polytechnic
2575602a2b1bSGregory Neil Shapiro		Institute.
2576602a2b1bSGregory Neil Shapiro	MAIL.LOCAL: If LMTP mode is set, give a temporary error if users
2577602a2b1bSGregory Neil Shapiro		are also specified on the command line.  Patch from
2578602a2b1bSGregory Neil Shapiro		Motonori Nakamura of Kyoto University.
2579602a2b1bSGregory Neil Shapiro	PRALIASES: Skip over AliasFile specifications which aren't based on
2580602a2b1bSGregory Neil Shapiro		database files (i.e., only show dbm, hash, and btree).
2581602a2b1bSGregory Neil Shapiro	Renamed Files:
2582602a2b1bSGregory Neil Shapiro		devtools/OS/OSF1.V5.0 => devtools/OS/OSF1.V5.x
2583602a2b1bSGregory Neil Shapiro
2584193538b7SGregory Neil Shapiro8.11.2/8.11.2	2000/12/29
2585193538b7SGregory Neil Shapiro	Prevent a segmentation fault when trying to set a class in
2586193538b7SGregory Neil Shapiro		address test mode due to a negative array index.  Audit
2587193538b7SGregory Neil Shapiro		other array indexing.  This bug is not believed to be
2588193538b7SGregory Neil Shapiro		exploitable.  Noted by Michal Zalewski of the "Internet for
2589193538b7SGregory Neil Shapiro		Schools" project (IdS).
2590193538b7SGregory Neil Shapiro	Add an FFR (for future release) to drop privileges when using
2591193538b7SGregory Neil Shapiro		address test mode.  This will be turned on in 8.12. It can
2592193538b7SGregory Neil Shapiro		be enabled by compiling with:
2593193538b7SGregory Neil Shapiro		APPENDDEF(`conf_sendmail_ENVDEF', `-D_FFR_TESTMODE_DROP_PRIVS')
2594193538b7SGregory Neil Shapiro		in your devtools/Site/site.config.m4 file.  Suggested by
2595193538b7SGregory Neil Shapiro		Michal Zalewski of the "Internet for Schools" project (IdS).
2596193538b7SGregory Neil Shapiro	Fix potential problem with Cyrus-SASL security layer which may have
2597193538b7SGregory Neil Shapiro		caused I/O errors, especially for mechanism DIGEST-MD5.
2598193538b7SGregory Neil Shapiro	When QueueSortOrder was set to host, sendmail might not read
2599193538b7SGregory Neil Shapiro		enough of the queue file to determine the host, making the
2600193538b7SGregory Neil Shapiro		sort sub-optimal.  Problem noted by Jeff Earickson of
2601193538b7SGregory Neil Shapiro		Colby College.
2602193538b7SGregory Neil Shapiro	Don't issue DSNs for addresses which use the NOTIFY parameter (per
2603193538b7SGregory Neil Shapiro		RFC 1891) but don't have FAILURE as value.
2604193538b7SGregory Neil Shapiro	Initialize Cyrus-SASL library before the SMTP daemon is started.
2605193538b7SGregory Neil Shapiro		This implies that every change to SASL related files requires
2606193538b7SGregory Neil Shapiro		a restart of the daemon, e.g., Sendmail.conf, new SASL
2607193538b7SGregory Neil Shapiro		mechanisms (in form of shared libraries).
2608193538b7SGregory Neil Shapiro	Properly set the STARTTLS related macros during a queue run for
2609193538b7SGregory Neil Shapiro		a cached connection.  Bug reported by Michael Kellen of
2610193538b7SGregory Neil Shapiro		NxNetworks, Inc.
2611193538b7SGregory Neil Shapiro	Log the server name in relay= for ruleset tls_server instead of the
2612193538b7SGregory Neil Shapiro		client name.
2613193538b7SGregory Neil Shapiro	Include original length of bad field/header when reporting
2614193538b7SGregory Neil Shapiro		MaxMimeHeaderLength problems.  Requested by Ulrich Windl of
2615193538b7SGregory Neil Shapiro		the Universitat Regensburg.
2616193538b7SGregory Neil Shapiro	Fix delivery to set-user-ID files that are expanded from aliases in
2617193538b7SGregory Neil Shapiro		DeliveryMode queue.  Problem noted by Ric Anderson of the
2618193538b7SGregory Neil Shapiro		University of Arizona.
2619193538b7SGregory Neil Shapiro	Fix LDAP map -m (match only) flag.  Problem noted by Jeff Giuliano
2620193538b7SGregory Neil Shapiro		of Collective Technologies.
2621193538b7SGregory Neil Shapiro	Avoid using a negative argument for sleep() calls when delaying answers
2622193538b7SGregory Neil Shapiro		to EXPN/VRFY commands on systems which respond very slowly.
2623193538b7SGregory Neil Shapiro		Problem noted by Mikolaj J. Habryn of Optus Internet
2624193538b7SGregory Neil Shapiro		Engineering.
2625193538b7SGregory Neil Shapiro	Make sure the F=u flag is set in the default prog mailer
2626193538b7SGregory Neil Shapiro		definition.  Problem noted by Kari Hurtta of the Finnish
2627193538b7SGregory Neil Shapiro		Meteorological Institute.
2628193538b7SGregory Neil Shapiro	Fix IPv6 check for unspecified addresses.  Patch from
2629193538b7SGregory Neil Shapiro		Jun-ichiro itojun Hagino of the KAME Project.
2630193538b7SGregory Neil Shapiro	Fix return values for IRIX nsd map.  From Kari Hurtta of the Finnish
2631193538b7SGregory Neil Shapiro		Meteorological Institute.
2632193538b7SGregory Neil Shapiro	Fix parsing of DaemonPortOptions and ClientPortOptions.  Read all
2633193538b7SGregory Neil Shapiro		of the parameters to find Family= setting before trying to
2634193538b7SGregory Neil Shapiro		interpret Addr= and Port=.  Problem noted by Valdis
2635193538b7SGregory Neil Shapiro		Kletnieks of Virginia Tech.
2636193538b7SGregory Neil Shapiro	When delivering to a file directly from an alias, do not call
2637193538b7SGregory Neil Shapiro		initgroups(); instead use the DefaultUser group information.
2638193538b7SGregory Neil Shapiro		Problem noted by Marc Schaefer of ALPHANET NF.
2639193538b7SGregory Neil Shapiro	RunAsUser now overrides the ownership of the control socket, if
2640193538b7SGregory Neil Shapiro		created.  Otherwise, sendmail can not remove it upon
2641193538b7SGregory Neil Shapiro		close.  Problem noted by Werner Wiethege.
2642193538b7SGregory Neil Shapiro	Fix ConnectionRateThrottle counting as the option is the number of
2643193538b7SGregory Neil Shapiro		overall connections, not the number of connections per
2644193538b7SGregory Neil Shapiro		socket.  A future version may change this to per socket
2645193538b7SGregory Neil Shapiro		counting.
2646193538b7SGregory Neil Shapiro	Portability:
2647193538b7SGregory Neil Shapiro		Clean up libsmdb so it functions properly on platforms
2648193538b7SGregory Neil Shapiro			where sizeof(u_int32_t) != sizeof(size_t).  Problem
2649193538b7SGregory Neil Shapiro			noted by Rein Tollevik of Basefarm AS.
2650193538b7SGregory Neil Shapiro		Fix man page formatting for compatibility with Solaris'
2651193538b7SGregory Neil Shapiro			whatis.  From Stephen Gildea of InTouch Systems, Inc.
2652193538b7SGregory Neil Shapiro		UnixWare 7 includes snprintf() support.  From Larry
2653193538b7SGregory Neil Shapiro			Rosenman.
2654193538b7SGregory Neil Shapiro		IPv6 changes for platforms using KAME.  Patch from
2655193538b7SGregory Neil Shapiro			Jun-ichiro itojun Hagino of the KAME Project.
2656193538b7SGregory Neil Shapiro		Avoid a typedef compile conflict with Berkeley DB 3.X and
2657193538b7SGregory Neil Shapiro			Solaris 2.5 or earlier.  Problem noted by Bob Hughes
2658193538b7SGregory Neil Shapiro			of Pacific Access.
2659193538b7SGregory Neil Shapiro		Add preliminary support for AIX 5.  Contributed by
2660193538b7SGregory Neil Shapiro			Valdis Kletnieks of Virginia Tech.
2661193538b7SGregory Neil Shapiro		Solaris 9 load average support from Andrew Tucker of Sun
2662193538b7SGregory Neil Shapiro			Microsystems.
2663193538b7SGregory Neil Shapiro	CONFIG: Reject addresses of the form a!b if FEATURE(`nouucp', `r')
2664193538b7SGregory Neil Shapiro		is used.  Problem noted by Phil Homewood of Asia Online,
2665193538b7SGregory Neil Shapiro		patch from Neil Rickert of Northern Illinois University.
2666193538b7SGregory Neil Shapiro	CONFIG: Change the default DNS based blacklist server for
2667193538b7SGregory Neil Shapiro		FEATURE(`dnsbl') to blackholes.mail-abuse.org.
2668193538b7SGregory Neil Shapiro	CONFIG: Deal correctly with the 'C' flag in {daemon_flags}, i.e.,
2669193538b7SGregory Neil Shapiro		implicitly assume canonical host names.
2670193538b7SGregory Neil Shapiro	CONFIG: Deal with "::" in IPv6 addresses for access_db.  Based on
2671193538b7SGregory Neil Shapiro		patch by Motonori Nakamura of Kyoto University.
2672193538b7SGregory Neil Shapiro	CONFIG: New OSTYPE(`aix5') contributed by Valdis Kletnieks of
2673193538b7SGregory Neil Shapiro		Virginia Tech.
2674193538b7SGregory Neil Shapiro	CONFIG: Pass the illegal header form <list:;> through untouched
2675193538b7SGregory Neil Shapiro		instead of making it worse.  Problem noted by Motonori
2676193538b7SGregory Neil Shapiro		Nakamura of Kyoto University.
2677193538b7SGregory Neil Shapiro	CONTRIB: Added buildvirtuser (see `perldoc contrib/buildvirtuser`).
2678193538b7SGregory Neil Shapiro	CONTRIB: qtool.pl: An empty queue is not an error.  Problem noted
2679193538b7SGregory Neil Shapiro		by Jan Krueger of digitalanswers communications consulting
2680193538b7SGregory Neil Shapiro		gmbh.
2681193538b7SGregory Neil Shapiro	CONTRIB: domainmap.m4: Handle domains with '-' in them.  From Mark
2682193538b7SGregory Neil Shapiro		Roth of the University of Illinois at Urbana-Champaign.
2683193538b7SGregory Neil Shapiro	DEVTOOLS: Change the internal devtools OS, REL, and ARCH m4
2684193538b7SGregory Neil Shapiro		variables into bldOS, bldREL, and bldARCH to prevent
2685193538b7SGregory Neil Shapiro		namespace collisions.  Problem noted by Motonori Nakamura
2686193538b7SGregory Neil Shapiro		of Kyoto University.
2687193538b7SGregory Neil Shapiro	RMAIL: Undo the 8.11.1 change to use -G when calling sendmail.  It
2688193538b7SGregory Neil Shapiro		causes some changes in behavior and may break rmail for
2689193538b7SGregory Neil Shapiro		installations where sendmail is actually a wrapper to
2690193538b7SGregory Neil Shapiro		another MTA.  The change will re-appear in a future
2691193538b7SGregory Neil Shapiro		version.
2692193538b7SGregory Neil Shapiro	SMRSH: Use the vendor supplied directory on HPUX 10.X, HPUX 11.X,
2693193538b7SGregory Neil Shapiro		and SunOS 5.8.  Requested by Jeff A. Earickson of Colby
2694193538b7SGregory Neil Shapiro		College and John Beck of Sun Microsystems.
2695193538b7SGregory Neil Shapiro	VACATION: Fix pattern matching for addresses to ignore.
2696193538b7SGregory Neil Shapiro	VACATION: Don't reply to addresses of the form owner-*
2697193538b7SGregory Neil Shapiro		or *-owner.
2698193538b7SGregory Neil Shapiro	New Files:
2699193538b7SGregory Neil Shapiro		cf/ostype/aix5.m4
2700193538b7SGregory Neil Shapiro		contrib/buildvirtuser
2701193538b7SGregory Neil Shapiro		devtools/OS/AIX.5.0
2702193538b7SGregory Neil Shapiro
270342e5d165SGregory Neil Shapiro8.11.1/8.11.1	2000/09/27
270442e5d165SGregory Neil Shapiro	Fix SMTP EXPN command output if the address expands to a single
270542e5d165SGregory Neil Shapiro		name.  Fix from John Beck of Sun Microsystems.
270642e5d165SGregory Neil Shapiro	Don't try STARTTLS in the client if the PRNG has not been properly
270742e5d165SGregory Neil Shapiro		seeded.  This problem only occurs on systems without
270842e5d165SGregory Neil Shapiro		/dev/urandom.  Problem detected by Jan Krueger of
270942e5d165SGregory Neil Shapiro		digitalanswers communications consulting gmbh and
271042e5d165SGregory Neil Shapiro		Neil Rickert of Northern Illinois University.
271142e5d165SGregory Neil Shapiro	Don't use the . and .. directories when expanding QueueDirectory
271242e5d165SGregory Neil Shapiro		wildcards.
271342e5d165SGregory Neil Shapiro	Do not try to cache LDAP connections across processes as a parent
271442e5d165SGregory Neil Shapiro		process may close the connection before the child process
271542e5d165SGregory Neil Shapiro		has completed.  Problem noted by Lai Yiu Fai of the Hong
271642e5d165SGregory Neil Shapiro		Kong University of Science and Technology and Wolfgang
271742e5d165SGregory Neil Shapiro		Hottgenroth of UUNET.
271842e5d165SGregory Neil Shapiro	Use Timeout.fileopen to limit the amount of time spent trying to
271942e5d165SGregory Neil Shapiro		read the LDAP secret from a file.
272042e5d165SGregory Neil Shapiro	Prevent SIGTERM from removing a command line submitted item after
272142e5d165SGregory Neil Shapiro		the user submits the message and before the first delivery
272242e5d165SGregory Neil Shapiro		attempt completes.  Problem noted by Max France of AlphaNet.
272342e5d165SGregory Neil Shapiro		Fix from Neil Rickert of Northern Illinois University.
272442e5d165SGregory Neil Shapiro	Deal correctly with MaxMessageSize restriction if message size is
2725193538b7SGregory Neil Shapiro		greater than 2^31.  Problem noted by Tim "Darth Dice" Bosserman
2726193538b7SGregory Neil Shapiro		of EarthLink.
272742e5d165SGregory Neil Shapiro	Turn off queue checkpointing if CheckpointInterval is set to zero.
272842e5d165SGregory Neil Shapiro	Treat an empty home directory (from getpw*() or $HOME) as
272942e5d165SGregory Neil Shapiro		non-existent instead of treating it as /.  Problem noted by
273042e5d165SGregory Neil Shapiro		Todd C. Miller of Courtesan Consulting.
273142e5d165SGregory Neil Shapiro	Don't drop duplicate headers when reading a queued item.  Problem
273242e5d165SGregory Neil Shapiro		noted by Motonori Nakamura of Kyoto University.
273342e5d165SGregory Neil Shapiro	Avoid bogus error text when logging the savemail panic "cannot
273442e5d165SGregory Neil Shapiro		save rejected email anywhere".  Problem noted by Marc G.
273542e5d165SGregory Neil Shapiro		Fournier of Acadia University.
273642e5d165SGregory Neil Shapiro	If an LDAP search fails because the LDAP server went down, close
273742e5d165SGregory Neil Shapiro		the map so subsequent searches reopen the map.  If there are
273842e5d165SGregory Neil Shapiro		multiple LDAP servers, the down server will be skipped and
273942e5d165SGregory Neil Shapiro		one of the others may be able to take over.
274042e5d165SGregory Neil Shapiro	Set the ${load_avg} macro to the current load average, not the
274142e5d165SGregory Neil Shapiro		previous load average query result.
274242e5d165SGregory Neil Shapiro	If a non-optional map used in a check_* ruleset can't be opened,
274342e5d165SGregory Neil Shapiro		return a temporary failure to the remote SMTP client
274442e5d165SGregory Neil Shapiro		instead of ignoring the map.  Problem noted by Allan E
274542e5d165SGregory Neil Shapiro		Johannesen of Worcester Polytechnic Institute.
274642e5d165SGregory Neil Shapiro	Avoid a race condition when queuing up split envelopes by saving
274742e5d165SGregory Neil Shapiro		the split envelopes before the original envelope.
274842e5d165SGregory Neil Shapiro	Fix a bug in the PH_MAP code which caused mail to bounce instead of
274942e5d165SGregory Neil Shapiro		defer if the PH server could not be contacted.  From Mark
275042e5d165SGregory Neil Shapiro		Roth of the University of Illinois at Urbana-Champaign.
275142e5d165SGregory Neil Shapiro	Prevent QueueSortOrder=Filename from interfering with -qR, -qS, and
275242e5d165SGregory Neil Shapiro		ETRN.  Problem noted by Erik R. Leo of SoVerNet.
275342e5d165SGregory Neil Shapiro	Change error code for unrecognized parameters to the SMTP MAIL and
275442e5d165SGregory Neil Shapiro		RCPT commands from 501 to 555 per RFC 1869.  Problem
275542e5d165SGregory Neil Shapiro		reported to Postfix by Robert Norris of Monash University.
275642e5d165SGregory Neil Shapiro	Prevent overwriting the argument of -B on certain OS.  Problem
275742e5d165SGregory Neil Shapiro		noted by Matteo Gelosa of I.NET S.p.A.
275842e5d165SGregory Neil Shapiro	Use the proper routine for freeing memory with Netscape's LDAP
275942e5d165SGregory Neil Shapiro		client libraries.  Patch from Paul Hilchey of the
276042e5d165SGregory Neil Shapiro		University of British Columbia.
276142e5d165SGregory Neil Shapiro	Portability:
276242e5d165SGregory Neil Shapiro		Move the NETINET6 define to devtools/OS/SunOS.5.{8,9}
276342e5d165SGregory Neil Shapiro			instead of defining it in conf.h so users can
276442e5d165SGregory Neil Shapiro			override the setting.  Suggested by
276542e5d165SGregory Neil Shapiro			Henrik Nordstrom of Ericsson.
276642e5d165SGregory Neil Shapiro		On HP-UX 10.X and 11.X, use /usr/sbin/sendmail instead of
276742e5d165SGregory Neil Shapiro			/usr/lib/sendmail for rmail and vacation.  From
276842e5d165SGregory Neil Shapiro			Jeff A. Earickson of Colby College.
276942e5d165SGregory Neil Shapiro		On HP-UX 11.X, use /usr/sbin instead of /usr/libexec (which
277042e5d165SGregory Neil Shapiro			does not exist).  From Jeff A. Earickson of Colby
277142e5d165SGregory Neil Shapiro			College.
277242e5d165SGregory Neil Shapiro		Avoid using the UCB subsystem on NCR MP-RAS 3.x.  From
277342e5d165SGregory Neil Shapiro			Tom Moore of NCR.
277442e5d165SGregory Neil Shapiro		NeXT 3.X and 4.X installs man pages in /usr/man.  From
277542e5d165SGregory Neil Shapiro			Hisanori Gogota of NTT/InterCommunicationCenter.
277642e5d165SGregory Neil Shapiro		Solaris 8 and later include /var/run.  The default PID file
277742e5d165SGregory Neil Shapiro			location is now /var/run/sendmail.pid.  From John
277842e5d165SGregory Neil Shapiro			Beck of Sun Microsystems.
277942e5d165SGregory Neil Shapiro		SFIO includes snprintf() for those operating systems
278042e5d165SGregory Neil Shapiro			which do not.  From Todd C. Miller of Courtesan
278142e5d165SGregory Neil Shapiro			Consulting.
278242e5d165SGregory Neil Shapiro	CONFIG: Use the result of _CERT_REGEX_SUBJECT_ not {cert_subject}.
278342e5d165SGregory Neil Shapiro		Problem noted by Kaspar Brand of futureLab AG.
278442e5d165SGregory Neil Shapiro	CONFIG: Change 553 SMTP reply code to 501 to avoid problems with
278542e5d165SGregory Neil Shapiro		errors in the MAIL address.
278642e5d165SGregory Neil Shapiro	CONFIG: Fix FEATURE(nouucp) usage in example .mc files.  Problem
278742e5d165SGregory Neil Shapiro		noted by Ron Jarrell of Virginia Tech.
278842e5d165SGregory Neil Shapiro	CONFIG: Add support for Solaris 8 (and later) as OSTYPE(solaris8).
278942e5d165SGregory Neil Shapiro		Contributed by John Beck of Sun Microsystems.
279042e5d165SGregory Neil Shapiro	CONFIG: Set confFROM_HEADER such that the mail hub can possibly add
279142e5d165SGregory Neil Shapiro		GECOS information for an address.  This more closely
279242e5d165SGregory Neil Shapiro		matches pre-8.10 nullclient behavior.  From Per Hedeland of
279342e5d165SGregory Neil Shapiro		Ericsson.
279442e5d165SGregory Neil Shapiro	CONFIG: Fix MODIFY_MAILER_FLAGS(): apply the flag modifications for
279542e5d165SGregory Neil Shapiro		SMTP to all *smtp* mailers and those for RELAY to the relay
279642e5d165SGregory Neil Shapiro		mailer as described in cf/README.
279742e5d165SGregory Neil Shapiro	MAIL.LOCAL: Open the mailbox as the recipient not root so quotas
279842e5d165SGregory Neil Shapiro		are obeyed.  Problem noted by Damian Kuczynski of NIK.
279942e5d165SGregory Neil Shapiro	MAKEMAP: Do not change a map's owner to the TrustedUser if using
280042e5d165SGregory Neil Shapiro		makemap to 'unmake' the map.
280142e5d165SGregory Neil Shapiro	RMAIL: Avoid overflowing the list of recipients being passed to
280242e5d165SGregory Neil Shapiro		sendmail.
280342e5d165SGregory Neil Shapiro	RMAIL: Invoke sendmail with '-G' to indicate this is a gateway
280442e5d165SGregory Neil Shapiro		submission.  Problem noted by Kari Hurtta of the Finnish
280542e5d165SGregory Neil Shapiro		Meteorological Institute.
280642e5d165SGregory Neil Shapiro	VACATION: Read the complete message to avoid "broken pipe" signals.
280742e5d165SGregory Neil Shapiro	VACATION: Do not cut off vacation.msg files which have a single
280842e5d165SGregory Neil Shapiro		dot as the only character on the line.
280942e5d165SGregory Neil Shapiro	New Files:
281042e5d165SGregory Neil Shapiro		cf/ostype/solaris8.m4
281142e5d165SGregory Neil Shapiro
281206f25ae9SGregory Neil Shapiro8.11.0/8.11.0	2000/07/19
281306f25ae9SGregory Neil Shapiro	SECURITY: If sendmail is installed as a non-root set-user-ID binary
281406f25ae9SGregory Neil Shapiro		(not the normal case), some operating systems will still
281506f25ae9SGregory Neil Shapiro		keep a saved-uid of the effective-uid when sendmail tries
281606f25ae9SGregory Neil Shapiro		to drop all of its privileges.  If sendmail needs to drop
281706f25ae9SGregory Neil Shapiro		these privileges and the operating system doesn't set the
281806f25ae9SGregory Neil Shapiro		saved-uid as well, exit with an error.  Problem noted by
281906f25ae9SGregory Neil Shapiro		Kari Hurtta of the Finnish Meteorological Institute.
282006f25ae9SGregory Neil Shapiro	SECURITY: sendmail depends on snprintf() NUL terminating the string
282106f25ae9SGregory Neil Shapiro		it populates.  It is possible that some broken
282206f25ae9SGregory Neil Shapiro		implementations of snprintf() exist that do not do this.
282306f25ae9SGregory Neil Shapiro		Systems in this category should compile with
282406f25ae9SGregory Neil Shapiro		-DSNPRINTF_IS_BROKEN=1.  Use test/t_snprintf.c to test your
282506f25ae9SGregory Neil Shapiro		system and report broken implementations to
282606f25ae9SGregory Neil Shapiro		sendmail-bugs@sendmail.org and your OS vendor.  Problem
282706f25ae9SGregory Neil Shapiro		noted by Slawomir Piotrowski of TELSAT GP.
282806f25ae9SGregory Neil Shapiro	Support SMTP Service Extension for Secure SMTP (RFC 2487) (STARTTLS).
282906f25ae9SGregory Neil Shapiro		Implementation influenced by the example programs of
283006f25ae9SGregory Neil Shapiro		OpenSSL and the work of Lutz Jaenicke of TU Cottbus.
283106f25ae9SGregory Neil Shapiro	Add new STARTTLS related options CACERTPath, CACERTFile,
283206f25ae9SGregory Neil Shapiro		ClientCertFile, ClientKeyFile, DHParameters, RandFile,
283306f25ae9SGregory Neil Shapiro		ServerCertFile, and ServerKeyFile.  These are documented in
283406f25ae9SGregory Neil Shapiro		cf/README and doc/op/op.*.
283506f25ae9SGregory Neil Shapiro	New STARTTLS related macros: ${cert_issuer}, ${cert_subject},
283606f25ae9SGregory Neil Shapiro		${tls_version}, ${cipher}, ${cipher_bits}, ${verify},
283706f25ae9SGregory Neil Shapiro		${server_name}, and ${server_addr}.  These are documented
283806f25ae9SGregory Neil Shapiro		in cf/README and doc/op/op.*.
283906f25ae9SGregory Neil Shapiro	Add support for the Entropy Gathering Daemon (EGD) for better
284006f25ae9SGregory Neil Shapiro		random data.
284106f25ae9SGregory Neil Shapiro	New DontBlameSendmail option InsufficientEntropy for systems which
284206f25ae9SGregory Neil Shapiro		don't properly seed the PRNG for OpenSSL but want to
284306f25ae9SGregory Neil Shapiro		try to use STARTTLS despite the security problems.
284406f25ae9SGregory Neil Shapiro	Support the security layer in SMTP AUTH for mechanisms which
284506f25ae9SGregory Neil Shapiro		support encryption.  Based on code contributed by Tim
284606f25ae9SGregory Neil Shapiro		Martin of CMU.
284706f25ae9SGregory Neil Shapiro	Add new macro ${auth_ssf} to reflect the SMTP AUTH security
284806f25ae9SGregory Neil Shapiro		strength factor.
284906f25ae9SGregory Neil Shapiro	LDAP's -1 (single match only) flag was not honored if the -z
285006f25ae9SGregory Neil Shapiro		(delimiter) flag was not given.  Problem noted by ST Wong of
285106f25ae9SGregory Neil Shapiro		the Chinese University of Hong Kong.  Fix from Mark Adamson
285206f25ae9SGregory Neil Shapiro		of CMU.
285306f25ae9SGregory Neil Shapiro	Add more protection from accidentally tripping OpenLDAP 1.X's
285406f25ae9SGregory Neil Shapiro		ld_errno == LDAP_DECODING_ERROR hack on ldap_next_attribute().
285506f25ae9SGregory Neil Shapiro		Suggested by Kurt Zeilenga of OpenLDAP.
285606f25ae9SGregory Neil Shapiro	Fix the default family selection for DaemonPortOptions.  As
285706f25ae9SGregory Neil Shapiro		documented, unless a family is specified in a
285806f25ae9SGregory Neil Shapiro		DaemonPortOptions option, "inet" is the default.  It is
285906f25ae9SGregory Neil Shapiro		also the default if no DaemonPortOptions value is set.
286006f25ae9SGregory Neil Shapiro		Therefore, IPv6 users should configure additional sockets
286106f25ae9SGregory Neil Shapiro		by adding DaemonPortOptions settings with Family=inet6 if
286206f25ae9SGregory Neil Shapiro		they wish to also listen on IPv6 interfaces.  Problem noted
286306f25ae9SGregory Neil Shapiro		by Jun-ichiro itojun Hagino of the KAME Project.
286406f25ae9SGregory Neil Shapiro	Set ${if_family} when setting ${if_addr} and ${if_name} to reflect
286506f25ae9SGregory Neil Shapiro		the interface information for an outgoing connection.
286606f25ae9SGregory Neil Shapiro		Not doing so was creating a mismatch between the socket
286706f25ae9SGregory Neil Shapiro		family and address used in subsequent connections if the
286806f25ae9SGregory Neil Shapiro		M=b modifier was set in DaemonPortOptions.  Problem noted
286906f25ae9SGregory Neil Shapiro		by John Beck of Sun Microsystems.
287006f25ae9SGregory Neil Shapiro	If DaemonPortOptions modifier M=b is used, determine the socket
287106f25ae9SGregory Neil Shapiro		family based on the IP address.  ${if_family} is no longer
287206f25ae9SGregory Neil Shapiro		persistent (i.e., saved in qf files).  Patch from John Beck
287306f25ae9SGregory Neil Shapiro		of Sun Microsystems.
287406f25ae9SGregory Neil Shapiro	sendmail 8.10 and 8.11 reused the ${if_addr} and ${if_family}
287506f25ae9SGregory Neil Shapiro		macros for both the incoming interface address/family and
287606f25ae9SGregory Neil Shapiro		the outgoing interface address/family.  In order for M=b
287706f25ae9SGregory Neil Shapiro		modifier in DaemonPortOptions to work properly, preserve
287806f25ae9SGregory Neil Shapiro		the incoming information in the queue file for later
287906f25ae9SGregory Neil Shapiro		delivery attempts.
288006f25ae9SGregory Neil Shapiro	Use SMTP error code and enhanced status code from check_relay in
288106f25ae9SGregory Neil Shapiro		responses to commands.  Problem noted by Jeff Wasilko of
288206f25ae9SGregory Neil Shapiro		smoe.org.
288306f25ae9SGregory Neil Shapiro	Add more vigilance in checking for putc() errors on output streams
288406f25ae9SGregory Neil Shapiro		to protect from a bug in Solaris 2.6's putc().  Problem
288506f25ae9SGregory Neil Shapiro		noted by Graeme Hewson of Oracle.
288606f25ae9SGregory Neil Shapiro	The LDAP map -n option (return attribute names only) wasn't working.
288706f25ae9SGregory Neil Shapiro		Problem noted by Ajay Matia.
288806f25ae9SGregory Neil Shapiro	Under certain circumstances, an address could be listed as deferred
288906f25ae9SGregory Neil Shapiro		but would be bounced back to the sender as failed to be
289006f25ae9SGregory Neil Shapiro		delivered when it really should have been queued.  Problem
289106f25ae9SGregory Neil Shapiro		noted by Allan E Johannesen of Worcester Polytechnic Institute.
289206f25ae9SGregory Neil Shapiro	Prevent a segmentation fault in a child SMTP process from getting
289306f25ae9SGregory Neil Shapiro		the SMTP transaction out of sync.  Problem noted by Per
289406f25ae9SGregory Neil Shapiro		Hedeland of Ericsson.
289506f25ae9SGregory Neil Shapiro	Turn off RES_DEBUG if SFIO is defined unless SFIO_STDIO_COMPAT
289606f25ae9SGregory Neil Shapiro		is defined to avoid a core dump due to incompatibilities
289706f25ae9SGregory Neil Shapiro		between sfio and stdio.  Problem noted by Neil Rickert
289806f25ae9SGregory Neil Shapiro		of Northern Illinois University.
289906f25ae9SGregory Neil Shapiro	Don't log useless envelope ID on initial connection log.  Problem
290006f25ae9SGregory Neil Shapiro		noted by Kari Hurtta of the Finnish Meteorological Institute.
290106f25ae9SGregory Neil Shapiro	Convert the free disk space shown in a control socket status query
290206f25ae9SGregory Neil Shapiro		to kilobyte units.
290306f25ae9SGregory Neil Shapiro	If TryNullMXList is True and there is a temporary DNS failure
290406f25ae9SGregory Neil Shapiro		looking up the hostname, requeue the message for a later
290506f25ae9SGregory Neil Shapiro		attempt.  Problem noted by Ari Heikkinen of Pohjois-Savo
290606f25ae9SGregory Neil Shapiro		Polytechnic.
290706f25ae9SGregory Neil Shapiro	Under the proper circumstances, failed connections would be recorded
290806f25ae9SGregory Neil Shapiro		as "Bad file number" instead of "Connection failed" in the
290906f25ae9SGregory Neil Shapiro		queue file and persistent host status.  Problem noted by
291006f25ae9SGregory Neil Shapiro		Graeme Hewson of Oracle.
291106f25ae9SGregory Neil Shapiro	Avoid getting into an endless loop if a non-hoststat directory exists
291206f25ae9SGregory Neil Shapiro		within the hoststatus directory (e.g., lost+found).
291306f25ae9SGregory Neil Shapiro		Patch from Valdis Kletnieks of Virginia Tech.
291406f25ae9SGregory Neil Shapiro	Make sure Timeout.queuereturn=now returns a bounce message to the
291506f25ae9SGregory Neil Shapiro		sender.  Problem noted by Per Hedeland of Ericsson.
291606f25ae9SGregory Neil Shapiro	If a message data file can't be opened at delivery time, panic and
291706f25ae9SGregory Neil Shapiro		abort the attempt instead of delivering a message that
291806f25ae9SGregory Neil Shapiro		states "<<< No Message Collected >>>".
291906f25ae9SGregory Neil Shapiro	Fixup the GID checking code from 8.10.2 as it was overly
292006f25ae9SGregory Neil Shapiro		restrictive.  Problem noted by Mark G. Thomas of Mark
292106f25ae9SGregory Neil Shapiro		G. Thomas Consulting.
292206f25ae9SGregory Neil Shapiro	Preserve source port number instead of replacing it with the ident
292306f25ae9SGregory Neil Shapiro		port number (113).
292406f25ae9SGregory Neil Shapiro	Document the queue status characters in the mailq man page.
292506f25ae9SGregory Neil Shapiro		Suggested by Ulrich Windl of the Universitat Regensburg.
292606f25ae9SGregory Neil Shapiro	Process queued items in which none of the recipient addresses have
292706f25ae9SGregory Neil Shapiro		host portions (or there are no recipients).  Problem noted
292806f25ae9SGregory Neil Shapiro		by Valdis Kletnieks of Virginia Tech.
292906f25ae9SGregory Neil Shapiro	If a cached LDAP connection is used for multiple maps, make sure
293006f25ae9SGregory Neil Shapiro		only the first to open the connection is allowed to close
293106f25ae9SGregory Neil Shapiro		it so a later map close doesn't break the connection for
293206f25ae9SGregory Neil Shapiro		other maps.  Problem noted by Wolfgang Hottgenroth of UUNET.
293306f25ae9SGregory Neil Shapiro	Netscape's LDAP libraries do not support Kerberos V4
293406f25ae9SGregory Neil Shapiro		authentication.  Patch from Rainer Schoepf of the
293506f25ae9SGregory Neil Shapiro		University of Mainz.
293606f25ae9SGregory Neil Shapiro	Provide workaround for inconsistent handling of data passed
293706f25ae9SGregory Neil Shapiro		via callbacks to Cyrus SASL prior to version 1.5.23.
293806f25ae9SGregory Neil Shapiro	Mention ENHANCEDSTATUSCODES in the SMTP HELP helpfile.  Omission
293906f25ae9SGregory Neil Shapiro		noted by Ulrich Windl of the Universitat Regensburg.
294006f25ae9SGregory Neil Shapiro	Portability:
294106f25ae9SGregory Neil Shapiro		Add the ability to read IPv6 interface addresses into class
294206f25ae9SGregory Neil Shapiro			'w' under FreeBSD (and possibly others).  From Jun
294306f25ae9SGregory Neil Shapiro			Kuriyama of IMG SRC, Inc. and the FreeBSD Project.
294406f25ae9SGregory Neil Shapiro		Replace code for finding the number of CPUs on HPUX.
294506f25ae9SGregory Neil Shapiro		NCRUNIX MP-RAS 3.02 SO_REUSEADDR socket option does not
294606f25ae9SGregory Neil Shapiro			work properly causing problems if the accept()
294706f25ae9SGregory Neil Shapiro			fails and the socket needs to be reopened.  Patch
294806f25ae9SGregory Neil Shapiro			from Tom Moore of NCR.
294906f25ae9SGregory Neil Shapiro		NetBSD uses a .0 extension of formatted man pages.  From
295042e5d165SGregory Neil Shapiro			Andrew Brown of Crossbar Security.
295106f25ae9SGregory Neil Shapiro		Return to using the IPv6 AI_DEFAULT flag instead of AI_V4MAPPED
295206f25ae9SGregory Neil Shapiro			for calls to getipnodebyname().  The Linux
295306f25ae9SGregory Neil Shapiro			implementation is broken so AI_ADDRCONFIG is stripped
295406f25ae9SGregory Neil Shapiro			under Linux.  From John Beck of Sun Microsystems and
295506f25ae9SGregory Neil Shapiro			John Kennedy of Cal State University, Chico.
295606f25ae9SGregory Neil Shapiro	CONFIG: Catch invalid addresses containing a ',' at the wrong place.
295706f25ae9SGregory Neil Shapiro		Patch from Neil Rickert of Northern Illinois University.
295806f25ae9SGregory Neil Shapiro	CONFIG: New variables for the new sendmail options:
295906f25ae9SGregory Neil Shapiro		confCACERT_PATH			CACERTPath
296006f25ae9SGregory Neil Shapiro		confCACERT			CACERTFile
296106f25ae9SGregory Neil Shapiro		confCLIENT_CERT			ClientCertFile
296206f25ae9SGregory Neil Shapiro		confCLIENT_KEY			ClientKeyFile
296306f25ae9SGregory Neil Shapiro		confDH_PARAMETERS		DHParameters
296406f25ae9SGregory Neil Shapiro		confRAND_FILE			RandFile
296506f25ae9SGregory Neil Shapiro		confSERVER_CERT			ServerCertFile
296606f25ae9SGregory Neil Shapiro		confSERVER_KEY			ServerKeyFile
296706f25ae9SGregory Neil Shapiro	CONFIG: Provide basic rulesets for TLS policy control and add new
296806f25ae9SGregory Neil Shapiro		tags to the access database to support these policies.  See
296906f25ae9SGregory Neil Shapiro		cf/README for more information.
297006f25ae9SGregory Neil Shapiro	CONFIG: Add TLS information to the Received: header.
297106f25ae9SGregory Neil Shapiro	CONFIG: Call tls_client ruleset from check_mail in case it wasn't
297206f25ae9SGregory Neil Shapiro		called due to a STARTTLS command.
297306f25ae9SGregory Neil Shapiro	CONFIG: If TLS_PERM_ERR is defined, TLS related errors are permanent
297406f25ae9SGregory Neil Shapiro		instead of temporary.
297506f25ae9SGregory Neil Shapiro	CONFIG: FEATURE(`relay_hosts_only') didn't work in combination with
297606f25ae9SGregory Neil Shapiro		the access map and relaying to a domain without using a To:
297706f25ae9SGregory Neil Shapiro		tag.  Problem noted by Mark G. Thomas of Mark G. Thomas
297806f25ae9SGregory Neil Shapiro		Consulting.
297906f25ae9SGregory Neil Shapiro	CONFIG: Set confEBINDIR to /usr/sbin to match the devtools entry in
298006f25ae9SGregory Neil Shapiro		OSTYPE(`linux') and OSTYPE(`mklinux').  From Tim Pierce of
298106f25ae9SGregory Neil Shapiro		RootsWeb.com.
298206f25ae9SGregory Neil Shapiro	CONFIG: Make sure FEATURE(`nullclient') doesn't use aliasing and
298306f25ae9SGregory Neil Shapiro		forwarding to make it as close to the old behavior as
298406f25ae9SGregory Neil Shapiro		possible.  Problem noted by George W. Baltz of the
298506f25ae9SGregory Neil Shapiro		University of Maryland.
298606f25ae9SGregory Neil Shapiro	CONFIG: Added OSTYPE(`darwin') for Mac OS X and Darwin users.  From
298706f25ae9SGregory Neil Shapiro		Wilfredo Sanchez of Apple Computer, Inc.
298806f25ae9SGregory Neil Shapiro	CONFIG: Changed the map names used by FEATURE(`ldap_routing') from
298906f25ae9SGregory Neil Shapiro		ldap_mailhost and ldap_mailroutingaddress to ldapmh and
299006f25ae9SGregory Neil Shapiro		ldapmra as underscores in map names cause problems if
299106f25ae9SGregory Neil Shapiro		underscore is in OperatorChars.  Problem noted by Bob Zeitz
299206f25ae9SGregory Neil Shapiro		of the University of Alberta.
299306f25ae9SGregory Neil Shapiro	CONFIG: Apply blacklist_recipients also to hosts in class {w}.
299406f25ae9SGregory Neil Shapiro		Patch from Michael Tratz of Esosoft Corporation.
299506f25ae9SGregory Neil Shapiro	CONFIG: Use A=TCP ... instead of A=IPC ... in SMTP mailers.
299606f25ae9SGregory Neil Shapiro	CONTRIB: Add link_hash.sh to create symbolic links to the hash
299706f25ae9SGregory Neil Shapiro		of X.509 certificates.
299806f25ae9SGregory Neil Shapiro	CONTRIB: passwd-to-alias.pl:  More protection from special characters;
299906f25ae9SGregory Neil Shapiro		treat special shells as root aliases; skip entries where the
300006f25ae9SGregory Neil Shapiro		GECOS full name and username match.  From Ulrich Windl of the
300106f25ae9SGregory Neil Shapiro		Universitat Regensburg.
300206f25ae9SGregory Neil Shapiro	CONTRIB: qtool.pl: Add missing last_modified_time method and fix a
300306f25ae9SGregory Neil Shapiro		typo.  Patch from Graeme Hewson of Oracle.
300406f25ae9SGregory Neil Shapiro	CONTRIB: re-mqueue.pl: Improve handling of a race between re-mqueue
300506f25ae9SGregory Neil Shapiro		and sendmail.  Patch from Graeme Hewson of Oracle.
300606f25ae9SGregory Neil Shapiro	CONTRIB: re-mqueue.pl: Don't exit(0) at end so can be called as
300706f25ae9SGregory Neil Shapiro		subroutine Patch from Graeme Hewson of Oracle.
300806f25ae9SGregory Neil Shapiro	CONTRIB: Add movemail.pl (move old mail messages between queues by
300906f25ae9SGregory Neil Shapiro		calling re-mqueue.pl) and movemail.conf (configuration
301006f25ae9SGregory Neil Shapiro		script for movemail.pl).  From Graeme Hewson of Oracle.
301106f25ae9SGregory Neil Shapiro	CONTRIB: Add cidrexpand (expands CIDR blocks as a preprocessor to
301206f25ae9SGregory Neil Shapiro		makemap).  From Derek J. Balling of Yahoo,Inc.
301306f25ae9SGregory Neil Shapiro	DEVTOOLS: INSTALL_RAWMAN installation option mistakenly applied any
301406f25ae9SGregory Neil Shapiro		extension modifications (e.g., MAN8EXT) to the installation
301506f25ae9SGregory Neil Shapiro		target.  Patch from James Ralston of Carnegie Mellon
301606f25ae9SGregory Neil Shapiro		University.
301706f25ae9SGregory Neil Shapiro	DEVTOOLS: Add support for SunOS 5.9.
301806f25ae9SGregory Neil Shapiro	DEVTOOLS: New option confLN contains the command used to create
301906f25ae9SGregory Neil Shapiro		links.
302006f25ae9SGregory Neil Shapiro	LIBSMDB: Berkeley DB 2.X and 3.X errors might be lost and not
302106f25ae9SGregory Neil Shapiro		reported.
302206f25ae9SGregory Neil Shapiro	MAIL.LOCAL: DG/UX portability.  Problem noted by Tim Boyer of
302306f25ae9SGregory Neil Shapiro		Denman Tire Corporation.
302406f25ae9SGregory Neil Shapiro	MAIL.LOCAL: Prevent a possible DoS attack when compiled with
302506f25ae9SGregory Neil Shapiro		-DCONTENTLENGTH.  Based on patch from 3APA3A@SECURITY.NNOV.RU.
302606f25ae9SGregory Neil Shapiro	MAILSTATS: Fix usage statement (-p and -o are optional).
302706f25ae9SGregory Neil Shapiro	MAKEMAP: Change man page layout as workaround for problem with nroff
302806f25ae9SGregory Neil Shapiro		and -man on Solaris 7.  Patch from Larry Williamson.
302906f25ae9SGregory Neil Shapiro	RMAIL: AIX 4.3 has snprintf().  Problem noted by David Hayes of
303006f25ae9SGregory Neil Shapiro		Black Diamond Equipment, Limited.
303106f25ae9SGregory Neil Shapiro	RMAIL: Prevent a segmentation fault if the incoming message does not
303206f25ae9SGregory Neil Shapiro		have a From line.
303306f25ae9SGregory Neil Shapiro	VACATION: Read all of the headers before deciding whether or not
303406f25ae9SGregory Neil Shapiro		to respond instead of stopping after finding recipient.
303506f25ae9SGregory Neil Shapiro	Added Files:
303606f25ae9SGregory Neil Shapiro		cf/ostype/darwin.m4
303706f25ae9SGregory Neil Shapiro		contrib/cidrexpand
303806f25ae9SGregory Neil Shapiro		contrib/link_hash.sh
303906f25ae9SGregory Neil Shapiro		contrib/movemail.conf
304006f25ae9SGregory Neil Shapiro		contrib/movemail.pl
304106f25ae9SGregory Neil Shapiro		devtools/OS/SunOS.5.9
304206f25ae9SGregory Neil Shapiro		test/t_snprintf.c
304306f25ae9SGregory Neil Shapiro
304406f25ae9SGregory Neil Shapiro8.10.2/8.10.2	2000/06/07
304506f25ae9SGregory Neil Shapiro	SECURITY: Work around broken Linux setuid() implementation.
304606f25ae9SGregory Neil Shapiro		On Linux, a normal user process has the ability to subvert
304706f25ae9SGregory Neil Shapiro		the setuid() call such that it is impossible for a root
304806f25ae9SGregory Neil Shapiro		process to drop its privileges.  Problem noted by Wojciech
304906f25ae9SGregory Neil Shapiro		Purczynski of elzabsoft.pl.
305006f25ae9SGregory Neil Shapiro	SECURITY: Add more vigilance around set*uid(), setgid(), setgroups(),
305106f25ae9SGregory Neil Shapiro		initgroups(), and chroot() calls.
305206f25ae9SGregory Neil Shapiro	Added Files:
305306f25ae9SGregory Neil Shapiro		test/t_setuid.c
305406f25ae9SGregory Neil Shapiro
305506f25ae9SGregory Neil Shapiro8.10.1/8.10.1	2000/04/06
305606f25ae9SGregory Neil Shapiro	SECURITY: Limit the choice of outgoing (client-side) SMTP
305706f25ae9SGregory Neil Shapiro		Authentication mechanisms to those specified in
305806f25ae9SGregory Neil Shapiro		AuthMechanisms to prevent information leakage.  We do not
305906f25ae9SGregory Neil Shapiro		recommend use of PLAIN for outgoing mail as it sends the
306006f25ae9SGregory Neil Shapiro		password in clear text to possibly untrusted servers.  See
306106f25ae9SGregory Neil Shapiro		cf/README's DefaultAuthInfo section for additional information.
306206f25ae9SGregory Neil Shapiro	Copy the ident argument for openlog() to avoid problems on some
306306f25ae9SGregory Neil Shapiro		OSs.  Based on patch from Rob Bajorek from Webhelp.com.
306406f25ae9SGregory Neil Shapiro	Avoid bogus error message when reporting an alias line as too long.
306506f25ae9SGregory Neil Shapiro	Avoid bogus socket error message if sendmail.cf version level is
306606f25ae9SGregory Neil Shapiro		greater than sendmail binary supported version.  Patch
306706f25ae9SGregory Neil Shapiro		from John Beck of Sun Microsystems.
306806f25ae9SGregory Neil Shapiro	Prevent a malformed ruleset (missing right hand side) from causing
306906f25ae9SGregory Neil Shapiro		a segmentation fault when using address test mode.  Based on
307006f25ae9SGregory Neil Shapiro		patch from John Beck of Sun Microsystems.
307106f25ae9SGregory Neil Shapiro	Prevent memory leak from use of NIS maps and yp_match(3).  Problem
307206f25ae9SGregory Neil Shapiro		noted by Gil Kloepfer of the University of Texas at Austin.
307306f25ae9SGregory Neil Shapiro	Fix queue file permission checks to allow for TrustedUser ownership.
307406f25ae9SGregory Neil Shapiro	Change logging of errors from the trust_auth ruleset to LogLevel 10
307506f25ae9SGregory Neil Shapiro		or higher.
307606f25ae9SGregory Neil Shapiro	Avoid simple password cracking attacks against SMTP AUTH by using
307706f25ae9SGregory Neil Shapiro		exponential delay after too many tries within one connection.
307806f25ae9SGregory Neil Shapiro	Encode an initial empty AUTH challenge as '=', not as empty string.
307906f25ae9SGregory Neil Shapiro	Avoid segmentation fault on EX_SOFTWARE internal error logs.
308006f25ae9SGregory Neil Shapiro		Problem noted by Allan E Johannesen of Worcester
308106f25ae9SGregory Neil Shapiro		Polytechnic Institute.
308206f25ae9SGregory Neil Shapiro	Ensure that a header check which resolves to $#discard actually
308306f25ae9SGregory Neil Shapiro		discards the message.
308406f25ae9SGregory Neil Shapiro	Emit missing value warnings for aliases with no right hand side
308506f25ae9SGregory Neil Shapiro		when newaliases is run instead of only when delivery is
308606f25ae9SGregory Neil Shapiro		attempted to the alias.
308706f25ae9SGregory Neil Shapiro	Remove AuthOptions missing value warning for consistency with other
308806f25ae9SGregory Neil Shapiro		flag options.
308906f25ae9SGregory Neil Shapiro	Portability:
309006f25ae9SGregory Neil Shapiro		SECURITY: Specify a run-time shared library search path for
309106f25ae9SGregory Neil Shapiro			AIX 4.X instead of using the dangerous AIX 4.X
309206f25ae9SGregory Neil Shapiro			linker semantics.  AIX 4.X users should consult
309306f25ae9SGregory Neil Shapiro			sendmail/README for further information.  Problem
309406f25ae9SGregory Neil Shapiro			noted by Valdis Kletnieks of Virginia Tech.
309506f25ae9SGregory Neil Shapiro		Avoid use of strerror(3) call.  Problem noted by Charles
309606f25ae9SGregory Neil Shapiro			Levert of Ecole Polytechnique de Montreal.
309706f25ae9SGregory Neil Shapiro		DGUX requires -lsocket -lnsl and has a non-standard install
309806f25ae9SGregory Neil Shapiro			program.  From Tim Boyer of Denman Tire Corporation.
309906f25ae9SGregory Neil Shapiro		HPUX 11.0 has a broken res_search() function.
310006f25ae9SGregory Neil Shapiro		Updates to devtools/OS/NeXT.3.X, NeXT.4.X, and NEXTSTEP.4.X
310106f25ae9SGregory Neil Shapiro			from J. P. McCann of E I A.
310206f25ae9SGregory Neil Shapiro		Digital UNIX/Compaq Tru64 5.0 now includes snprintf(3).
310306f25ae9SGregory Neil Shapiro			Problem noted by Michael Long of Info Avenue Internet
310406f25ae9SGregory Neil Shapiro			Services, LLC.
310506f25ae9SGregory Neil Shapiro		Modern (post-199912) OpenBSD versions include working
310606f25ae9SGregory Neil Shapiro			strlc{at,py}(3) functions.  From Todd C. Miller of
310706f25ae9SGregory Neil Shapiro			Courtesan Consulting.
310806f25ae9SGregory Neil Shapiro		SINIX doesn't have random(3).  From Gerald Rinske of
310906f25ae9SGregory Neil Shapiro			Siemens Business Services.
311006f25ae9SGregory Neil Shapiro	CONFIG: Change error message about unresolvable sender domain to
311106f25ae9SGregory Neil Shapiro		include the sender address.  Proposed by Wolfgang Rupprecht
311206f25ae9SGregory Neil Shapiro		of WSRCC.
311306f25ae9SGregory Neil Shapiro	CONFIG: Fix usenet mailer calls.
311406f25ae9SGregory Neil Shapiro	CONFIG: If RELAY_MAILER_FLAGS is not defined, use SMTP_MAILER_FLAGS
311506f25ae9SGregory Neil Shapiro		to be backward compatible with 8.9.
311606f25ae9SGregory Neil Shapiro	CONFIG: Change handling of default case @domain for virtusertable
311706f25ae9SGregory Neil Shapiro		to allow for +*@domain to deal with +detail.
311806f25ae9SGregory Neil Shapiro	CONTRIB: Remove converting.sun.configs -- it is obsolete.
311906f25ae9SGregory Neil Shapiro	DEVTOOLS: confUBINMODE was being ignored.  Fix from KITAZIMA, Tuneki
312006f25ae9SGregory Neil Shapiro		of NEC.
312106f25ae9SGregory Neil Shapiro	DEVTOOLS: Add to NCR platform list and include the architecture
312206f25ae9SGregory Neil Shapiro		(i486).  From Tom J. Moore of NCR.
312306f25ae9SGregory Neil Shapiro	DEVTOOLS: SECURITY: Change method of linking with sendmail utility
312406f25ae9SGregory Neil Shapiro		libraries to work around the AIX 4.X and SunOS 4.X linker's
312506f25ae9SGregory Neil Shapiro		overloaded -L option.  Problem noted by Valdis Kletnieks of
312606f25ae9SGregory Neil Shapiro		Virginia Tech.
312706f25ae9SGregory Neil Shapiro	DEVTOOLS: configure.sh was overriding the user's choice for
312806f25ae9SGregory Neil Shapiro		confNROFF.  Problem noted by Glenn A. Malling of Syracuse
312906f25ae9SGregory Neil Shapiro		University.
313006f25ae9SGregory Neil Shapiro	DEVTOOLS: New variables conf_prog_LIB_POST and confBLDVARIANT added
313106f25ae9SGregory Neil Shapiro		for other internal projects but included in the open source
313206f25ae9SGregory Neil Shapiro		release.
313306f25ae9SGregory Neil Shapiro	LIBSMDB: Check for ".db" instead of simply "db" at the end of the
313406f25ae9SGregory Neil Shapiro		map name to determine whether or not to add the extension.
313506f25ae9SGregory Neil Shapiro		This fixes makemap when building the userdb file.  Problem
313606f25ae9SGregory Neil Shapiro		noted by Andrew J Cole of the University of Leeds.
313706f25ae9SGregory Neil Shapiro	LIBSMDB: Allow a database to be opened for updating and created if
313806f25ae9SGregory Neil Shapiro		it doesn't already exist.  Problem noted by Rand Wacker of
313906f25ae9SGregory Neil Shapiro		Sendmail.
314006f25ae9SGregory Neil Shapiro	LIBSMDB: If type is SMDB_TYPE_DEFAULT and both NEWDB and NDBM are
314106f25ae9SGregory Neil Shapiro		available, fall back to NDBM if NEWDB open fails.  This
314206f25ae9SGregory Neil Shapiro		fixes praliases.  Patch	from John Beck of Sun Microsystems.
314306f25ae9SGregory Neil Shapiro	LIBSMUTIL: safefile()'s SFF_NOTEXCL check was being misinterpreted
314406f25ae9SGregory Neil Shapiro		as SFF_NOWRFILES.
314506f25ae9SGregory Neil Shapiro	OP.ME: Clarify some issues regarding mailer flags.  Suggested by
314606f25ae9SGregory Neil Shapiro		Martin Mokrejs of The Charles University and Neil Rickert of
314706f25ae9SGregory Neil Shapiro		Northern Illinois University.
314806f25ae9SGregory Neil Shapiro	PRALIASES: Restore 8.9.X functionality of being able to search for
314906f25ae9SGregory Neil Shapiro		particular keys in a database by specifying the keys on the
315006f25ae9SGregory Neil Shapiro		command line.  Man page updated accordingly.  Patch from
315106f25ae9SGregory Neil Shapiro		John Beck of Sun Microsystems.
315206f25ae9SGregory Neil Shapiro	VACATION: SunOS 4.X portability from Charles Levert of Ecole
315306f25ae9SGregory Neil Shapiro		Polytechnique de Montreal.
315406f25ae9SGregory Neil Shapiro	VACATION: Fix -t option which is ignored but available for
315506f25ae9SGregory Neil Shapiro		compatibility with Sun's version, based on patch from
315606f25ae9SGregory Neil Shapiro		Volker Dobler of Infratest Burke.
315706f25ae9SGregory Neil Shapiro	Added Files:
315806f25ae9SGregory Neil Shapiro		devtools/M4/UNIX/smlib.m4
315906f25ae9SGregory Neil Shapiro		devtools/OS/OSF1.V5.0
316006f25ae9SGregory Neil Shapiro	Deleted Files:
316106f25ae9SGregory Neil Shapiro		contrib/converting.sun.configs
316206f25ae9SGregory Neil Shapiro	Deleted Directories (already done in 8.10.0 but not listed):
316306f25ae9SGregory Neil Shapiro		doc/intro
316406f25ae9SGregory Neil Shapiro		doc/usenix
316506f25ae9SGregory Neil Shapiro		doc/changes
316606f25ae9SGregory Neil Shapiro
316706f25ae9SGregory Neil Shapiro8.10.0/8.10.0	2000/03/01
316806f25ae9SGregory Neil Shapiro	    *************************************************************
316906f25ae9SGregory Neil Shapiro	    * The engineering department at Sendmail, Inc. has suffered	*
317006f25ae9SGregory Neil Shapiro	    * the tragic loss of a key member of our engineering team.	*
317106f25ae9SGregory Neil Shapiro	    * Julie Van Bourg was the Vice President of Engineering	*
317206f25ae9SGregory Neil Shapiro	    * at Sendmail, Inc. during the development and deployment	*
317306f25ae9SGregory Neil Shapiro	    * of this release.  It was her vision, dedication, and	*
317406f25ae9SGregory Neil Shapiro	    * support that has made this release a success.  Julie died	*
317506f25ae9SGregory Neil Shapiro	    * on October 26, 1999 of cancer.  We have lost a leader, a	*
317606f25ae9SGregory Neil Shapiro	    * coach, and a friend.					*
317706f25ae9SGregory Neil Shapiro	    *								*
317806f25ae9SGregory Neil Shapiro	    * This release is dedicated to her memory and to the joy,	*
317906f25ae9SGregory Neil Shapiro	    * strength, ideals, and hope that she brought to all of us.	*
318006f25ae9SGregory Neil Shapiro	    * Julie, we miss you!					*
318106f25ae9SGregory Neil Shapiro	    *************************************************************
318206f25ae9SGregory Neil Shapiro	SECURITY: The safe file checks now back track through symbolic
318306f25ae9SGregory Neil Shapiro		links to make sure the files can't be compromised due
318406f25ae9SGregory Neil Shapiro		to poor permissions on the parent directories of the
318506f25ae9SGregory Neil Shapiro		symbolic link target.
318606f25ae9SGregory Neil Shapiro	SECURITY: Only root, TrustedUser, and users in class t can rebuild
318706f25ae9SGregory Neil Shapiro		the alias map.  Problem noted by Michal Zalewski of the
318806f25ae9SGregory Neil Shapiro		"Internet for Schools" project (IdS).
318906f25ae9SGregory Neil Shapiro	SECURITY: There is a potential for a denial of service attack if
319006f25ae9SGregory Neil Shapiro		the AutoRebuildAliases option is set as a user can kill the
319106f25ae9SGregory Neil Shapiro		sendmail process while it is rebuilding the aliases file
319206f25ae9SGregory Neil Shapiro		(leaving it in an inconsistent state).  This option and
319306f25ae9SGregory Neil Shapiro		its use is deprecated and will be removed from a future
319406f25ae9SGregory Neil Shapiro		version of sendmail.
319506f25ae9SGregory Neil Shapiro	SECURITY: Make sure all file descriptors (besides stdin, stdout, and
319606f25ae9SGregory Neil Shapiro		stderr) are closed before restarting sendmail.  Problem noted
319706f25ae9SGregory Neil Shapiro		by Michal Zalewski of the "Internet for Schools" project
319806f25ae9SGregory Neil Shapiro		(IdS).
319906f25ae9SGregory Neil Shapiro	Begin using /etc/mail/ for sendmail related files.  This affects
320006f25ae9SGregory Neil Shapiro		a large number of files.  See cf/README for more details.
320106f25ae9SGregory Neil Shapiro	The directory structure of the distribution has changed slightly
320206f25ae9SGregory Neil Shapiro		for easier code sharing among the programs.
320306f25ae9SGregory Neil Shapiro	Support SMTP AUTH (see RFC 2554).  New macros for this purpose
320406f25ae9SGregory Neil Shapiro		are ${auth_authen}, ${auth_type}, and ${auth_author}
320506f25ae9SGregory Neil Shapiro		which hold the client's authentication credentials,
320606f25ae9SGregory Neil Shapiro		the mechanism used for authentication, and the
320706f25ae9SGregory Neil Shapiro		authorization identity (i.e., the AUTH= parameter if
320806f25ae9SGregory Neil Shapiro		supplied).  Based on code contributed by Tim Martin of CMU.
320906f25ae9SGregory Neil Shapiro	On systems which use the Torek stdio library (all of the BSD
321006f25ae9SGregory Neil Shapiro		distributions), use memory-buffered files to reduce
321106f25ae9SGregory Neil Shapiro		file system overhead by not creating temporary files on
321206f25ae9SGregory Neil Shapiro		disk.  Contributed by Exactis.com, Inc.
321306f25ae9SGregory Neil Shapiro	New option DataFileBufferSize to control the maximum size of a
321406f25ae9SGregory Neil Shapiro		memory-buffered data (df) file before a disk-based file is
321506f25ae9SGregory Neil Shapiro		used.  Contributed by Exactis.com, Inc.
321606f25ae9SGregory Neil Shapiro	New option XscriptFileBufferSize to control the maximum size of a
321706f25ae9SGregory Neil Shapiro		memory-buffered transcript (xf) file before a disk-based
321806f25ae9SGregory Neil Shapiro		file is used.  Contributed by Exactis.com, Inc.
321906f25ae9SGregory Neil Shapiro	sendmail implements RFC 2476 (Message Submission), e.g., it can
322006f25ae9SGregory Neil Shapiro		now listen on several different ports.  Use:
322106f25ae9SGregory Neil Shapiro		O DaemonPortOptions=Name=MSA, Port=587, M=E
322206f25ae9SGregory Neil Shapiro		to run a Message Submission Agent (MSA); this is turned
322306f25ae9SGregory Neil Shapiro		on by default in m4-generated .cf files; it can be turned
322406f25ae9SGregory Neil Shapiro		off with FEATURE(`no_default_msa').
322506f25ae9SGregory Neil Shapiro	The 'XUSR' SMTP command is deprecated.  Mail user agents should
322606f25ae9SGregory Neil Shapiro		begin using RFC 2476 Message Submission for initial user
322706f25ae9SGregory Neil Shapiro		message submission.  XUSR may disappear from a future release.
322806f25ae9SGregory Neil Shapiro	The new '-G' (relay (gateway) submission) command line option
322906f25ae9SGregory Neil Shapiro		indicates that the message being submitted from the command
323006f25ae9SGregory Neil Shapiro		line is for relaying, not initial submission.  This means
323106f25ae9SGregory Neil Shapiro		the message will be rejected if the addresses are not fully
323206f25ae9SGregory Neil Shapiro		qualified and no canonicalization will be done.  Future
323306f25ae9SGregory Neil Shapiro		releases may even reject improperly formed messages.
323406f25ae9SGregory Neil Shapiro	The '-U' (initial user submission) command line option is
323506f25ae9SGregory Neil Shapiro		deprecated and may be removed from a future release.
323606f25ae9SGregory Neil Shapiro		Mail user agents should begin using '-G' to indicate that
323706f25ae9SGregory Neil Shapiro		this is a relay submission (the inverse of -U).
323806f25ae9SGregory Neil Shapiro	The next release of sendmail will assume that any message submitted
323906f25ae9SGregory Neil Shapiro		from the command line is an initial user submission and act
324006f25ae9SGregory Neil Shapiro		accordingly.
324106f25ae9SGregory Neil Shapiro	If sendmail doesn't have enough privileges to run a .forward
324206f25ae9SGregory Neil Shapiro		program or deliver to file as the owner of that file, the
324306f25ae9SGregory Neil Shapiro		address is marked as unsafe.  This means if RunAsUser is
324406f25ae9SGregory Neil Shapiro		set, users won't be able to use programs or delivery to
324506f25ae9SGregory Neil Shapiro		files in their .forward files.  Administrators can override
324606f25ae9SGregory Neil Shapiro		this by setting the DontBlameSendmail option to the new
324706f25ae9SGregory Neil Shapiro		setting NonRootSafeAddr.
324806f25ae9SGregory Neil Shapiro	Allow group or world writable directories if the sticky bit is set
324906f25ae9SGregory Neil Shapiro		on the directory and DontBlameSendmail is set to
325006f25ae9SGregory Neil Shapiro		TrustStickyBit.  Based on patch from Chris Metcalf of
325106f25ae9SGregory Neil Shapiro		InCert Software.
325206f25ae9SGregory Neil Shapiro	Prevent logging of unsafe directory paths for non-existent forward
325306f25ae9SGregory Neil Shapiro		files if the new DontWarnForwardFileInUnsafeDirPath bit is
325406f25ae9SGregory Neil Shapiro		set in the DontBlameSendmail option.  Requested by many.
325506f25ae9SGregory Neil Shapiro	New Timeout.control option to limit the total time spent satisfying
325606f25ae9SGregory Neil Shapiro		a control socket request.
325706f25ae9SGregory Neil Shapiro	New Timeout.resolver options for controlling BIND resolver
325806f25ae9SGregory Neil Shapiro		settings:
325906f25ae9SGregory Neil Shapiro		Timeout.resolver.retrans
326006f25ae9SGregory Neil Shapiro			Sets the resolver's retransmission time interval (in
326106f25ae9SGregory Neil Shapiro			seconds).  Sets both Timeout.resolver.retrans.first
326206f25ae9SGregory Neil Shapiro			and Timeout.resolver.retrans.normal.
326306f25ae9SGregory Neil Shapiro		Timeout.resolver.retrans.first
326406f25ae9SGregory Neil Shapiro			Sets the resolver's retransmission time interval (in
326506f25ae9SGregory Neil Shapiro			seconds) for the first attempt to deliver a message.
326606f25ae9SGregory Neil Shapiro		Timeout.resolver.retrans.normal
326706f25ae9SGregory Neil Shapiro			Sets the resolver's retransmission time interval (in
326806f25ae9SGregory Neil Shapiro			seconds) for all resolver lookups except the first
326906f25ae9SGregory Neil Shapiro			delivery attempt.
327006f25ae9SGregory Neil Shapiro		Timeout.resolver.retry
327106f25ae9SGregory Neil Shapiro			Sets the number of times to retransmit a resolver
327206f25ae9SGregory Neil Shapiro			query.  Sets both Timeout.resolver.retry.first
327306f25ae9SGregory Neil Shapiro			and Timeout.resolver.retry.normal.
327406f25ae9SGregory Neil Shapiro		Timeout.resolver.retry.first
327506f25ae9SGregory Neil Shapiro			Sets the number of times to retransmit a resolver
327606f25ae9SGregory Neil Shapiro			query for the first attempt to deliver a message.
327706f25ae9SGregory Neil Shapiro		Timeout.resolver.retry.normal
327806f25ae9SGregory Neil Shapiro			Sets the number of times to retransmit a resolver
327906f25ae9SGregory Neil Shapiro			query for all resolver lookups except the first
328006f25ae9SGregory Neil Shapiro			delivery attempt.
328106f25ae9SGregory Neil Shapiro		Contributed by Exactis.com, Inc.
328206f25ae9SGregory Neil Shapiro	Support multiple queue directories.  To use multiple queues, supply
328306f25ae9SGregory Neil Shapiro		a QueueDirectory option value ending with an asterisk.  For
328406f25ae9SGregory Neil Shapiro		example, /var/spool/mqueue/q* will use all of the
328506f25ae9SGregory Neil Shapiro		directories or symbolic links to directories beginning with
328606f25ae9SGregory Neil Shapiro		'q' in /var/spool/mqueue as queue directories.  Keep in
328706f25ae9SGregory Neil Shapiro		mind, the queue directory structure should not be changed
328806f25ae9SGregory Neil Shapiro		while sendmail is running.  Queue runs create a separate
328906f25ae9SGregory Neil Shapiro		process for running each queue unless the verbose flag is
329006f25ae9SGregory Neil Shapiro		given on a non-daemon queue run.  New items are randomly
329106f25ae9SGregory Neil Shapiro		assigned to a queue.  Contributed by Exactis.com, Inc.
329206f25ae9SGregory Neil Shapiro	Support different directories for qf, df, and xf queue files; if
329306f25ae9SGregory Neil Shapiro		subdirectories or symbolic links to directories of those names
329406f25ae9SGregory Neil Shapiro		exist in the queue directories, they are used for the
329506f25ae9SGregory Neil Shapiro		corresponding queue files.  Keep in mind, the queue
329606f25ae9SGregory Neil Shapiro		directory structure should not be changed while sendmail is
329706f25ae9SGregory Neil Shapiro		running.  Proposed by Mathias Koerber of Singapore
329806f25ae9SGregory Neil Shapiro		Telecommunications Ltd.
329906f25ae9SGregory Neil Shapiro	New queue file naming system which uses a filename guaranteed to be
330006f25ae9SGregory Neil Shapiro		unique for 60 years.  This allows queue IDs to be assigned
330106f25ae9SGregory Neil Shapiro		without fancy file system locking.  Queued items can be
330206f25ae9SGregory Neil Shapiro		moved between queues easily.  Contributed by Exactis.com,
330306f25ae9SGregory Neil Shapiro		Inc.
330406f25ae9SGregory Neil Shapiro	Messages which are undeliverable due to temporary address failures
330506f25ae9SGregory Neil Shapiro		(e.g., DNS failure) will now go to the FallBackMX host, if
330606f25ae9SGregory Neil Shapiro		set.  Contributed by Exactis.com, Inc.
330706f25ae9SGregory Neil Shapiro	New command line option '-L tag' which sets the identifier used for
330806f25ae9SGregory Neil Shapiro		syslog.  Contributed by Exactis.com, Inc.
330906f25ae9SGregory Neil Shapiro	QueueSortOrder=Filename will sort the queue by filename.  This
331006f25ae9SGregory Neil Shapiro		avoids opening and reading each queue file when preparing
331106f25ae9SGregory Neil Shapiro		to run the queue.  Contributed by Exactis.com, Inc.
331206f25ae9SGregory Neil Shapiro	Shared memory counters and microtimers functionality has been
331306f25ae9SGregory Neil Shapiro		donated by Exactis.com, Inc.
331406f25ae9SGregory Neil Shapiro	The SCCS ID tags have been replaced with RCS ID tags.
331506f25ae9SGregory Neil Shapiro	Allow trusted users (those on a T line or in $=t) to set the
331606f25ae9SGregory Neil Shapiro		QueueDirectory (Q) option without an X-Authentication-Warning:
331706f25ae9SGregory Neil Shapiro		being added.  Suggested by Michael K. Sanders.
331806f25ae9SGregory Neil Shapiro	IPv6 support based on patches from John Kennedy of Cal State
331906f25ae9SGregory Neil Shapiro		University, Chico, Motonori Nakamura of Kyoto University,
332006f25ae9SGregory Neil Shapiro		and John Beck of Sun Microsystems.
332106f25ae9SGregory Neil Shapiro	In low-disk space situations, where sendmail would previously refuse
332206f25ae9SGregory Neil Shapiro		connections, still accept them, but only allow ETRN commands.
332306f25ae9SGregory Neil Shapiro		Suggested by Mathias Koerber of Singapore Telecommunications
332406f25ae9SGregory Neil Shapiro		Ltd.
332506f25ae9SGregory Neil Shapiro	The [IPC] builtin mailer now allows delivery to a UNIX domain socket
332606f25ae9SGregory Neil Shapiro		on systems which support them.  This can be used with LMTP
332706f25ae9SGregory Neil Shapiro		local delivery agents which listen on a named socket.  An
332806f25ae9SGregory Neil Shapiro		example mailer might be:
332906f25ae9SGregory Neil Shapiro			Mexecmail, P=[IPC], F=lsDFMmnqSXzA5@/:|, E=\r\n,
333006f25ae9SGregory Neil Shapiro				S=10, R=20/40, T=DNS/RFC822/X-Unix,
333106f25ae9SGregory Neil Shapiro				A=FILE /var/run/lmtpd
333206f25ae9SGregory Neil Shapiro		Code contributed by Lyndon Nerenberg of Messaging Direct.
333306f25ae9SGregory Neil Shapiro	The [TCP] builtin mailer name is now deprecated.  Use [IPC]
333406f25ae9SGregory Neil Shapiro		instead.
333506f25ae9SGregory Neil Shapiro	The first mailer argument in the [IPC] mailer is now checked for a
333606f25ae9SGregory Neil Shapiro		legitimate value.  Possible values are TCP (for TCP/IP
333706f25ae9SGregory Neil Shapiro		connections), IPC (which will be deprecated in a future
333806f25ae9SGregory Neil Shapiro		version), and FILE (for UNIX domain socket delivery).
333906f25ae9SGregory Neil Shapiro	PrivacyOptions=goaway no longer includes the noetrn and the noreceipts
334006f25ae9SGregory Neil Shapiro		flags.
334106f25ae9SGregory Neil Shapiro	PrivacyOptions=nobodyreturn instructs sendmail not to include the
334206f25ae9SGregory Neil Shapiro		body of the original message on delivery status
334306f25ae9SGregory Neil Shapiro		notifications.
334406f25ae9SGregory Neil Shapiro	Don't announce DSN if PrivacyOptions=noreceipts is set.  Problem noted
334506f25ae9SGregory Neil Shapiro		by Dan Bernstein, fix from Robert Harker of Harker Systems.
334606f25ae9SGregory Neil Shapiro	Accept the SMTP RSET command even when rejecting commands due to TCP
334706f25ae9SGregory Neil Shapiro		Wrappers or the check_relay ruleset.  Problem noted by
334806f25ae9SGregory Neil Shapiro		Steve Schweinhart of America Online.
334906f25ae9SGregory Neil Shapiro	Warn if OperatorChars is set multiple times.  OperatorChars should
335006f25ae9SGregory Neil Shapiro		not be set after rulesets are defined.  Suggested by
335106f25ae9SGregory Neil Shapiro		Mitchell Blank Jr of Exec-PC.
335206f25ae9SGregory Neil Shapiro	Do not report temporary failure on delivery to files.  In
335306f25ae9SGregory Neil Shapiro		interactive delivery mode, this would result in two SMTP
335406f25ae9SGregory Neil Shapiro		responses after the DATA command.  Problem noted by
335506f25ae9SGregory Neil Shapiro		Nik Conwell of Boston University.
335606f25ae9SGregory Neil Shapiro	Check file close when mailing to files.  Problem noted by Nik
335706f25ae9SGregory Neil Shapiro		Conwell of Boston University.
335806f25ae9SGregory Neil Shapiro	Avoid a segmentation fault when using the LDAP map.  Patch from
335906f25ae9SGregory Neil Shapiro		Curtis W. Hillegas of Princeton University.
336006f25ae9SGregory Neil Shapiro	Always bind to the LDAP server regardless of whether you are using
336106f25ae9SGregory Neil Shapiro		ldap_open() or ldap_init().  Fix from Raj Kunjithapadam of
336206f25ae9SGregory Neil Shapiro		@Home Network.
336306f25ae9SGregory Neil Shapiro	New ruleset trust_auth to determine whether a given AUTH=
336406f25ae9SGregory Neil Shapiro		parameter of the MAIL command should be trusted.  See SMTP
336506f25ae9SGregory Neil Shapiro		AUTH, cf/README, and doc/op/op.ps.
336606f25ae9SGregory Neil Shapiro	Allow new named config file rules check_vrfy, check_expn, and
336706f25ae9SGregory Neil Shapiro		check_etrn for VRFY, EXPN, and ETRN commands, respectively,
336806f25ae9SGregory Neil Shapiro		similar to check_rcpt etc.
336906f25ae9SGregory Neil Shapiro	Introduce new macros ${rcpt_mailer}, ${rcpt_host}, ${rcpt_addr},
337006f25ae9SGregory Neil Shapiro		${mail_mailer}, ${mail_host}, ${mail_addr} that hold
337106f25ae9SGregory Neil Shapiro		the results of parsing the RCPT and MAIL arguments, i.e.
337206f25ae9SGregory Neil Shapiro		the resolved triplet from $#mailer $@host $:addr.
337306f25ae9SGregory Neil Shapiro		From Kari Hurtta of the Finnish Meteorological Institute.
337406f25ae9SGregory Neil Shapiro	New macro ${client_resolve} which holds the result of the resolve
337506f25ae9SGregory Neil Shapiro		call for ${client_name}: OK, FAIL, FORGED, TEMP.  Proposed
337606f25ae9SGregory Neil Shapiro		by Kari Hurtta of the Finnish Meteorological Institute.
337706f25ae9SGregory Neil Shapiro	New macros ${dsn_notify}, ${dsn_envid}, and ${dsn_ret} that hold
337806f25ae9SGregory Neil Shapiro		the corresponding DSN parameter values.  Proposed by
337906f25ae9SGregory Neil Shapiro		Mathias Herberts.
338006f25ae9SGregory Neil Shapiro	New macro ${msg_size} which holds the value of the SIZE= parameter,
338106f25ae9SGregory Neil Shapiro		i.e., usually the size of the message (in an ESMTP dialogue),
338206f25ae9SGregory Neil Shapiro		before the message has been collected, thereafter it holds
338306f25ae9SGregory Neil Shapiro		the message size as computed by sendmail (and can be used
338406f25ae9SGregory Neil Shapiro		in check_compat).
338506f25ae9SGregory Neil Shapiro	The macro ${deliveryMode} now specifies the current delivery mode
338606f25ae9SGregory Neil Shapiro		sendmail is using instead of the value of the DeliveryMode
338706f25ae9SGregory Neil Shapiro		option.
338806f25ae9SGregory Neil Shapiro	New macro ${ntries} holds the number of delivery attempts.
338906f25ae9SGregory Neil Shapiro	Drop explicit From: if same as what would be generated only if it is
339006f25ae9SGregory Neil Shapiro		a local address.  From Motonori Nakamura of Kyoto University.
339106f25ae9SGregory Neil Shapiro	Write pid to file also if sendmail only processes the queue.
339206f25ae9SGregory Neil Shapiro		Proposed by Roy J. Mongiovi of Georgia Tech.
339306f25ae9SGregory Neil Shapiro	Log "low on disk space" only when necessary.
339406f25ae9SGregory Neil Shapiro	New macro ${load_avg} can be used to check the current load average.
339506f25ae9SGregory Neil Shapiro		Suggested by Scott Gifford of The Internet Ramp.
339606f25ae9SGregory Neil Shapiro	Return-Receipt-To: header implies DSN request if option RrtImpliesDsn
339706f25ae9SGregory Neil Shapiro		is set.
339806f25ae9SGregory Neil Shapiro	Flag -S for maps to specify the character which is substituted
339906f25ae9SGregory Neil Shapiro		for spaces (instead of the default given by O BlankSub).
340006f25ae9SGregory Neil Shapiro	Flag -D for maps: perform no lookup in deferred delivery mode.
340106f25ae9SGregory Neil Shapiro		This flag is set by default for the host map.  Based on a
340206f25ae9SGregory Neil Shapiro		proposal from Ian MacPhedran of the University of Saskatchewan.
340306f25ae9SGregory Neil Shapiro	Open maps only on demand, not at startup.
340406f25ae9SGregory Neil Shapiro	Log warning about unsupported IP address families.
340506f25ae9SGregory Neil Shapiro	New option MaxHeadersLength allows to specify a maximum length
340606f25ae9SGregory Neil Shapiro		of the sum of all headers.  This can be used to prevent
340706f25ae9SGregory Neil Shapiro		a denial-of-service attack.
340806f25ae9SGregory Neil Shapiro	New option MaxMimeHeaderLength which limits the size of MIME
340906f25ae9SGregory Neil Shapiro		headers and parameters within those headers.  This option
341006f25ae9SGregory Neil Shapiro		is intended to protect mail user agents from buffer
341106f25ae9SGregory Neil Shapiro		overflow attacks.
341206f25ae9SGregory Neil Shapiro	Added option MaxAliasRecursion to specify the maximum depth of
341306f25ae9SGregory Neil Shapiro		alias recursion.
341406f25ae9SGregory Neil Shapiro	New flag F=6 for mailers to strip headers to seven bit.
341506f25ae9SGregory Neil Shapiro	Map type syslog to log the key via syslogd.
341606f25ae9SGregory Neil Shapiro	Entries in the alias file can be continued by putting a backslash
341706f25ae9SGregory Neil Shapiro		directly before the newline.
341806f25ae9SGregory Neil Shapiro	New option DeadLetterDrop to define the location of the system-wide
341906f25ae9SGregory Neil Shapiro		dead.letter file, formerly hardcoded to
342006f25ae9SGregory Neil Shapiro		/usr/tmp/dead.letter.  If this option is not set (the
342106f25ae9SGregory Neil Shapiro		default), sendmail will not attempt to save to a
342206f25ae9SGregory Neil Shapiro		system-wide dead.letter file if it can not bounce the mail
342306f25ae9SGregory Neil Shapiro		to the user nor postmaster.  Instead, it will rename the qf
342406f25ae9SGregory Neil Shapiro		file as it has in the past when the dead.letter file
342506f25ae9SGregory Neil Shapiro		could not be opened.
342606f25ae9SGregory Neil Shapiro	New option PidFile to define the location of the pid file.  The
342706f25ae9SGregory Neil Shapiro		value of this option is macro expanded.
342806f25ae9SGregory Neil Shapiro	New option ProcessTitlePrefix specifies a prefix string for the
342906f25ae9SGregory Neil Shapiro		process title shown in 'ps' listings.
343006f25ae9SGregory Neil Shapiro	New macros for use with the PidFile and ProcessTitlePrefix options
343106f25ae9SGregory Neil Shapiro		(along with the already existing macros):
343206f25ae9SGregory Neil Shapiro		${daemon_info}      Daemon information, e.g.
343306f25ae9SGregory Neil Shapiro		                    SMTP+queueing@00:30:00
343406f25ae9SGregory Neil Shapiro		${daemon_addr}	    Daemon address, e.g., 0.0.0.0
343506f25ae9SGregory Neil Shapiro		${daemon_family}    Daemon family, e.g., inet, inet6, etc.
343606f25ae9SGregory Neil Shapiro		${daemon_name}      Daemon name, e.g., MSA.
343706f25ae9SGregory Neil Shapiro		${daemon_port}	    Daemon port, e.g., 25
343806f25ae9SGregory Neil Shapiro		${queue_interval}   Queue run interval, e.g., 00:30:00
343906f25ae9SGregory Neil Shapiro	New macros especially for virtual hosting:
344006f25ae9SGregory Neil Shapiro		${if_name}	hostname of interface of incoming connection.
344106f25ae9SGregory Neil Shapiro		${if_addr}	address of interface of incoming connection.
344206f25ae9SGregory Neil Shapiro		The latter is only set if the interface does not belong to the
344306f25ae9SGregory Neil Shapiro		loopback net.
344406f25ae9SGregory Neil Shapiro	If a message being accepted via a method other than SMTP and
344506f25ae9SGregory Neil Shapiro		would be rejected by a header check, do not send the message.
344606f25ae9SGregory Neil Shapiro		Suggested by Phil Homewood of Mincom Pty Ltd.
344706f25ae9SGregory Neil Shapiro	Don't strip comments for header checks if $>+ is used instead of $>.
344806f25ae9SGregory Neil Shapiro		Provide header value as quoted string in the macro
344906f25ae9SGregory Neil Shapiro		${currHeader} (possibly truncated to MAXNAME).  Suggested by
345006f25ae9SGregory Neil Shapiro		Jan Krueger of Unix-AG of University of Hannover.
345106f25ae9SGregory Neil Shapiro		The length of the header value is stored in ${hdrlen}.
345206f25ae9SGregory Neil Shapiro	H*: allows to specify a default ruleset for header checks.  This
345306f25ae9SGregory Neil Shapiro		ruleset will only be called if the individual header does
345406f25ae9SGregory Neil Shapiro		not have its own ruleset assigned.  Suggested by Jan
345506f25ae9SGregory Neil Shapiro		Krueger of Unix-AG of University of Hannover.
345606f25ae9SGregory Neil Shapiro		The name of the header field stored in ${hdr_name}.
345706f25ae9SGregory Neil Shapiro	Comments (i.e., text within parentheses) in rulesets are not
345806f25ae9SGregory Neil Shapiro		removed if the config file version is greater than or equal
345906f25ae9SGregory Neil Shapiro		to 9.  For example, "R$+ ( 1 )		$@ 1" matches the
346006f25ae9SGregory Neil Shapiro		input "token (1)" but does not match "token".
346106f25ae9SGregory Neil Shapiro	Avoid removing the Content-Transfer-Encoding MIME header on
346206f25ae9SGregory Neil Shapiro		MIME messages.  Problem noted by Sigurbjorn B. Larusson of
346306f25ae9SGregory Neil Shapiro		Multimedia Consumer Services.  Fix from Per Hedeland of
346406f25ae9SGregory Neil Shapiro		Ericsson.
346506f25ae9SGregory Neil Shapiro	Avoid duplicate Content-Transfer-Encoding MIME header on
346606f25ae9SGregory Neil Shapiro		messages with 8-bit text in headers.  Problem noted by
346706f25ae9SGregory Neil Shapiro		Per Steinar Iversen of Oslo College.  Fix from Per Hedeland
346806f25ae9SGregory Neil Shapiro		of Ericsson.
346906f25ae9SGregory Neil Shapiro	Avoid keeping maps locked longer than necessary when re-opening a
347006f25ae9SGregory Neil Shapiro		modified database map file.  Problem noted by Chris Adams
347106f25ae9SGregory Neil Shapiro		of Renaissance Internet Services.
347206f25ae9SGregory Neil Shapiro	Resolving to the $#error mailer with a temporary failure code (e.g.,
347306f25ae9SGregory Neil Shapiro		$#error $@ tempfail $: "400 Temporary failure") will now
347406f25ae9SGregory Neil Shapiro		queue up the message instead of bouncing it.
347506f25ae9SGregory Neil Shapiro	Be more liberal in acceptable responses to an SMTP RSET command as
347606f25ae9SGregory Neil Shapiro		standard does not provide any indication of what to do when
347706f25ae9SGregory Neil Shapiro		something other than 250 is received.  Based on a patch
347806f25ae9SGregory Neil Shapiro		from Steve Schweinhart of America Online.
347906f25ae9SGregory Neil Shapiro	New option TrustedUser allows to specify a user who can own
348006f25ae9SGregory Neil Shapiro		important files instead of root.  This requires HASFCHOWN.
348106f25ae9SGregory Neil Shapiro	Fix USERDB conditional so compiling with NEWDB or HESIOD and
348206f25ae9SGregory Neil Shapiro		setting USERDB=0 works.  Fix from Jorg Zanger of Schock.
348306f25ae9SGregory Neil Shapiro	Fix another instance (similar to one in 8.9.3) of a network failure
348406f25ae9SGregory Neil Shapiro		being mis-logged as "Illegal Seek" instead of whatever
348506f25ae9SGregory Neil Shapiro		really went wrong.  From John Beck of Sun Microsystems.
348606f25ae9SGregory Neil Shapiro	$? tests also whether the macro is non-null.
348706f25ae9SGregory Neil Shapiro	Print an error message if a mailer definition contains an invalid
348806f25ae9SGregory Neil Shapiro		equate name.
348906f25ae9SGregory Neil Shapiro	New mailer equate /= to specify a directory to chroot() into before
349006f25ae9SGregory Neil Shapiro		executing the mailer program.  Suggested by Igor Vinokurov.
349106f25ae9SGregory Neil Shapiro	New mailer equate W= to specify the maximum time to wait for the
349206f25ae9SGregory Neil Shapiro		mailer to return after sending all data to it.
349306f25ae9SGregory Neil Shapiro	Only free memory from the process list when adding a new process
349406f25ae9SGregory Neil Shapiro		into a previously filled slot.  Previously, the memory was
349506f25ae9SGregory Neil Shapiro		freed at removal time.  Since removal can happen in a
349606f25ae9SGregory Neil Shapiro		signal handler, this may leave the memory map in an
349706f25ae9SGregory Neil Shapiro		inconsistent state.  Problem noted by Jeff A. Earickson and
349806f25ae9SGregory Neil Shapiro		David Cooley of Colby College.
349906f25ae9SGregory Neil Shapiro	When using the UserDB @hostname catch-all, do not try to lookup
350006f25ae9SGregory Neil Shapiro		local users in the passwd file.  The UserDB code has
350106f25ae9SGregory Neil Shapiro		already decided the message will be passed to another host
350206f25ae9SGregory Neil Shapiro		for processing.  Fix from Tony Landells of Burdett
350306f25ae9SGregory Neil Shapiro		Buckeridge Young Limited.
350406f25ae9SGregory Neil Shapiro	Support LDAP authorization via either a file containing the
350506f25ae9SGregory Neil Shapiro		password or Kerberos V4 using the new map options
350606f25ae9SGregory Neil Shapiro		'-ddistinguished_name', '-Mmethod', and '-Pfilename'.  The
350706f25ae9SGregory Neil Shapiro		distinguished_name is who to login as.  The method can be
350806f25ae9SGregory Neil Shapiro		one of LDAP_AUTH_NONE, LDAP_AUTH_SIMPLE, or
350906f25ae9SGregory Neil Shapiro		LDAP_AUTH_KRBV4.  The filename is the file containing the
351006f25ae9SGregory Neil Shapiro		secret key for LDAP_AUTH_SIMPLE or the name of the Kerberos
351106f25ae9SGregory Neil Shapiro		ticket file for LDAP_AUTH_KRBV4.  Patch from Booker Bense
351206f25ae9SGregory Neil Shapiro		of Stanford University.
351306f25ae9SGregory Neil Shapiro	The ldapx map has been renamed to ldap.  The use of ldapx is
351406f25ae9SGregory Neil Shapiro		deprecated and will be removed in a future version.
351506f25ae9SGregory Neil Shapiro	If the result of an LDAP search returns a multi-valued attribute
351606f25ae9SGregory Neil Shapiro		and the map has the column delimiter set, it turns that
351706f25ae9SGregory Neil Shapiro		response into a delimiter separated string.  The LDAP map
351806f25ae9SGregory Neil Shapiro		will traverse multiple entries as well.  LDAP alias maps
351906f25ae9SGregory Neil Shapiro		automatically set the column delimiter to the comma.
352006f25ae9SGregory Neil Shapiro		Based on patch from Booker Bense of Stanford University and
352106f25ae9SGregory Neil Shapiro		idea from Philip A. Prindeville of Mirapoint, Inc.
352206f25ae9SGregory Neil Shapiro	Support return of multiple values for a single LDAP lookup.  The
352306f25ae9SGregory Neil Shapiro		values to be returned should be in a comma separated string.
352406f25ae9SGregory Neil Shapiro		For example, `-v "email,emailother"'.  Patch from
352506f25ae9SGregory Neil Shapiro		Curtis W. Hillegas of Princeton University.
352606f25ae9SGregory Neil Shapiro	Allow the use of LDAP for alias maps.
352706f25ae9SGregory Neil Shapiro	If no LDAP attributes are specified in an LDAP map declaration, all
352806f25ae9SGregory Neil Shapiro		attributes found in the match will be returned.
352906f25ae9SGregory Neil Shapiro	Prevent commas in quoted strings in the AliasFile value from
353006f25ae9SGregory Neil Shapiro		breaking up a single entry into multiple entries.  This is
353106f25ae9SGregory Neil Shapiro		needed for LDAP alias file specifications to allow for
353206f25ae9SGregory Neil Shapiro		comma separated key and value strings.
353306f25ae9SGregory Neil Shapiro	Keep connections to LDAP server open instead of opening and closing
353406f25ae9SGregory Neil Shapiro		for each lookup.  To reduce overhead, sendmail will cache
353506f25ae9SGregory Neil Shapiro		connections such that multiple maps which use the same
353606f25ae9SGregory Neil Shapiro		host, port, bind DN, and authentication will only result in
353706f25ae9SGregory Neil Shapiro		a single connection to that host.
353806f25ae9SGregory Neil Shapiro	Put timeout in the proper place for USE_LDAP_INIT.
353906f25ae9SGregory Neil Shapiro	Be more careful about checking for errors and freeing memory on
354006f25ae9SGregory Neil Shapiro		LDAP lookups.
354106f25ae9SGregory Neil Shapiro	Use asynchronous LDAP searches to save memory and network
354206f25ae9SGregory Neil Shapiro		resources.
354306f25ae9SGregory Neil Shapiro	Do not copy LDAP query results if the map's match only flag is set.
354406f25ae9SGregory Neil Shapiro	Increase portability to the Netscape LDAP libraries.
354506f25ae9SGregory Neil Shapiro	Change the parsing of the LDAP filter specification.  '%s' is still
354606f25ae9SGregory Neil Shapiro		replaced with the literal contents of the map lookup key --
354706f25ae9SGregory Neil Shapiro		note that this means a lookup can be done using the LDAP
354806f25ae9SGregory Neil Shapiro		special characters.  The new '%0' token can be used instead
354906f25ae9SGregory Neil Shapiro		of '%s' to encode the key buffer according to RFC 2254.
355006f25ae9SGregory Neil Shapiro		For example, if the LDAP map specification contains '-k
355106f25ae9SGregory Neil Shapiro		"(user=%s)"' and a lookup is done on "*", this would be
355206f25ae9SGregory Neil Shapiro		equivalent to '-k "(user=*)"' -- matching ANY record with a
355306f25ae9SGregory Neil Shapiro		user attribute.  Instead, if the LDAP map specification
355406f25ae9SGregory Neil Shapiro		contains '-k "(user=%0)"' and a lookup is done on "*", this
355506f25ae9SGregory Neil Shapiro		would be equivalent to '-k "(user=\2A)"' -- matching a user
355606f25ae9SGregory Neil Shapiro		with the name "*".
355706f25ae9SGregory Neil Shapiro	New LDAP map flags: "-1" requires a single match to be returned, if
355806f25ae9SGregory Neil Shapiro		more than one is returned, it is equivalent to no records
355906f25ae9SGregory Neil Shapiro		being found; "-r never|always|search|find" sets the LDAP
356006f25ae9SGregory Neil Shapiro		alias dereference option; "-Z size" limits the number of
356106f25ae9SGregory Neil Shapiro		matches to return.
356206f25ae9SGregory Neil Shapiro	New option LDAPDefaultSpec allows a default map specification for
356306f25ae9SGregory Neil Shapiro		LDAP maps.  The value should only contain LDAP specific
356406f25ae9SGregory Neil Shapiro		settings such as "-h host -p port -d bindDN", etc.  The
356506f25ae9SGregory Neil Shapiro		settings will be used for all LDAP maps unless they are
356606f25ae9SGregory Neil Shapiro		specified in the individual map specification ('K'
356706f25ae9SGregory Neil Shapiro		command).  This option should be set before any LDAP maps
356806f25ae9SGregory Neil Shapiro		are defined.
356906f25ae9SGregory Neil Shapiro	Prevent an NDBM alias file opening loop when the NDBM open
357006f25ae9SGregory Neil Shapiro		continually fails.  Fix from Roy J. Mongiovi of Georgia
357106f25ae9SGregory Neil Shapiro		Tech.
357206f25ae9SGregory Neil Shapiro	Reduce memory utilization for smaller symbol table entries.  In
357306f25ae9SGregory Neil Shapiro		particular, class entries get much smaller, which can be
357406f25ae9SGregory Neil Shapiro		important if you have large classes.
357506f25ae9SGregory Neil Shapiro	On network-related temporary failures, record the hostname which
357606f25ae9SGregory Neil Shapiro		gave error in the queued status message.  Requested by
357706f25ae9SGregory Neil Shapiro		Ulrich Windl of the Universitat Regensburg.
357806f25ae9SGregory Neil Shapiro	Add new F=% mailer flag to allow for a store and forward
357906f25ae9SGregory Neil Shapiro		configuration.  Mailers which have this flag will not attempt
3580193538b7SGregory Neil Shapiro		delivery on initial receipt of a message or on queue runs
358106f25ae9SGregory Neil Shapiro		unless the queued message is selected using one of the
358206f25ae9SGregory Neil Shapiro		-qI/-qR/-qS queue run modifiers or an ETRN request.  Code
358306f25ae9SGregory Neil Shapiro		provided by Philip Guenther of Gustavus Adolphus College.
358406f25ae9SGregory Neil Shapiro	New option ControlSocketName which, when set, creates a daemon
358506f25ae9SGregory Neil Shapiro		control socket.  This socket allows an external program to
358606f25ae9SGregory Neil Shapiro		control and query status from the running sendmail daemon
358706f25ae9SGregory Neil Shapiro		via a named socket, similar to the ctlinnd interface to the
358806f25ae9SGregory Neil Shapiro		INN news server.  Access to this interface is controlled by
358906f25ae9SGregory Neil Shapiro		the UNIX file permissions on the named socket on most UNIX
359006f25ae9SGregory Neil Shapiro		systems (see sendmail/README for more information).  An
359106f25ae9SGregory Neil Shapiro		example control program is provided as contrib/smcontrol.pl.
359206f25ae9SGregory Neil Shapiro	Change the default values of QueueLA from 8 to (8 * numproc) and
359306f25ae9SGregory Neil Shapiro		RefuseLA from 12 to (12 * numproc) where numproc is the
359406f25ae9SGregory Neil Shapiro		number of processors online on the system (if that can be
359506f25ae9SGregory Neil Shapiro		determined).  For single processor machines, this change
359606f25ae9SGregory Neil Shapiro		has no effect.
359706f25ae9SGregory Neil Shapiro	Don't return body of message to postmaster on "Too many hops" bounces.
359806f25ae9SGregory Neil Shapiro		Based on fix from Motonori Nakamura of Kyoto University.
359906f25ae9SGregory Neil Shapiro	Give more detailed DSN descriptions for some cases.  Patch from
360006f25ae9SGregory Neil Shapiro		Motonori Nakamura of Kyoto University.
360106f25ae9SGregory Neil Shapiro	Logging of alias, forward file, and UserDB expansion now happens
360206f25ae9SGregory Neil Shapiro		at LogLevel 11 or higher instead of 10 or higher.
360306f25ae9SGregory Neil Shapiro	Logging of an envelope's complete delivery (the "done" message) now
360406f25ae9SGregory Neil Shapiro		happens at LogLevel 10 or higher instead of 11 or higher.
360506f25ae9SGregory Neil Shapiro	Logging of TCP/IP or UNIX standard input connections now happens at
360606f25ae9SGregory Neil Shapiro		LogLevel 10 or higher.  Previously, only TCP/IP connections
360706f25ae9SGregory Neil Shapiro		were logged, and on at LogLevel 12 or higher.  Setting
360806f25ae9SGregory Neil Shapiro		LogLevel to 10 will now assist users in tracking frequent
360906f25ae9SGregory Neil Shapiro		connection-based denial of service attacks.
361006f25ae9SGregory Neil Shapiro	Log basic information about authenticated connections at LogLevel
361106f25ae9SGregory Neil Shapiro		10 or higher.
361206f25ae9SGregory Neil Shapiro	Log SMTP Authentication mechanism and author when logging the sender
361306f25ae9SGregory Neil Shapiro		information (from= syslog line).
361406f25ae9SGregory Neil Shapiro	Log the DSN code for each recipient if one is available as a new
361506f25ae9SGregory Neil Shapiro		equate (dsn=).
361606f25ae9SGregory Neil Shapiro	Macro expand PostmasterCopy and DoubleBounceAddress options.
3617a7ec597cSGregory Neil Shapiro	New "ph" map for performing ph queries in rulesets, see
3618a7ec597cSGregory Neil Shapiro		sendmail/README for details.  Contributed by Mark Roth
3619a7ec597cSGregory Neil Shapiro		of the University of Illinois at Urbana-Champaign.
362006f25ae9SGregory Neil Shapiro	Detect temporary lookup failures in the host map if looking up a
362106f25ae9SGregory Neil Shapiro		bracketed IP address.  Problem noted by Kari Hurtta of the
362206f25ae9SGregory Neil Shapiro		Finnish Meteorological Institute.
362306f25ae9SGregory Neil Shapiro	Do not report a Remote-MTA on local deliveries.  Problem noted by
362406f25ae9SGregory Neil Shapiro		Kari Hurtta of the Finnish Meteorological Institute.
362506f25ae9SGregory Neil Shapiro	When a forward file points to an alias which runs a program, run
362606f25ae9SGregory Neil Shapiro		the program as the default user and the default group, not
362706f25ae9SGregory Neil Shapiro		the forward file user.  This change also assures the
362806f25ae9SGregory Neil Shapiro		:include: directives in aliases are also processed using
362906f25ae9SGregory Neil Shapiro		the default user and group.  Problem noted by Sergiu
363006f25ae9SGregory Neil Shapiro		Popovici of DNT Romania.
363106f25ae9SGregory Neil Shapiro	Prevent attempts to save a dead.letter file for a user with
363206f25ae9SGregory Neil Shapiro		no home directory (/no/such/directory).  Problem noted by
363306f25ae9SGregory Neil Shapiro		Michael Brown of Finnigan FT/MS.
363406f25ae9SGregory Neil Shapiro	Include message delay and number of tries when logging that a
363506f25ae9SGregory Neil Shapiro		message has been completely delivered (LogLevel of 10 or
363606f25ae9SGregory Neil Shapiro		above).  Suggested by Nick Hilliard of Ireland Online.
363706f25ae9SGregory Neil Shapiro	Log the sender of a message even if none of the recipients were
363806f25ae9SGregory Neil Shapiro		accepted.  If some of the recipients were rejected, it is
363906f25ae9SGregory Neil Shapiro		helpful to know the sender of the message.
364006f25ae9SGregory Neil Shapiro	Check the root directory (/) when checking a path for safety.
364106f25ae9SGregory Neil Shapiro		Problem noted by John Beck of Sun Microsystems.
364206f25ae9SGregory Neil Shapiro	Prevent multiple responses to the DATA command if DeliveryMode is
364306f25ae9SGregory Neil Shapiro		interactive and delivering to an alias which resolves to
364406f25ae9SGregory Neil Shapiro		multiple files.
364506f25ae9SGregory Neil Shapiro	Macros in the helpfile are expanded if the helpfile version is 2 or
364606f25ae9SGregory Neil Shapiro		greater (see below); the help function doesn't print the
364706f25ae9SGregory Neil Shapiro		version of sendmail any longer, instead it is placed in
364806f25ae9SGregory Neil Shapiro		the helpfile ($v).  Suggested by Chuck Foster of UUNET
364906f25ae9SGregory Neil Shapiro		PIPEX.  Additionally, comment lines (starting with #) are
365006f25ae9SGregory Neil Shapiro		skipped and a version line (#vers) is introduced.  The
365106f25ae9SGregory Neil Shapiro		helpfile version for 8.10.0 is 2, if no version or an older
365206f25ae9SGregory Neil Shapiro		version is found, a warning is logged.  The '#vers'
365306f25ae9SGregory Neil Shapiro		directive should be placed at the top of the help file.
365406f25ae9SGregory Neil Shapiro	Use fsync() when delivering to a file to guarantee the delivery to
365506f25ae9SGregory Neil Shapiro		disk succeeded.  Suggested by Nick Christenson.
365606f25ae9SGregory Neil Shapiro	If delivery to a file is unsuccessful, truncate the file back to its
365706f25ae9SGregory Neil Shapiro		length before the attempt.
365806f25ae9SGregory Neil Shapiro	If a forward points to a filename for delivery, change to the
365906f25ae9SGregory Neil Shapiro		user's uid before checking permissions on the file.  This
366006f25ae9SGregory Neil Shapiro		allows delivery to files on NFS mounted directories where
366106f25ae9SGregory Neil Shapiro		root is remapped to nobody.  Problem noted by Harald
366206f25ae9SGregory Neil Shapiro		Daeubler of Universitaet Ulm.
366306f25ae9SGregory Neil Shapiro	purgestat and sendmail -bH purge only expired (Timeout.hoststatus)
366406f25ae9SGregory Neil Shapiro		host status files, not all files.
366506f25ae9SGregory Neil Shapiro	Any macros stored in the class $={persistentMacros} will be saved
366606f25ae9SGregory Neil Shapiro		in the queue file for the message and set when delivery
366706f25ae9SGregory Neil Shapiro		is attempted on the queued item.  Suggested by Kyle Jones of
366806f25ae9SGregory Neil Shapiro		Wonderworks Inc.
366906f25ae9SGregory Neil Shapiro	Add support for storing information between rulesets using the new
367006f25ae9SGregory Neil Shapiro		macro map class.  This can be used to store information
367106f25ae9SGregory Neil Shapiro		between queue runs as well using $={persistentMacros}.
367206f25ae9SGregory Neil Shapiro		Based on an idea from Jan Krueger of Unix-AG of University
367306f25ae9SGregory Neil Shapiro		of Hannover.
367406f25ae9SGregory Neil Shapiro	New map class arith to allow for computations in rules.  The
367506f25ae9SGregory Neil Shapiro		operation (+, -, *, /, l (for less than), and =) is given
367606f25ae9SGregory Neil Shapiro		as key.  The two operands are specified as arguments; the
367706f25ae9SGregory Neil Shapiro		lookup returns the result of the computation.  For example,
367806f25ae9SGregory Neil Shapiro		"$(arith l $@ 4 $@ 2 $)" will return "FALSE" and
367906f25ae9SGregory Neil Shapiro		"$(arith + $@ 4 $@ 2 $)" will return "6".
368006f25ae9SGregory Neil Shapiro	Add new syntax for header declarations which decide whether to
368106f25ae9SGregory Neil Shapiro		include the header based on a macro rather than a mailer
368206f25ae9SGregory Neil Shapiro		flag:
368306f25ae9SGregory Neil Shapiro			H?${MyMacro}?X-My-Header: ${MyMacro}
368406f25ae9SGregory Neil Shapiro		This should be used along with $={persistentMacros}.
368506f25ae9SGregory Neil Shapiro		It can be used for adding headers to a message based on
368606f25ae9SGregory Neil Shapiro		the results of check_* and header check rulesets.
368706f25ae9SGregory Neil Shapiro	Allow new named config file rule check_eoh which is called after
368806f25ae9SGregory Neil Shapiro		all of the headers have been collected.  The input to the
368906f25ae9SGregory Neil Shapiro		ruleset the number of headers and the size of all of the
369006f25ae9SGregory Neil Shapiro		headers in bytes separated by $|.  This ruleset along with
369106f25ae9SGregory Neil Shapiro		the macro storage map can be used to correlate information
369206f25ae9SGregory Neil Shapiro		gathered between headers and to check for missing headers.
369306f25ae9SGregory Neil Shapiro		See cf/README or doc/op/op.ps for an example.
369406f25ae9SGregory Neil Shapiro	Change the default for the MeToo option to True to correspond
369506f25ae9SGregory Neil Shapiro		to the clarification in the DRUMS SMTP Update spec.  This
369606f25ae9SGregory Neil Shapiro		option is deprecated and will be removed from a future
369706f25ae9SGregory Neil Shapiro		version.
369806f25ae9SGregory Neil Shapiro	Change the sendmail binary default for SendMimeErrors to True.
369906f25ae9SGregory Neil Shapiro	Change the sendmail binary default for SuperSafe to True.
370006f25ae9SGregory Neil Shapiro	Display ruleset names in debug and address test mode output
370106f25ae9SGregory Neil Shapiro		if referencing a named ruleset.
370206f25ae9SGregory Neil Shapiro	New mailer equate m= which will limit the number of messages
370306f25ae9SGregory Neil Shapiro		delivered per connection on an SMTP or LMTP mailer.
370406f25ae9SGregory Neil Shapiro	Improve QueueSortOrder=Host by reversing the hostname before
370506f25ae9SGregory Neil Shapiro		using it to sort.  Now all the same domains are really run
370606f25ae9SGregory Neil Shapiro		through the queue together.  If they have the same MX host,
370706f25ae9SGregory Neil Shapiro		then they will have a much better opportunity to use the
370806f25ae9SGregory Neil Shapiro		connection cache if available.  This should be a reasonable
370906f25ae9SGregory Neil Shapiro		performance improvement.  Patch from Randall Winchester of
371006f25ae9SGregory Neil Shapiro		the University of Maryland.
371106f25ae9SGregory Neil Shapiro	If a message is rejected by a header check ruleset, log who would
371206f25ae9SGregory Neil Shapiro		have received the message if it had not been rejected.
371306f25ae9SGregory Neil Shapiro	New "now" value for Timeout.queuereturn to bounce entries from the
371406f25ae9SGregory Neil Shapiro		queue immediately.  No delivery attempt is made.
371506f25ae9SGregory Neil Shapiro	Increase sleeping time exponentially after too many "bad" commands
371606f25ae9SGregory Neil Shapiro		up to 4 minutes delay (compare MAX{BAD,NOOP,HELO,VRFY,ETRN}-
371706f25ae9SGregory Neil Shapiro		COMMANDS).
371806f25ae9SGregory Neil Shapiro	New option ClientPortOptions similar to DaemonPortOptions
371906f25ae9SGregory Neil Shapiro		but for outgoing connections.
372006f25ae9SGregory Neil Shapiro	New suboptions for DaemonPortOptions: Name (a name used for
372106f25ae9SGregory Neil Shapiro		error messages and logging) and Modifiers, i.e.
372206f25ae9SGregory Neil Shapiro			a	require authentication
372306f25ae9SGregory Neil Shapiro			b	bind to interface through which mail has
372406f25ae9SGregory Neil Shapiro				been received
372506f25ae9SGregory Neil Shapiro			c	perform hostname canonification
372606f25ae9SGregory Neil Shapiro			f	require fully qualified hostname
372706f25ae9SGregory Neil Shapiro			h	use name of interface for outgoing HELO
372806f25ae9SGregory Neil Shapiro				command
372906f25ae9SGregory Neil Shapiro			C	don't perform hostname canonification
373006f25ae9SGregory Neil Shapiro			E	disallow ETRN (see RFC 2476)
373106f25ae9SGregory Neil Shapiro	New suboption for ClientPortOptions: Modifiers, i.e.
373206f25ae9SGregory Neil Shapiro			h	use name of interface for HELO command
373306f25ae9SGregory Neil Shapiro	The version number for queue files (qf) has been incremented to 4.
373406f25ae9SGregory Neil Shapiro	Log unacceptable HELO/EHLO domain name attempts if LogLevel is set
373506f25ae9SGregory Neil Shapiro		to 10 or higher.  Suggested by Rick Troxel of the National
373606f25ae9SGregory Neil Shapiro		Institutes of Health.
373706f25ae9SGregory Neil Shapiro	If a mailer dies, print the status in decimal instead of octal
373806f25ae9SGregory Neil Shapiro		format.  Suggested by Michael Shapiro of Sun Microsystems.
373906f25ae9SGregory Neil Shapiro	Limit the length of all MX records considered for delivery to 8k.
374006f25ae9SGregory Neil Shapiro	Move message priority from sender to recipient logging.  Suggested by
374106f25ae9SGregory Neil Shapiro		Ulrich Windl of the Universitat Regensburg.
374206f25ae9SGregory Neil Shapiro	Add support for Berkeley DB 3.X.
374306f25ae9SGregory Neil Shapiro	Add fix for Berkeley DB 2.X fcntl() locking race condition.
374406f25ae9SGregory Neil Shapiro		Requires a post-2.7.5 version of Berkeley DB.
374506f25ae9SGregory Neil Shapiro	Support writing traffic log (sendmail -X option) to a FIFO.
374606f25ae9SGregory Neil Shapiro		Patch submitted by Rick Heaton of Network Associates, Inc.
374706f25ae9SGregory Neil Shapiro	Do not ignore Timeout settings in the .cf file when a Timeout
374806f25ae9SGregory Neil Shapiro		sub-options is set on the command line.  Problem noted by
374906f25ae9SGregory Neil Shapiro		Graeme Hewson of Oracle.
375006f25ae9SGregory Neil Shapiro	Randomize equal preference MX records each time delivery is
375106f25ae9SGregory Neil Shapiro		attempted via a new connection to a host instead of once per
375206f25ae9SGregory Neil Shapiro		session.  Suggested by Scott Salvidio of Compaq.
375306f25ae9SGregory Neil Shapiro	Implement enhanced status codes as defined by RFC 2034.
375406f25ae9SGregory Neil Shapiro	Add [hostname] to class w for the names of all interfaces unless
375506f25ae9SGregory Neil Shapiro		DontProbeInterfaces is set. This is useful for sending mails
375606f25ae9SGregory Neil Shapiro		to hosts which have dynamically assigned names.
375706f25ae9SGregory Neil Shapiro	If a message is bounced due to bad MIME conformance, avoid bouncing
375806f25ae9SGregory Neil Shapiro		the bounce for the same reason.  If the body is not 8-bit
375906f25ae9SGregory Neil Shapiro		clean, and EightBitMode isn't set to pass8, the body will
376006f25ae9SGregory Neil Shapiro		not be included in the bounce.  Problem noted by Valdis
376106f25ae9SGregory Neil Shapiro		Kletnieks of Virginia Tech.
376206f25ae9SGregory Neil Shapiro	The timeout for sending a message via SMTP has been changed from
376306f25ae9SGregory Neil Shapiro		'${msgsize} / 16 + (${nrcpts} * 300)' to a timeout which
376406f25ae9SGregory Neil Shapiro		simply checks for progress on sending data every 5 minutes.
376506f25ae9SGregory Neil Shapiro		This will detect the inability to send information quicker
376606f25ae9SGregory Neil Shapiro		and reduce the number of processes simply waiting to
376706f25ae9SGregory Neil Shapiro		timeout.
376806f25ae9SGregory Neil Shapiro	Prevent a segmentation fault on systems which give a partial filled
376906f25ae9SGregory Neil Shapiro		interface address structure when loading the system network
377006f25ae9SGregory Neil Shapiro		interface addresses.  Fix from Reinier Bezuidenhout of
377106f25ae9SGregory Neil Shapiro		Nanoteq.
377206f25ae9SGregory Neil Shapiro	Add a compile-time configuration macro, MAXINTERFACES, which
377306f25ae9SGregory Neil Shapiro		indicates the number of interfaces to read when probing
377406f25ae9SGregory Neil Shapiro		for hostnames and IP addresses for class w ($=w).  The
377506f25ae9SGregory Neil Shapiro		default value is 512.  Based on idea from Reinier
377606f25ae9SGregory Neil Shapiro		Bezuidenhout of Nanoteq.
377706f25ae9SGregory Neil Shapiro	If the RefuseLA option is set to 0, do not reject connections based
377806f25ae9SGregory Neil Shapiro		on load average.
377906f25ae9SGregory Neil Shapiro	Allow ruleset 0 to have a name.  Problem noted by Neil Rickert of
378006f25ae9SGregory Neil Shapiro		Northern Illinois University.
378106f25ae9SGregory Neil Shapiro	Expand the Return-Path: header at delivery time, after "owner-"
378206f25ae9SGregory Neil Shapiro		envelope splitting has occurred.
378306f25ae9SGregory Neil Shapiro	Don't try to sort the queue if there are no entries. Patch from
378406f25ae9SGregory Neil Shapiro		Luke Mewburn from RMIT University.
378506f25ae9SGregory Neil Shapiro	Add a "/quit" command to address test mode.
378606f25ae9SGregory Neil Shapiro	Include the proper sender in the UNIX "From " line and Return-Path:
378706f25ae9SGregory Neil Shapiro		header when undeliverable mail is saved to ~/dead.letter.
378806f25ae9SGregory Neil Shapiro		Problem noted by Kari Hurtta of the Finnish Meteorological
378906f25ae9SGregory Neil Shapiro		Institute.
379006f25ae9SGregory Neil Shapiro	The contents of a class can now be copied to another class using
379106f25ae9SGregory Neil Shapiro		the syntax: "C{Dest} $={Source}".  This would copy all of
379206f25ae9SGregory Neil Shapiro		the items in class $={Source} into the class $={Dest}.
379306f25ae9SGregory Neil Shapiro	Include original envelope's error transcript in bounces created for
379406f25ae9SGregory Neil Shapiro		split (owner-) envelopes to see the original errors when
379506f25ae9SGregory Neil Shapiro		the recipients were added.  Based on fix from Motonori
379606f25ae9SGregory Neil Shapiro		Nakamura of Kyoto University.
379706f25ae9SGregory Neil Shapiro	Show reason for permanent delivery errors directly after the
379806f25ae9SGregory Neil Shapiro		addresses.  From Motonori Nakamura of Kyoto University.
379906f25ae9SGregory Neil Shapiro	Prevent a segmentation fault when bouncing a split-envelope
380006f25ae9SGregory Neil Shapiro		message.  Patch from Motonori Nakamura of Kyoto University.
380106f25ae9SGregory Neil Shapiro	If the specification for the queue run interval (-q###) has a
380206f25ae9SGregory Neil Shapiro		syntax error, consider the error fatal and exit.
380306f25ae9SGregory Neil Shapiro	Pay attention to CheckpointInterval during LMTP delivery.  Problem
380406f25ae9SGregory Neil Shapiro		noted by Motonori Nakamura of Kyoto University.
380506f25ae9SGregory Neil Shapiro	On operating systems which have setlogin(2), use it to set the
380606f25ae9SGregory Neil Shapiro		login name to the RunAsUserName when starting as a daemon.
380706f25ae9SGregory Neil Shapiro		This is for delivery to programs which use getlogin().
380806f25ae9SGregory Neil Shapiro		Based on fix from Motonori Nakamura of Kyoto University.
380906f25ae9SGregory Neil Shapiro	Differentiate between "command not implemented" and "command
381006f25ae9SGregory Neil Shapiro		unrecognized" in the SMTP dialogue.
381106f25ae9SGregory Neil Shapiro	Strip returns from forward and include files.  Problem noted by
381206f25ae9SGregory Neil Shapiro		Allan E Johannesen of Worcester Polytechnic Institute.
381306f25ae9SGregory Neil Shapiro	Prevent a core dump when using 'sendmail -bv' on an address which
381406f25ae9SGregory Neil Shapiro		resolves to the $#error mailer with a temporary failure.
381506f25ae9SGregory Neil Shapiro		Based on fix from Neil Rickert of Northern Illinois
381606f25ae9SGregory Neil Shapiro		University.
381706f25ae9SGregory Neil Shapiro	Prevent multiple deliveries of a message with a "non-local alias"
381806f25ae9SGregory Neil Shapiro		pointing to a local user, if canonicalization fails
381906f25ae9SGregory Neil Shapiro		the message was requeued *and* delivered to the alias.
382006f25ae9SGregory Neil Shapiro	If an invalid ruleset is declared, the ruleset name could be
382106f25ae9SGregory Neil Shapiro		ignored and its rules added to S0.  Instead, ignore the
382206f25ae9SGregory Neil Shapiro		ruleset lines as well.
382306f25ae9SGregory Neil Shapiro	Avoid incorrect Final-Recipient, Action, and X-Actual-Recipient
382406f25ae9SGregory Neil Shapiro		success DSN fields as well as duplicate entries for a
382506f25ae9SGregory Neil Shapiro		single address due to S5 and UserDB processing.  Problems
382606f25ae9SGregory Neil Shapiro		noted by Kari Hurtta of the Finnish Meteorological
382706f25ae9SGregory Neil Shapiro		Institute.
382806f25ae9SGregory Neil Shapiro	Turn off timeouts when exiting sendmail due to an interrupt signal
382906f25ae9SGregory Neil Shapiro		to prevent the timeout from firing during the exit process.
383006f25ae9SGregory Neil Shapiro		Problem noted by Michael Shapiro of Sun Microsystems.
383106f25ae9SGregory Neil Shapiro	Do not append @MyHostName to non-RFC822 addresses output by the EXPN
383206f25ae9SGregory Neil Shapiro		command or on Final-Recipient: and X-Actual-Recipient: DSN
383306f25ae9SGregory Neil Shapiro		headers.  Non-RFC822 addresses include deliveries to
383406f25ae9SGregory Neil Shapiro		programs, file, DECnet, etc.
383506f25ae9SGregory Neil Shapiro	Fix logic for determining if a local user is using -f or -bs to
383606f25ae9SGregory Neil Shapiro		spoof their return address.  Based on idea from Neil Rickert
383706f25ae9SGregory Neil Shapiro		of Northern Illinois University and patch from Per Hedeland
383806f25ae9SGregory Neil Shapiro		of Ericsson.
383906f25ae9SGregory Neil Shapiro	Report the proper UID in the bounce message if an :include: file is
384006f25ae9SGregory Neil Shapiro		owned by a uid that doesn't map to a username and the
384106f25ae9SGregory Neil Shapiro		:include: file contains delivery to a file or program.
384206f25ae9SGregory Neil Shapiro		Problem noted by John Beck of Sun Microsystems.
384306f25ae9SGregory Neil Shapiro	Avoid the attempt of trying to send a second SMTP QUIT command if
384406f25ae9SGregory Neil Shapiro		the remote server responds to the first QUIT with a 4xx
384506f25ae9SGregory Neil Shapiro		response code and drops the connection.  This behavior was
384606f25ae9SGregory Neil Shapiro		noted by Ulrich Windl of the Universitat Regensburg when
384706f25ae9SGregory Neil Shapiro		sendmail was talking to the Mercury 1.43 MTA.
384806f25ae9SGregory Neil Shapiro	If a hostname lookup times out and ServiceSwitchFile is set but the
384906f25ae9SGregory Neil Shapiro		file is not present, the lookup failure would be marked as
385006f25ae9SGregory Neil Shapiro		a permanent failure instead of a temporary failure.  Fix
385106f25ae9SGregory Neil Shapiro		from Russell King of the ARM Linux Project.
385206f25ae9SGregory Neil Shapiro	Handle aliases or forwards which deliver to programs using tabs
385306f25ae9SGregory Neil Shapiro		instead of spaces between arguments.  Problem noted by Randy
385406f25ae9SGregory Neil Shapiro		Wormser.  Fix from Neil Rickert of Northern Illinois
385506f25ae9SGregory Neil Shapiro		University.
385606f25ae9SGregory Neil Shapiro	Allow MaxRecipientsPerMessage option to be set on the command line
385706f25ae9SGregory Neil Shapiro		by normal users (e.g., sendmail won't drop its root
385806f25ae9SGregory Neil Shapiro		privileges) to allow overrides for message submission via
385906f25ae9SGregory Neil Shapiro		'sendmail -bs'.
386006f25ae9SGregory Neil Shapiro	Set the names for help file and statistics file to "helpfile" and
386106f25ae9SGregory Neil Shapiro		"statistics", respectively, if no parameters are given for
386206f25ae9SGregory Neil Shapiro		them in the .cf file.
386306f25ae9SGregory Neil Shapiro	Avoid bogus 'errbody: I/O Error -7' log messages when sending
386406f25ae9SGregory Neil Shapiro		success DSN messages for messages relayed to non-DSN aware
386506f25ae9SGregory Neil Shapiro		systems.  Problem noted by Juergen Georgi of RUS University
386606f25ae9SGregory Neil Shapiro		of Stuttgart and Kyle Tucker of Parexel International.
386706f25ae9SGregory Neil Shapiro	Prevent +detail information from interfering with local delivery to
386806f25ae9SGregory Neil Shapiro		multiple users in the same transaction (F=m).
386906f25ae9SGregory Neil Shapiro	Add H_FORCE flag for the X-Authentication-Warning: header, so it
387006f25ae9SGregory Neil Shapiro		will be added even if one already exists.  Problem noted
387106f25ae9SGregory Neil Shapiro		by Michal Zalewski of Marchew Industries.
387206f25ae9SGregory Neil Shapiro	Stop processing SMTP commands if the SMTP connection is dropped.
387306f25ae9SGregory Neil Shapiro		This prevents a remote system from flooding the connection
387406f25ae9SGregory Neil Shapiro		with commands and then disconnecting.  Previously, the
387506f25ae9SGregory Neil Shapiro		server would process all of the buffered commands.  Problem
387606f25ae9SGregory Neil Shapiro		noted by Michal Zalewski of Marchew Industries.
387706f25ae9SGregory Neil Shapiro	Properly process user-supplied headers beginning with '?'.  Problem
387806f25ae9SGregory Neil Shapiro		noted by Michal Zalewski of Marchew Industries.
387906f25ae9SGregory Neil Shapiro	If multiple header checks resolve to the $#error mailer, use the
388006f25ae9SGregory Neil Shapiro		last permanent (5XX) failure if any exist.  Otherwise, use
388106f25ae9SGregory Neil Shapiro		the last temporary (4XX) failure.
388206f25ae9SGregory Neil Shapiro	RFC 1891 requires "hexchar" in a "xtext" to be upper case.  Patch
388306f25ae9SGregory Neil Shapiro		from Ronald F. Guilmette of Infinite Monkeys & Co.
388406f25ae9SGregory Neil Shapiro	Timeout.ident now defaults to 5 seconds instead of 30 seconds to
388506f25ae9SGregory Neil Shapiro		prevent the now common delays associated with mailing to a
388606f25ae9SGregory Neil Shapiro		site which drops IDENT packets.  Suggested by many.
388706f25ae9SGregory Neil Shapiro	Persistent host status data is not reloaded disk when current data
388806f25ae9SGregory Neil Shapiro		is available in the in-memory cache.  Problem noted by Per
388906f25ae9SGregory Neil Shapiro		Hedeland of Ericsson.
389006f25ae9SGregory Neil Shapiro	mailq displays unprintable characters in addresses as their octal
389106f25ae9SGregory Neil Shapiro		representation and a leading backslash.  This avoids problems
389206f25ae9SGregory Neil Shapiro		with "unprintable" characters.  Problem noted by Michal
389306f25ae9SGregory Neil Shapiro		Zalewski of the "Internet for Schools" project (IdS).
389406f25ae9SGregory Neil Shapiro	The mail line length limit (L= equate) was adding the '!' indicator
389506f25ae9SGregory Neil Shapiro		one character past the limit.  This would cause subsequent
389606f25ae9SGregory Neil Shapiro		hops to break the line again.  The '!' is now placed in
389706f25ae9SGregory Neil Shapiro		the last column of the limit if the line needs to be broken.
389806f25ae9SGregory Neil Shapiro		Problem noted by Joe Pruett of Q7 Enterprises.  Based on fix
389906f25ae9SGregory Neil Shapiro		from Per Hedeland of Ericsson.
390006f25ae9SGregory Neil Shapiro	If a resolver ANY query is larger than the UDP packet size, the
390106f25ae9SGregory Neil Shapiro		resolver will fall back to TCP.  However, some
390206f25ae9SGregory Neil Shapiro		misconfigured firewalls black 53/TCP so the ANY lookup
390306f25ae9SGregory Neil Shapiro		fails whereas an MX or A record might succeed.  Therefore,
390406f25ae9SGregory Neil Shapiro		don't fail on ANY queries.
390506f25ae9SGregory Neil Shapiro	If an SMTP recipient is rejected due to syntax errors in the
390606f25ae9SGregory Neil Shapiro		address, do not send an empty postmaster notification DSN
390706f25ae9SGregory Neil Shapiro		to the postmaster.  Problem noted by Neil Rickert of
390806f25ae9SGregory Neil Shapiro		Northern Illinois University.
390906f25ae9SGregory Neil Shapiro	Allow '_' and '.' in map names when parsing a sequence map
391006f25ae9SGregory Neil Shapiro		specification.  Patch from William Setzer of North Carolina
391106f25ae9SGregory Neil Shapiro		State University.
391206f25ae9SGregory Neil Shapiro	Fix hostname in logging of read timeouts for the QUIT command on
391306f25ae9SGregory Neil Shapiro		cached connections.  Problem noted by Neil Rickert of
391406f25ae9SGregory Neil Shapiro		Northern Illinois University.
391506f25ae9SGregory Neil Shapiro	Use a more descriptive entry to log "null" connections, i.e.,
391606f25ae9SGregory Neil Shapiro		"host did not issue MAIL/EXPN/VRFY/ETRN during connection".
391706f25ae9SGregory Neil Shapiro	Fix a file descriptor leak in ONEX mode.
391806f25ae9SGregory Neil Shapiro	Portability:
391906f25ae9SGregory Neil Shapiro		Reverse signal handling logic such that sigaction(2) with
392006f25ae9SGregory Neil Shapiro			the SA_RESTART flag is the preferred method and the
392106f25ae9SGregory Neil Shapiro			other signal methods are only tried if SA_RESTART
392206f25ae9SGregory Neil Shapiro			is not available.  Problem noted by Allan E
392306f25ae9SGregory Neil Shapiro			Johannesen of Worcester Polytechnic Institute.
392406f25ae9SGregory Neil Shapiro		AIX 4.x supports the sa_len member of struct sockaddr.
392506f25ae9SGregory Neil Shapiro			This allows network interface probing to work
392606f25ae9SGregory Neil Shapiro			properly.  Fix from David Bronder of the
392706f25ae9SGregory Neil Shapiro			University of Iowa.
392806f25ae9SGregory Neil Shapiro		AIX 4.3 has snprintf() support.
392906f25ae9SGregory Neil Shapiro		Use "PPC" as the architecture name when building under
393006f25ae9SGregory Neil Shapiro			AIX.  This will be reflected in the obj.* directory
393106f25ae9SGregory Neil Shapiro			name.
393206f25ae9SGregory Neil Shapiro		Apple Darwin support based on Apple Rhapsody port.
393306f25ae9SGregory Neil Shapiro		Fixed AIX 'make depend' method from Valdis Kletnieks of
393406f25ae9SGregory Neil Shapiro			Virginia Tech.
393506f25ae9SGregory Neil Shapiro		Digital UNIX has uname(2).
393606f25ae9SGregory Neil Shapiro		GNU Hurd updates from Mark Kettenis of the University of
393706f25ae9SGregory Neil Shapiro			Amsterdam.
393806f25ae9SGregory Neil Shapiro		Improved HPUX 11.0 portability.
393906f25ae9SGregory Neil Shapiro		Properly determine the number of CPUs on FreeBSD 2.X,
394006f25ae9SGregory Neil Shapiro			FreeBSD 3.X, HP/UX 10.X and HP/UX 11.X.
394106f25ae9SGregory Neil Shapiro		Remove special IRIX ABI cases from Build script and the OS
394206f25ae9SGregory Neil Shapiro			files.  Use the standard 'cc' options used by SGI
394306f25ae9SGregory Neil Shapiro			in building the operating system.  Users can
394406f25ae9SGregory Neil Shapiro			override the defaults by setting confCC and
394506f25ae9SGregory Neil Shapiro			confLIBSEARCHPATH appropriately.
394606f25ae9SGregory Neil Shapiro		IRIX nsd map support from Bob Mende of SGI.
394706f25ae9SGregory Neil Shapiro		Minor devtools fixes for IRIX from Bob Mende of SGI.
394806f25ae9SGregory Neil Shapiro		Linux patch for IP_SRCROUTE support from Joerg Dorchain
394906f25ae9SGregory Neil Shapiro			of MW EDV & ELECTRONIC.
395006f25ae9SGregory Neil Shapiro		Linux now uses /usr/sbin for confEBINDIR in the build
395106f25ae9SGregory Neil Shapiro			system.  From MATSUURA Takanori of Osaka University.
395206f25ae9SGregory Neil Shapiro		Remove special treatment for Linux PPC in the build
395306f25ae9SGregory Neil Shapiro			system.  From MATSUURA Takanori of Osaka University.
395406f25ae9SGregory Neil Shapiro		Motorolla UNIX SYSTEM V/88 Release 4.0 support from
395506f25ae9SGregory Neil Shapiro			Sergey Rusanov of the Republic of Udmurtia.
395606f25ae9SGregory Neil Shapiro		NCR MP-RAS 3.x includes regular expression support.  From
395706f25ae9SGregory Neil Shapiro			Tom J. Moore of NCR.
395806f25ae9SGregory Neil Shapiro		NEC EWS-UX/V series settings for _PATH_VENDOR_CF and
395906f25ae9SGregory Neil Shapiro			_PATH_SENDMAILPID from Oota Toshiya of
396006f25ae9SGregory Neil Shapiro			NEC Computers Group Planning Division.
396106f25ae9SGregory Neil Shapiro		Minor NetBSD owner/group tweaks from Ayamura Kikuchi, M.D.
396206f25ae9SGregory Neil Shapiro		NEWS-OS 6.X listed SYSLOG_BUFSIZE as 256 in confENVDEF and
396306f25ae9SGregory Neil Shapiro			1024 in conf.h.  Since confENVDEF would be used,
396406f25ae9SGregory Neil Shapiro			use that value in conf.h.
396506f25ae9SGregory Neil Shapiro		Use NeXT's NETINFO to get domain name.  From Gerd Knops of
396606f25ae9SGregory Neil Shapiro			BITart Consulting.
396706f25ae9SGregory Neil Shapiro		Use NeXT's NETINFO for alias and hostname resolution if
396806f25ae9SGregory Neil Shapiro			AUTO_NETINFO_ALIASES and AUTO_NETINFO_HOSTS are
396906f25ae9SGregory Neil Shapiro			defined.  Patch from Wilfredo Sanchez of Apple
397006f25ae9SGregory Neil Shapiro			Computer, Inc.
397106f25ae9SGregory Neil Shapiro		NeXT portability tweaks.  Problems reported by Dragan
397206f25ae9SGregory Neil Shapiro			Milicic of the University of Utah and J. P. McCann
397306f25ae9SGregory Neil Shapiro			of E I A.
397406f25ae9SGregory Neil Shapiro		New compile flag FAST_PID_RECYCLE: set this if your system
397506f25ae9SGregory Neil Shapiro			can reuse the same PID in the same second.
397606f25ae9SGregory Neil Shapiro		New compile flag HASFCHOWN: set this if your OS has
397706f25ae9SGregory Neil Shapiro			fchown(2).
397806f25ae9SGregory Neil Shapiro		New compile flag HASRANDOM: set this to 0 if your OS does
397906f25ae9SGregory Neil Shapiro			not have random(3).  rand() will be used instead.
398006f25ae9SGregory Neil Shapiro		New compile flag HASSRANDOMDEV: set this if your OS has
398106f25ae9SGregory Neil Shapiro			srandomdev(3).
398206f25ae9SGregory Neil Shapiro		New compile flag HASSETLOGIN: set this if your OS has
398306f25ae9SGregory Neil Shapiro			setlogin(2).
398406f25ae9SGregory Neil Shapiro		Replace SINIX and ReliantUNIX support with version
398506f25ae9SGregory Neil Shapiro			specific SINIX files.  From Gerald Rinske of
398606f25ae9SGregory Neil Shapiro			Siemens Business Services.
398706f25ae9SGregory Neil Shapiro		Use the 60-second load average instead of the 5 second load
398806f25ae9SGregory Neil Shapiro			average on Compaq Tru64 UNIX (formerly Digital
398906f25ae9SGregory Neil Shapiro			UNIX).  From Chris Teakle of the University of Qld.
399006f25ae9SGregory Neil Shapiro		Use ANSI C by default for Compaq Tru64 UNIX.  Suggested by
399106f25ae9SGregory Neil Shapiro			Randall Winchester of Swales Aerospace.
399206f25ae9SGregory Neil Shapiro		Correct setgroups() prototype for Compaq Tru64 UNIX.
399306f25ae9SGregory Neil Shapiro			Problem noted by Randall Winchester of Swales
399406f25ae9SGregory Neil Shapiro			Aerospace.
399506f25ae9SGregory Neil Shapiro		Hitachi 3050R/3050RX and 3500 Workstations running
399606f25ae9SGregory Neil Shapiro			HI-UX/WE2 4.02, 6.10 and 7.10 from Motonori
399706f25ae9SGregory Neil Shapiro			NAKAMURA of Kyoto University.
399806f25ae9SGregory Neil Shapiro		New compile flag NO_GETSERVBYNAME: set this to disable
399906f25ae9SGregory Neil Shapiro			use of getservbyname() on systems which can
400006f25ae9SGregory Neil Shapiro			not lookup a service by name over NIS, such as
400106f25ae9SGregory Neil Shapiro			HI-UX.  Patch from Motonori NAKAMURA of Kyoto
400206f25ae9SGregory Neil Shapiro			University.
400306f25ae9SGregory Neil Shapiro		Use devtools/bin/install.sh on SCO 5.x.  Problem noted
400406f25ae9SGregory Neil Shapiro			by Sun Wenbing of the China Engineering and
400506f25ae9SGregory Neil Shapiro			Technology Information Network.
400606f25ae9SGregory Neil Shapiro		make depend didn't work properly on UNIXWARE 4.2.  Problem
400706f25ae9SGregory Neil Shapiro			noted by Ariel Malik of Netology, Ltd.
400806f25ae9SGregory Neil Shapiro		Use /usr/lbin as confEBINDIR for Compaq Tru64 (Digital UNIX).
400906f25ae9SGregory Neil Shapiro		Set confSTDIO_TYPE to torek for BSD-OS, FreeBSD, NetBSD,
401006f25ae9SGregory Neil Shapiro			and OpenBSD.
401106f25ae9SGregory Neil Shapiro		A recent Compaq Ultrix 4.5 Y2K patch has broken detection
401206f25ae9SGregory Neil Shapiro			of local_hostname_length().  See sendmail/README
401306f25ae9SGregory Neil Shapiro			for more details.  Problem noted by Allan E
401406f25ae9SGregory Neil Shapiro			Johannesen of Worcester Polytechnic Institute.
401506f25ae9SGregory Neil Shapiro	CONFIG: Begin using /etc/mail/ for sendmail related files.  This
401606f25ae9SGregory Neil Shapiro		affects a large number of files.  See cf/README for more
401706f25ae9SGregory Neil Shapiro		details.
401806f25ae9SGregory Neil Shapiro	CONFIG: New macro MAIL_SETTINGS_DIR contains the path (including
401906f25ae9SGregory Neil Shapiro		trailing slash) for the mail settings directory.
402006f25ae9SGregory Neil Shapiro	CONFIG: Increment version number of config file to 9.
402106f25ae9SGregory Neil Shapiro	CONFIG: OSTYPE(`bsdi1.0') and OSTYPE(`bsdi2.0') have been
402206f25ae9SGregory Neil Shapiro		deprecated and may be removed from a future release.
402306f25ae9SGregory Neil Shapiro		BSD/OS users should begin using OSTYPE(`bsdi').
402440266059SGregory Neil Shapiro	CONFIG: OpenBSD 2.4 installs mail.local non-set-user-ID root.  This
402506f25ae9SGregory Neil Shapiro		requires a new OSTYPE(`openbsd').  From Todd C. Miller of
402606f25ae9SGregory Neil Shapiro		Courtesan Consulting.
402706f25ae9SGregory Neil Shapiro	CONFIG: New OSTYPE(`hpux11') for HP/UX 11.X.
402806f25ae9SGregory Neil Shapiro	CONFIG: A syntax error in check_mail would cause fake top-level
402906f25ae9SGregory Neil Shapiro		domains (.BITNET, .DECNET, .FAX, .USENET, and .UUCP) to
403006f25ae9SGregory Neil Shapiro		be improperly rejected as unresolvable.
403106f25ae9SGregory Neil Shapiro	CONFIG: New FEATURE(`dnsbl') takes up to two arguments (name of
403206f25ae9SGregory Neil Shapiro		DNS server, rejection message) and can be included
403306f25ae9SGregory Neil Shapiro		multiple times.
403406f25ae9SGregory Neil Shapiro	CONFIG: New FEATURE(`relay_mail_from') allows relaying if the
403506f25ae9SGregory Neil Shapiro		mail sender is listed as RELAY in the access map (and tagged
403606f25ae9SGregory Neil Shapiro		with From:).
403706f25ae9SGregory Neil Shapiro	CONFIG: Optional tagging of LHS in the access map (Connect:,
403806f25ae9SGregory Neil Shapiro		From:, To:) to enable finer control.
403906f25ae9SGregory Neil Shapiro	CONFIG: New FEATURE(`ldap_routing') implements LDAP address
404006f25ae9SGregory Neil Shapiro		routing.  See cf/README for a complete description of the
404106f25ae9SGregory Neil Shapiro		new functionality.
404206f25ae9SGregory Neil Shapiro	CONFIG: New variables for the new sendmail options:
404306f25ae9SGregory Neil Shapiro		confAUTH_MECHANISMS		AuthMechanisms
404406f25ae9SGregory Neil Shapiro		confAUTH_OPTIONS		AuthOptions
404506f25ae9SGregory Neil Shapiro		confCLIENT_OPTIONS		ClientPortOptions
404606f25ae9SGregory Neil Shapiro		confCONTROL_SOCKET_NAME		ControlSocketName
404706f25ae9SGregory Neil Shapiro		confDEAD_LETTER_DROP		DeadLetterDrop
404806f25ae9SGregory Neil Shapiro		confDEF_AUTH_INFO		DefaultAuthInfo
404906f25ae9SGregory Neil Shapiro		confDF_BUFFER_SIZE		DataFileBufferSize
405006f25ae9SGregory Neil Shapiro		confLDAP_DEFAULT_SPEC		LDAPDefaultSpec
405106f25ae9SGregory Neil Shapiro		confMAX_ALIAS_RECURSION		MaxAliasRecursion
405206f25ae9SGregory Neil Shapiro		confMAX_HEADERS_LENGTH		MaxHeadersLength
405306f25ae9SGregory Neil Shapiro		confMAX_MIME_HEADER_LENGTH	MaxMimeHeaderLength
405406f25ae9SGregory Neil Shapiro		confPID_FILE			PidFile
405506f25ae9SGregory Neil Shapiro		confPROCESS_TITLE_PREFIX	ProcessTitlePrefix
405606f25ae9SGregory Neil Shapiro		confRRT_IMPLIES_DSN		RrtImpliesDsn
405706f25ae9SGregory Neil Shapiro		confTO_CONTROL			Timeout.control
405806f25ae9SGregory Neil Shapiro		confTO_RESOLVER_RETRANS		Timeout.resolver.retrans
405906f25ae9SGregory Neil Shapiro		confTO_RESOLVER_RETRANS_FIRST	Timeout.resolver.retrans.first
406006f25ae9SGregory Neil Shapiro		confTO_RESOLVER_RETRANS_NORMAL	Timeout.resolver.retrans.normal
406106f25ae9SGregory Neil Shapiro		confTO_RESOLVER_RETRY		Timeout.resolver.retry
406206f25ae9SGregory Neil Shapiro		confTO_RESOLVER_RETRY_FIRST	Timeout.resolver.retry.first
406306f25ae9SGregory Neil Shapiro		confTO_RESOLVER_RETRY_NORMAL	Timeout.resolver.retry.normal
406406f25ae9SGregory Neil Shapiro		confTRUSTED_USER		TrustedUser
406506f25ae9SGregory Neil Shapiro		confXF_BUFFER_SIZE		XscriptFileBufferSize
406606f25ae9SGregory Neil Shapiro	CONFIG: confDAEMON_OPTIONS has been replaced by DAEMON_OPTIONS(),
406706f25ae9SGregory Neil Shapiro		which takes the options as argument and can be used
406806f25ae9SGregory Neil Shapiro		multiple times; see cf/README for details.
406906f25ae9SGregory Neil Shapiro	CONFIG: Add a fifth mailer definition to MAILER(`smtp') called
407006f25ae9SGregory Neil Shapiro		"dsmtp".  This mail provides on-demand delivery using the
407106f25ae9SGregory Neil Shapiro		F=% mailer flag described above.  The "dsmtp" mailer
407206f25ae9SGregory Neil Shapiro		definition uses the new DSMTP_MAILER_ARGS which defaults
407306f25ae9SGregory Neil Shapiro		to "IPC $h".
407406f25ae9SGregory Neil Shapiro	CONFIG: New variables LOCAL_MAILER_MAXMSGS, SMTP_MAILER_MAXMSGS,
407506f25ae9SGregory Neil Shapiro		and RELAY_MAILER_MAXMSGS for setting the m= equate for the
407606f25ae9SGregory Neil Shapiro		local, smtp, and relay mailers respectively.
407706f25ae9SGregory Neil Shapiro	CONFIG: New variable LOCAL_MAILER_DSN_DIAGNOSTIC_CODE for setting
407806f25ae9SGregory Neil Shapiro		the DSN Diagnostic-Code type for the local mailer.  The
407906f25ae9SGregory Neil Shapiro		value should be changed with care.
408006f25ae9SGregory Neil Shapiro	CONFIG: FEATURE(`local_lmtp') now sets the DSN Diagnostic-Code type
408106f25ae9SGregory Neil Shapiro		for the local mailer to the proper value of "SMTP".
408206f25ae9SGregory Neil Shapiro	CONFIG: All included maps are no longer optional by default; if
408306f25ae9SGregory Neil Shapiro		there there is a problem with a map, sendmail will
408406f25ae9SGregory Neil Shapiro		complain.
408506f25ae9SGregory Neil Shapiro	CONFIG: Removed root from class E; use EXPOSED_USER(`root')
408606f25ae9SGregory Neil Shapiro		to get the old behavior.  Suggested by Joe Pruett
408706f25ae9SGregory Neil Shapiro		of Q7 Enterprises.
408806f25ae9SGregory Neil Shapiro	CONFIG: MASQUERADE_EXCEPTION() defines hosts/subdomains which
408906f25ae9SGregory Neil Shapiro		will not be masqueraded.  Proposed by Arne Wichmann
409006f25ae9SGregory Neil Shapiro		of MPI Saarbruecken, Griff Miller of PGS Tensor,
409106f25ae9SGregory Neil Shapiro		Jayme Cox of Broderbund Software Inc.
409206f25ae9SGregory Neil Shapiro	CONFIG: A list of exceptions for FEATURE(`nocanonify') can be
409306f25ae9SGregory Neil Shapiro		specified by CANONIFY_DOMAIN or CANONIFY_DOMAIN_FILE,
409406f25ae9SGregory Neil Shapiro		i.e., a list of domains which are passed to $[ ... $]
409506f25ae9SGregory Neil Shapiro		for canonification. Based on an idea from Neil Rickert
409606f25ae9SGregory Neil Shapiro		of Northern Illinois University.
409706f25ae9SGregory Neil Shapiro	CONFIG: If `canonify_hosts' is specified as parameter for
409806f25ae9SGregory Neil Shapiro		FEATURE(`nocanonify') then addresses which have only
409906f25ae9SGregory Neil Shapiro		a hostname, e.g., <user@host>, will be canonified.
410006f25ae9SGregory Neil Shapiro	CONFIG: If FEATURE(`nocanonify') is turned on, a trailing dot is
410106f25ae9SGregory Neil Shapiro		nevertheless added to addresses with more than one component
410206f25ae9SGregory Neil Shapiro		in it.
410306f25ae9SGregory Neil Shapiro	CONFIG: Canonification is no longer attempted for any host or domain
410406f25ae9SGregory Neil Shapiro		in class 'P' ($=P).
410506f25ae9SGregory Neil Shapiro	CONFIG: New class for matching virtusertable entries $={VirtHost} that
410606f25ae9SGregory Neil Shapiro		can be populated by VIRTUSER_DOMAIN or VIRTUSER_DOMAIN_FILE.
410706f25ae9SGregory Neil Shapiro		FEATURE(`virtuser_entire_domain') can be used to apply this
410806f25ae9SGregory Neil Shapiro		class also to entire subdomains.  Hosts in this class are
410906f25ae9SGregory Neil Shapiro		treated as canonical in SCanonify2, i.e., a trailing dot
411006f25ae9SGregory Neil Shapiro		is added.
411106f25ae9SGregory Neil Shapiro	CONFIG: If VIRTUSER_DOMAIN() or VIRTUSER_DOMAIN_FILE() are used,
411206f25ae9SGregory Neil Shapiro		include $={VirtHost} in $=R (hosts allowed to relay).
411306f25ae9SGregory Neil Shapiro	CONFIG: FEATURE(`generics_entire_domain') can be used to apply the
411406f25ae9SGregory Neil Shapiro		genericstable also to subdomains of $=G.
411506f25ae9SGregory Neil Shapiro	CONFIG: Pass "+detail" as %2 for virtusertable lookups.
411606f25ae9SGregory Neil Shapiro		Patch from Noam Freedman from University of Chicago.
411706f25ae9SGregory Neil Shapiro	CONFIG: Pass "+detail" as %1 for genericstable lookups.  Suggested
411806f25ae9SGregory Neil Shapiro		by Raymond S Brand of rsbx.net.
411906f25ae9SGregory Neil Shapiro	CONFIG: Allow @domain in genericstable to override masquerading.
412006f25ae9SGregory Neil Shapiro		Suggested by Owen Duffy from Owen Duffy & Associates.
412106f25ae9SGregory Neil Shapiro	CONFIG: LOCAL_DOMAIN() adds entries to class w.  Suggested by Steve
412206f25ae9SGregory Neil Shapiro		Hubert of University of Washington.
412306f25ae9SGregory Neil Shapiro	CONFIG: OSTYPE(`gnuhurd') has been replaced by OSTYPE(`gnu') as
412406f25ae9SGregory Neil Shapiro		GNU is now the canonical system name.  From Mark
412506f25ae9SGregory Neil Shapiro		Kettenis of the University of Amsterdam.
412606f25ae9SGregory Neil Shapiro	CONFIG: OSTYPE(`unixware7') updates from Larry Rosenman.
412706f25ae9SGregory Neil Shapiro	CONFIG: Do not include '=' in option expansion if there is no value
412806f25ae9SGregory Neil Shapiro		associated with the option.  From Andrew Brown of
412906f25ae9SGregory Neil Shapiro		Graffiti World Wide, Inc.
413006f25ae9SGregory Neil Shapiro	CONFIG: Add MAILER(`qpage') to define a new pager mailer.  Contributed
413106f25ae9SGregory Neil Shapiro		by Philip A. Prindeville of Enteka Enterprise Technology
413206f25ae9SGregory Neil Shapiro		Services.
413306f25ae9SGregory Neil Shapiro	CONFIG: MAILER(`cyrus') was not preserving case for mail folder
413406f25ae9SGregory Neil Shapiro		names.  Problem noted by Randall Winchester of Swales
413506f25ae9SGregory Neil Shapiro		Aerospace.
413606f25ae9SGregory Neil Shapiro	CONFIG: RELAY_MAILER_FLAGS can be used to define additional flags
413706f25ae9SGregory Neil Shapiro		for the relay mailer.  Suggested by Doug Hughes of Auburn
413806f25ae9SGregory Neil Shapiro		University and Brian Candler.
413906f25ae9SGregory Neil Shapiro	CONFIG: LOCAL_MAILER_FLAGS now includes 'P' (Add Return-Path:
414006f25ae9SGregory Neil Shapiro		header) by default.  Suggested by Per Hedeland of Ericsson.
414106f25ae9SGregory Neil Shapiro	CONFIG: Use SMART_HOST for bracketed addresses, e.g., user@[host].
414206f25ae9SGregory Neil Shapiro		Suggested by Kari Hurtta of the Finnish Meteorological
414306f25ae9SGregory Neil Shapiro		Institute.
414406f25ae9SGregory Neil Shapiro	CONFIG: New macro MODIFY_MAILER_FLAGS to tweak *_MAILER_FLAGS;
414506f25ae9SGregory Neil Shapiro		i.e., to set, add, or delete flags.
414606f25ae9SGregory Neil Shapiro	CONFIG: If SMTP AUTH is used then relaying is allowed for any user
414706f25ae9SGregory Neil Shapiro		who authenticated via a "trusted" mechanism, i.e., one that
414806f25ae9SGregory Neil Shapiro		is defined via TRUST_AUTH_MECH(`list of mechanisms').
414906f25ae9SGregory Neil Shapiro	CONFIG: FEATURE(`delay_checks') delays check_mail and check_relay
415006f25ae9SGregory Neil Shapiro		after check_rcpt and allows for exceptions from the checks.
415106f25ae9SGregory Neil Shapiro	CONFIG: Map declarations have been moved into their associated
415206f25ae9SGregory Neil Shapiro		feature files to allow greater flexibility in use of
415306f25ae9SGregory Neil Shapiro		sequence maps.  Suggested by Per Hedeland of Ericsson.
415406f25ae9SGregory Neil Shapiro	CONFIG: New macro LOCAL_MAILER_EOL to override the default end of
415506f25ae9SGregory Neil Shapiro		line string for the local mailer.  Requested by Il Oh of
415606f25ae9SGregory Neil Shapiro		Willamette Industries, Inc.
415706f25ae9SGregory Neil Shapiro	CONFIG: Route addresses are stripped, i.e., <@a,@b,@c:user@d> is
415806f25ae9SGregory Neil Shapiro		converted to <user@d>
415906f25ae9SGregory Neil Shapiro	CONFIG: Reject bogus return address of <@@hostname>, generated by
416006f25ae9SGregory Neil Shapiro		Sun's older, broken configuration files.
416106f25ae9SGregory Neil Shapiro	CONFIG: FEATURE(`nullclient') now provides the full rulesets of a
416206f25ae9SGregory Neil Shapiro		normal configuration, allowing anti-spam checks to be
416306f25ae9SGregory Neil Shapiro		performed.
416406f25ae9SGregory Neil Shapiro	CONFIG: Don't return a permanent error (Relaying denied) if
416506f25ae9SGregory Neil Shapiro		${client_name} can't be resolved just temporarily.
416606f25ae9SGregory Neil Shapiro		Suggested by Kari Hurtta of the Finnish Meteorological
416706f25ae9SGregory Neil Shapiro		Institute.
416806f25ae9SGregory Neil Shapiro	CONFIG: Change numbered rulesets into named (which still can
416906f25ae9SGregory Neil Shapiro		be accessed by their numbers).
417006f25ae9SGregory Neil Shapiro	CONFIG: FEATURE(`nouucp') takes one parameter: reject or nospecial
417106f25ae9SGregory Neil Shapiro		which describes whether to disallow "!" in the local part
417206f25ae9SGregory Neil Shapiro		of an address.
417306f25ae9SGregory Neil Shapiro	CONFIG: Call Local_localaddr from localaddr (S5) which can be used
417406f25ae9SGregory Neil Shapiro		to rewrite an address from a mailer which has the F=5 flag
417506f25ae9SGregory Neil Shapiro		set.  If the ruleset returns a mailer, the appropriate
417606f25ae9SGregory Neil Shapiro		action is taken, otherwise the returned tokens are ignored.
417706f25ae9SGregory Neil Shapiro	CONFIG: cf/ostype/solaris.m4 has been renamed to solaris2.pre5.m4
417806f25ae9SGregory Neil Shapiro		and cf/ostype/solaris2.m4 is now a copy of solaris2.ml.m4.
417906f25ae9SGregory Neil Shapiro		The latter is kept around for backward compatibility.
418006f25ae9SGregory Neil Shapiro	CONFIG: Allow ":D.S.N:" for mailer/virtusertable "error:" entries,
418106f25ae9SGregory Neil Shapiro		where "D.S.N" is an RFC 1893 compliant error code.
418206f25ae9SGregory Neil Shapiro	CONFIG: Use /usr/lbin as confEBINDIR for Compaq Tru64 (Digital UNIX).
418306f25ae9SGregory Neil Shapiro	CONFIG: Remove second space between username and date in UNIX From_
418406f25ae9SGregory Neil Shapiro		line.  Noted by Allan E Johannesen of Worcester Polytechnic
418506f25ae9SGregory Neil Shapiro		Institute.
418606f25ae9SGregory Neil Shapiro	CONFIG: Make sure all of the mailers have complete T= equates.
418706f25ae9SGregory Neil Shapiro	CONFIG: Extend FEATURE(`local_procmail') so it can now take
418806f25ae9SGregory Neil Shapiro		arguments overriding the mailer program, arguments, and
418906f25ae9SGregory Neil Shapiro		mailer definition flags.  This makes it possible to use
419006f25ae9SGregory Neil Shapiro		other programs such as maildrop for local delivery.
419106f25ae9SGregory Neil Shapiro	CONFIG: Emit warning if FEATURE(`local_lmtp') or
419206f25ae9SGregory Neil Shapiro		FEATURE(`local_procmail') is given after MAILER(`local').
419306f25ae9SGregory Neil Shapiro		Patch from Richard A. Nelson of IBM.
419406f25ae9SGregory Neil Shapiro	CONFIG: Add SMTP Authentication information to Received: header
419506f25ae9SGregory Neil Shapiro		default value (confRECEIVED_HEADER).
419606f25ae9SGregory Neil Shapiro	CONFIG: Remove `l' flag from USENET_MAILER_FLAGS as it is not a
419706f25ae9SGregory Neil Shapiro		local mailer.  Problem noted by Per Hedeland of Ericsson.
419806f25ae9SGregory Neil Shapiro	CONTRIB: Added bounce-resender.pl from Brian R. Gaeke of the
419906f25ae9SGregory Neil Shapiro		University of California at Berkeley.
420006f25ae9SGregory Neil Shapiro	CONTRIB: Added domainmap.m4 from Mark D. Roth of the University of
420106f25ae9SGregory Neil Shapiro		Illinois at Urbana-Champaign.
420206f25ae9SGregory Neil Shapiro	CONTRIB: etrn.pl now recognizes bogus host names.  Patch from
420306f25ae9SGregory Neil Shapiro		Bruce Barnett of GE's R&D Lab.
420406f25ae9SGregory Neil Shapiro	CONTRIB: Patches for re-mqueue.pl by Graeme Hewson of Oracle
420506f25ae9SGregory Neil Shapiro		Corporation UK.
420606f25ae9SGregory Neil Shapiro	CONTRIB: Added qtool.pl to assist in managing the queues.
420706f25ae9SGregory Neil Shapiro	DEVTOOLS: Prevent user environment variables from interfering with
420806f25ae9SGregory Neil Shapiro		the Build scripts.  Problem noted by Ezequiel H. Panepucci of
420906f25ae9SGregory Neil Shapiro		Yale University.
421006f25ae9SGregory Neil Shapiro	DEVTOOLS: 'Build -M' will display the obj.* directory which will
421106f25ae9SGregory Neil Shapiro		be used for building.
421206f25ae9SGregory Neil Shapiro	DEVTOOLS: 'Build -A' will display the architecture that would be
421306f25ae9SGregory Neil Shapiro		used for a fresh build.
421406f25ae9SGregory Neil Shapiro	DEVTOOLS: New variable confRANLIB, set automatically by configure.sh.
421506f25ae9SGregory Neil Shapiro	DEVTOOLS: New variable confRANLIBOPTS for the options to send to
421606f25ae9SGregory Neil Shapiro		ranlib.
421706f25ae9SGregory Neil Shapiro	DEVTOOLS: 'Build -O <path>' will have the object files build in
421806f25ae9SGregory Neil Shapiro		<path>/obj.*.  Suggested by Bryan Costales of Exactis.
421906f25ae9SGregory Neil Shapiro	DEVTOOLS: New variable confNO_MAN_BUILD which will prevent the
422006f25ae9SGregory Neil Shapiro		building of the man pages when defined.  Suggested by Bryan
422106f25ae9SGregory Neil Shapiro		Costales.
422206f25ae9SGregory Neil Shapiro	DEVTOOLS: New variables confNO_HELPFILE_INSTALL and
422306f25ae9SGregory Neil Shapiro		confNO_STATISTICS_INSTALL which will prevent the
422406f25ae9SGregory Neil Shapiro		installation of the sendmail helpfile and statistics file
422506f25ae9SGregory Neil Shapiro		respectively.  Suggested by Bryan Costales.
422606f25ae9SGregory Neil Shapiro	DEVTOOLS: Recognize ReliantUNIX as SINIX.  Patch from Gerald Rinske
422706f25ae9SGregory Neil Shapiro		of Siemens Business Services.
422806f25ae9SGregory Neil Shapiro	DEVTOOLS: New variable confSTDIO_TYPE which defines the type of
422906f25ae9SGregory Neil Shapiro		stdio library.  The new buffered file I/O depends on the
423006f25ae9SGregory Neil Shapiro		Torek stdio library.  This option can be either portable or
423106f25ae9SGregory Neil Shapiro		torek.
423206f25ae9SGregory Neil Shapiro	DEVTOOLS: New variables confSRCADD and confSMSRCADD which
423306f25ae9SGregory Neil Shapiro		correspond to confOBJADD and confSMOBJADD respectively.
423406f25ae9SGregory Neil Shapiro		They should contain the C source files for the object files
423506f25ae9SGregory Neil Shapiro		listed in confOBJADD and confSMOBJADD.  These file names
423606f25ae9SGregory Neil Shapiro		will be passed to the 'make depend' stage of compilation.
423706f25ae9SGregory Neil Shapiro	DEVTOOLS: New program specific variables for each of the programs
423806f25ae9SGregory Neil Shapiro		in the sendmail distribution.  Each has the form
423906f25ae9SGregory Neil Shapiro		`conf_prog_ENVDEF', for example, `conf_sendmail_ENVDEF'.
424006f25ae9SGregory Neil Shapiro		The new variables are conf_prog_ENVDEF, conf_prog_LIBS,
424106f25ae9SGregory Neil Shapiro		conf_prog_SRCADD, and conf_prog_OBJADD.
424206f25ae9SGregory Neil Shapiro	DEVTOOLS: Build system redesign.  This should have little affect on
424306f25ae9SGregory Neil Shapiro		building the distribution, but documentation on the changes
424406f25ae9SGregory Neil Shapiro		are in devtools/README.
424506f25ae9SGregory Neil Shapiro	DEVTOOLS: Don't allow 'Build -f file' if an object directory already
424606f25ae9SGregory Neil Shapiro		exists.  Suggested by Valdis Kletnieks of Virginia Tech.
424706f25ae9SGregory Neil Shapiro	DEVTOOLS: Rename confSRCDIR to confSMSRCDIR since it only identifies
424806f25ae9SGregory Neil Shapiro		the path to the sendmail source directory.  confSRCDIR is a
424906f25ae9SGregory Neil Shapiro		new variable which identifies the root of the source
425006f25ae9SGregory Neil Shapiro		directories for all of the programs in the distribution.
425106f25ae9SGregory Neil Shapiro	DEVTOOLS: confSRCDIR and confSMSRCDIR are now determined at Build
425206f25ae9SGregory Neil Shapiro		time.  They can both still be overridden by setting the m4
425306f25ae9SGregory Neil Shapiro		macro.
425406f25ae9SGregory Neil Shapiro	DEVTOOLS: confSBINGRP now defaults to bin instead of kmem.
425506f25ae9SGregory Neil Shapiro	DEVTOOLS: 'Build -Q prefix' uses devtools/Site/prefix.*.m4 for
425606f25ae9SGregory Neil Shapiro		build configurations, and places objects in obj.prefix.*/.
425706f25ae9SGregory Neil Shapiro		Complains as 'Build -f file' does for existing object
425806f25ae9SGregory Neil Shapiro		directories.  Suggested by Tom Smith of Digital Equipment
425906f25ae9SGregory Neil Shapiro		Corporation.
426006f25ae9SGregory Neil Shapiro	DEVTOOLS: Setting confINSTALL_RAWMAN will install unformatted
426106f25ae9SGregory Neil Shapiro		manual pages in the directory tree specified by
426206f25ae9SGregory Neil Shapiro		confMANROOTMAN.
426306f25ae9SGregory Neil Shapiro	DEVTOOLS: If formatting the manual pages fails, copy in the
426406f25ae9SGregory Neil Shapiro		preformatted pages from the distribution.  The new variable
426506f25ae9SGregory Neil Shapiro		confCOPY specifies the copying program.
426606f25ae9SGregory Neil Shapiro	DEVTOOLS: Defining confFORCE_RMAIL will install rmail without
426706f25ae9SGregory Neil Shapiro		question.  Suggested by Terry Lambert of Whistle
426806f25ae9SGregory Neil Shapiro		Communications.
426906f25ae9SGregory Neil Shapiro	DEVTOOLS: confSTFILE and confHFFILE can be used to change the names
427006f25ae9SGregory Neil Shapiro		of the installed statistics and help files, respectively.
427106f25ae9SGregory Neil Shapiro	DEVTOOLS: Remove spaces in `uname -r` output when determining
427206f25ae9SGregory Neil Shapiro		operating system identity.  Problem noted by Erik
427306f25ae9SGregory Neil Shapiro		Wachtenheim of Dartmouth College.
427406f25ae9SGregory Neil Shapiro	DEVTOOLS: New variable confLIBSEARCHPATH to specify the paths that
427506f25ae9SGregory Neil Shapiro		will be search for the libraries specified in confLIBSEARCH.
427606f25ae9SGregory Neil Shapiro		Defaults to "/lib /usr/lib /usr/shlib".
427706f25ae9SGregory Neil Shapiro	DEVTOOLS: New variables confSTRIP and confSTRIPOPTS for specifying
427806f25ae9SGregory Neil Shapiro		how to strip binaries.  These are used by the new
427906f25ae9SGregory Neil Shapiro		install-strip target.
428006f25ae9SGregory Neil Shapiro	DEVTOOLS: New config file site.post.m4 which is included after
428106f25ae9SGregory Neil Shapiro		the others (if it exists).
428206f25ae9SGregory Neil Shapiro	DEVTOOLS: Change order of LIBS: first product specific libraries
428306f25ae9SGregory Neil Shapiro		then the default ones.
428440266059SGregory Neil Shapiro	MAIL.LOCAL: Will not be installed set-user-ID root.  To use mail.local
428506f25ae9SGregory Neil Shapiro		as local delivery agent without LMTP mode, use
428606f25ae9SGregory Neil Shapiro		MODIFY_MAILER_FLAGS(`LOCAL', `+S')
428706f25ae9SGregory Neil Shapiro		to set the S flag.
428806f25ae9SGregory Neil Shapiro	MAIL.LOCAL: Do not reject addresses which would otherwise be
428906f25ae9SGregory Neil Shapiro		accepted by sendmail.  Suggested by Neil Rickert of
429006f25ae9SGregory Neil Shapiro		Northern Illinois University.
429106f25ae9SGregory Neil Shapiro	MAIL.LOCAL: New -7 option which causes LMTP mode not to advertise
429206f25ae9SGregory Neil Shapiro		8BITMIME in the LHLO response.  Suggested by Kari Hurtta of
429306f25ae9SGregory Neil Shapiro		the Finnish Meteorological Institute.
429406f25ae9SGregory Neil Shapiro	MAIL.LOCAL: Add support for the maillock() routines by defining
429506f25ae9SGregory Neil Shapiro		MAILLOCK when compiling.  Also requires linking with
429606f25ae9SGregory Neil Shapiro		-lmail.  Patch from Neil Rickert of Northern Illinois
429706f25ae9SGregory Neil Shapiro		University.
429806f25ae9SGregory Neil Shapiro	MAIL.LOCAL: Create a Content-Length: header if CONTENTLENGTH is
429906f25ae9SGregory Neil Shapiro		defined when compiling.  Automatically set for Solaris 2.3
430006f25ae9SGregory Neil Shapiro		and later.  Patch from Neil Rickert of Northern Illinois
430106f25ae9SGregory Neil Shapiro		University.
430206f25ae9SGregory Neil Shapiro	MAIL.LOCAL: Move the initialization of the 'notifybiff' address
430306f25ae9SGregory Neil Shapiro		structure to the beginning of the program.  This ensures that
430406f25ae9SGregory Neil Shapiro		the getservbyname() is done before any seteuid to a possibly
430506f25ae9SGregory Neil Shapiro		unauthenticated user.  If you are using NIS+ and secure RPC
430606f25ae9SGregory Neil Shapiro		on a Solaris system, this avoids syslog messages such as,
430706f25ae9SGregory Neil Shapiro		"authdes_refresh: keyserv(1m) is unable to encrypt session
430806f25ae9SGregory Neil Shapiro		key."  Patch from Neil Rickert of Northern Illinois
430906f25ae9SGregory Neil Shapiro		University.
431006f25ae9SGregory Neil Shapiro	MAIL.LOCAL: Support group writable mail spool files when MAILGID is
431106f25ae9SGregory Neil Shapiro		set to the gid to use (-DMAILGID=6) when compiling.
431206f25ae9SGregory Neil Shapiro		Patch from Neil Rickert of Northern Illinois University.
431306f25ae9SGregory Neil Shapiro	MAIL.LOCAL: When a mail message included lines longer than 2046
431406f25ae9SGregory Neil Shapiro		characters (in LMTP mode), mail.local split the incoming
431506f25ae9SGregory Neil Shapiro		line up into 2046-character output lines (excluding the
431606f25ae9SGregory Neil Shapiro		newline).  If an input line was 2047 characters long
431706f25ae9SGregory Neil Shapiro		(excluding CR-LF) and the last character was a '.',
431806f25ae9SGregory Neil Shapiro		mail.local saw it as the end of input, transfered it to the
431906f25ae9SGregory Neil Shapiro		user mailbox and tried to write an `ok' back to sendmail.
432006f25ae9SGregory Neil Shapiro		If the message was much longer, both sendmail and
432106f25ae9SGregory Neil Shapiro		mail.local would deadlock waiting for each other to read
432206f25ae9SGregory Neil Shapiro		what they have written.  Problem noted by Peter Jeremy of
432306f25ae9SGregory Neil Shapiro		Alcatel Australia Limited.
432406f25ae9SGregory Neil Shapiro	MAIL.LOCAL: New option -b to return a permanent error instead of a
432506f25ae9SGregory Neil Shapiro		temporary error if a mailbox exceeds quota.  Suggested by
432606f25ae9SGregory Neil Shapiro		Neil Rickert of Northern Illinois University.
432706f25ae9SGregory Neil Shapiro	MAIL.LOCAL: The creation of a lockfile is subject to a global
432806f25ae9SGregory Neil Shapiro		timeout to avoid starvation.
432906f25ae9SGregory Neil Shapiro	MAIL.LOCAL: Properly parse addresses with multiple quoted
433006f25ae9SGregory Neil Shapiro		local-parts.  Problem noted by Ronald F. Guilmette of
433106f25ae9SGregory Neil Shapiro		Infinite Monkeys & Co.
433206f25ae9SGregory Neil Shapiro	MAIL.LOCAL: NCR MP/RAS 3.X portability from Tom J. Moore of NCR.
433306f25ae9SGregory Neil Shapiro	MAILSTATS: New -p option to invoke program mode in which stats are
433406f25ae9SGregory Neil Shapiro		printed in a machine readable fashion and the stats file
433506f25ae9SGregory Neil Shapiro		is reset.  Patch from Kevin Hildebrand of the University
433606f25ae9SGregory Neil Shapiro		of Maryland.
433706f25ae9SGregory Neil Shapiro	MAKEMAP: If running as root, automatically change the ownership of
433806f25ae9SGregory Neil Shapiro		generated maps to the TrustedUser as specified in the
433906f25ae9SGregory Neil Shapiro		sendmail configuration file.
434006f25ae9SGregory Neil Shapiro	MAKEMAP: New -C option to accept an alternate sendmail
434106f25ae9SGregory Neil Shapiro		configuration file to use for finding the TrustedUser
434206f25ae9SGregory Neil Shapiro		option.
434306f25ae9SGregory Neil Shapiro	MAKEMAP: New -u option to dump (unmap) a database.  Based on
434406f25ae9SGregory Neil Shapiro		code contributed by Roy Mongiovi of Georgia Tech.
434506f25ae9SGregory Neil Shapiro	MAKEMAP: New -e option to allow empty values.  Suggested by Philip
434606f25ae9SGregory Neil Shapiro		A. Prindeville of Enteka Enterprise Technology Services.
434706f25ae9SGregory Neil Shapiro	MAKEMAP: Compile cleanly on 64-bit operating systems.  Problem
434806f25ae9SGregory Neil Shapiro		noted by Gerald Rinske of Siemens Business Services.
434906f25ae9SGregory Neil Shapiro	OP.ME: Correctly document interaction between F=S and U= mailer
435006f25ae9SGregory Neil Shapiro		equates.  Problem noted by Bob Halley of Internet Engines.
435106f25ae9SGregory Neil Shapiro	OP.ME: Fixup Timeout documentation.  From Graeme Hewson of Oracle
435206f25ae9SGregory Neil Shapiro		Corporation UK.
435306f25ae9SGregory Neil Shapiro	OP.ME: The Timeout [r] option was incorrectly listed as "safe"
435406f25ae9SGregory Neil Shapiro		(e.g., sendmail would not drop root privileges if the
435506f25ae9SGregory Neil Shapiro		option was specified on the command line).  Problem noted
435606f25ae9SGregory Neil Shapiro		by Todd C. Miller of Courtesan Consulting.
435706f25ae9SGregory Neil Shapiro	PRALIASES: Handle the hash and btree map specifications for
435806f25ae9SGregory Neil Shapiro		Berkeley DB.  Patch from Brian J. Coan of the
435906f25ae9SGregory Neil Shapiro		Institute for Global Communications.
436006f25ae9SGregory Neil Shapiro	PRALIASES: Read the sendmail.cf file for the location(s) of the
436106f25ae9SGregory Neil Shapiro		alias file(s) if the -f option is not used.  Patch from
436206f25ae9SGregory Neil Shapiro		John Beck of Sun Microsystems.
436306f25ae9SGregory Neil Shapiro	PRALIASES: New -C option to specify an alternate sendmail
436406f25ae9SGregory Neil Shapiro		configuration file to use for finding alias file(s).  Patch
436506f25ae9SGregory Neil Shapiro		from John Beck of Sun Microsystems.
436606f25ae9SGregory Neil Shapiro	SMRSH: allow shell commands echo, exec, and exit.  Allow command
436706f25ae9SGregory Neil Shapiro		lists using || and &&.  Based on patch from Brian J. Coan
436806f25ae9SGregory Neil Shapiro		of the Institute for Global Communications.
436906f25ae9SGregory Neil Shapiro	SMRSH: Update README for the new Build system.  From Tim Pierce
437006f25ae9SGregory Neil Shapiro		of RootsWeb Genealogical Data Cooperative.
437106f25ae9SGregory Neil Shapiro	VACATION: Added vacation auto-responder to sendmail distribution.
437206f25ae9SGregory Neil Shapiro	LIBSMDB: Added abstracted database library.  Works with Berkeley
437306f25ae9SGregory Neil Shapiro		DB 1.85, Berkeley DB 2.X, Berkeley DB 3.X, and NDBM.
437406f25ae9SGregory Neil Shapiro	Changed Files:
437506f25ae9SGregory Neil Shapiro		The Build script in the various program subdirectories are
437606f25ae9SGregory Neil Shapiro			no longer symbolic links.  They are now scripts
437706f25ae9SGregory Neil Shapiro			which execute the actual Build script in
437806f25ae9SGregory Neil Shapiro			devtools/bin.
437906f25ae9SGregory Neil Shapiro		All the manual pages are now written against -man and not
438006f25ae9SGregory Neil Shapiro			-mandoc as they were previously.
438106f25ae9SGregory Neil Shapiro		Add a simple Makefile to every directory so make instead
438206f25ae9SGregory Neil Shapiro			of Build will work (unless parameters are
438306f25ae9SGregory Neil Shapiro			required for Build).
438406f25ae9SGregory Neil Shapiro	New Directories:
438506f25ae9SGregory Neil Shapiro		devtools/M4/UNIX
438606f25ae9SGregory Neil Shapiro		include
438706f25ae9SGregory Neil Shapiro		libmilter
438806f25ae9SGregory Neil Shapiro		libsmdb
438906f25ae9SGregory Neil Shapiro		libsmutil
439006f25ae9SGregory Neil Shapiro		vacation
439106f25ae9SGregory Neil Shapiro	Renamed Directories:
439206f25ae9SGregory Neil Shapiro		BuildTools => devtools
439306f25ae9SGregory Neil Shapiro		src => sendmail
439406f25ae9SGregory Neil Shapiro	Deleted Files:
439506f25ae9SGregory Neil Shapiro		cf/m4/nullrelay.m4
439606f25ae9SGregory Neil Shapiro		devtools/OS/Linux.ppc
439706f25ae9SGregory Neil Shapiro		devtools/OS/ReliantUNIX
439806f25ae9SGregory Neil Shapiro		devtools/OS/SINIX
439906f25ae9SGregory Neil Shapiro		sendmail/ldap_map.h
440006f25ae9SGregory Neil Shapiro	New Files:
440106f25ae9SGregory Neil Shapiro		INSTALL
440206f25ae9SGregory Neil Shapiro		PGPKEYS
440306f25ae9SGregory Neil Shapiro		cf/cf/generic-linux.cf
440406f25ae9SGregory Neil Shapiro		cf/cf/generic-linux.mc
440506f25ae9SGregory Neil Shapiro		cf/feature/delay_checks.m4
440606f25ae9SGregory Neil Shapiro		cf/feature/dnsbl.m4
440706f25ae9SGregory Neil Shapiro		cf/feature/generics_entire_domain.m4
440806f25ae9SGregory Neil Shapiro		cf/feature/no_default_msa.m4
440906f25ae9SGregory Neil Shapiro		cf/feature/relay_mail_from.m4
441006f25ae9SGregory Neil Shapiro		cf/feature/virtuser_entire_domain.m4
441106f25ae9SGregory Neil Shapiro		cf/mailer/qpage.m4
441206f25ae9SGregory Neil Shapiro		cf/ostype/bsdi.m4
441306f25ae9SGregory Neil Shapiro		cf/ostype/hpux11.m4
441406f25ae9SGregory Neil Shapiro		cf/ostype/openbsd.m4
441506f25ae9SGregory Neil Shapiro		contrib/bounce-resender.pl
441606f25ae9SGregory Neil Shapiro		contrib/domainmap.m4
441706f25ae9SGregory Neil Shapiro		contrib/qtool.8
441806f25ae9SGregory Neil Shapiro		contrib/qtool.pl
441906f25ae9SGregory Neil Shapiro		devtools/M4/depend/AIX.m4
442006f25ae9SGregory Neil Shapiro		devtools/M4/list.m4
442106f25ae9SGregory Neil Shapiro		devtools/M4/string.m4
442206f25ae9SGregory Neil Shapiro		devtools/M4/subst_ext.m4
442306f25ae9SGregory Neil Shapiro		devtools/M4/switch.m4
442406f25ae9SGregory Neil Shapiro		devtools/OS/Darwin
442506f25ae9SGregory Neil Shapiro		devtools/OS/GNU
442606f25ae9SGregory Neil Shapiro		devtools/OS/SINIX.5.43
442706f25ae9SGregory Neil Shapiro		devtools/OS/SINIX.5.44
442806f25ae9SGregory Neil Shapiro		devtools/OS/m88k
442906f25ae9SGregory Neil Shapiro		devtools/bin/find_in_path.sh
443006f25ae9SGregory Neil Shapiro		mail.local/Makefile
443106f25ae9SGregory Neil Shapiro		mailstats/Makefile
443206f25ae9SGregory Neil Shapiro		makemap/Makefile
443306f25ae9SGregory Neil Shapiro		praliases/Makefile
443406f25ae9SGregory Neil Shapiro		rmail/Makefile
443506f25ae9SGregory Neil Shapiro		sendmail/Makefile
443606f25ae9SGregory Neil Shapiro		sendmail/bf.h
443706f25ae9SGregory Neil Shapiro		sendmail/bf_portable.c
443806f25ae9SGregory Neil Shapiro		sendmail/bf_portable.h
443906f25ae9SGregory Neil Shapiro		sendmail/bf_torek.c
444006f25ae9SGregory Neil Shapiro		sendmail/bf_torek.h
444106f25ae9SGregory Neil Shapiro		sendmail/shmticklib.c
444206f25ae9SGregory Neil Shapiro		sendmail/statusd_shm.h
444306f25ae9SGregory Neil Shapiro		sendmail/timers.c
444406f25ae9SGregory Neil Shapiro		sendmail/timers.h
444506f25ae9SGregory Neil Shapiro		smrsh/Makefile
444606f25ae9SGregory Neil Shapiro		vacation/Makefile
444706f25ae9SGregory Neil Shapiro	Renamed Files:
444806f25ae9SGregory Neil Shapiro		cf/ostype/gnuhurd.m4 => cf/ostype/gnu.m4
444906f25ae9SGregory Neil Shapiro		sendmail/cdefs.h => include/sendmail/cdefs.h
445006f25ae9SGregory Neil Shapiro		sendmail/sendmail.hf => sendmail/helpfile
445106f25ae9SGregory Neil Shapiro		sendmail/mailstats.h => include/sendmail/mailstats.h
445206f25ae9SGregory Neil Shapiro		sendmail/pathnames.h => include/sendmail/pathnames.h
445306f25ae9SGregory Neil Shapiro		sendmail/safefile.c => libsmutil/safefile.c
445406f25ae9SGregory Neil Shapiro		sendmail/snprintf.c => libsmutil/snprintf.c
445506f25ae9SGregory Neil Shapiro		sendmail/useful.h => include/sendmail/useful.h
445606f25ae9SGregory Neil Shapiro		cf/ostype/solaris2.m4 => cf/ostype/solaris2.pre5.m4
445706f25ae9SGregory Neil Shapiro	Copied Files:
445806f25ae9SGregory Neil Shapiro		cf/ostype/solaris2.ml.m4 => cf/ostype/solaris2.m4
445906f25ae9SGregory Neil Shapiro
446006f25ae9SGregory Neil Shapiro8.9.3/8.9.3	1999/02/04
44612e43090eSPeter Wemm	SECURITY: Limit message headers to a maximum of 32K bytes (total
44622e43090eSPeter Wemm		of all headers in a single message) to prevent a denial of
44632e43090eSPeter Wemm		service attack.  This limit will be configurable in 8.10.
44642e43090eSPeter Wemm		Problem noted by Michal Zalewski of the "Internet for
44652e43090eSPeter Wemm		Schools" project (IdS).
44662e43090eSPeter Wemm	Prevent segmentation fault on an LDAP lookup if the LDAP map
44672e43090eSPeter Wemm		was closed due to an earlier failure.  Problem noted by
44682e43090eSPeter Wemm		Jeff Wasilko of smoe.org.  Fix from Booker Bense of
44692e43090eSPeter Wemm		Stanford University and Per Hedeland of Ericsson.
44702e43090eSPeter Wemm	Preserve the order of the MIME headers in multipart messages
44712e43090eSPeter Wemm		when performing the MIME header length check.  This
44722e43090eSPeter Wemm		will allow PGP signatures to function properly.  Problem
44732e43090eSPeter Wemm		noted by Lars Hecking of University College, Cork, Ireland.
44742e43090eSPeter Wemm	If ruleset 5 rewrote the local address to an :include: directive,
44752e43090eSPeter Wemm		the delivery would fail with an "aliasing/forwarding loop
44762e43090eSPeter Wemm		broken" error.  Problem noted by Eric C Hagberg of Morgan
44772e43090eSPeter Wemm		Stanley.  Fix from Per Hedeland of Ericsson.
44782e43090eSPeter Wemm	Allow -T to work for bestmx maps.  Fix from Aaron Schrab of
44792e43090eSPeter Wemm		ExecPC Internet Systems.
44802e43090eSPeter Wemm	During the transfer of a message in an SMTP transaction, if a
44812e43090eSPeter Wemm		TCP timeout occurs, the message would be properly queued
44822e43090eSPeter Wemm		for later retry but the failure would be logged as
44832e43090eSPeter Wemm		"Illegal Seek" instead of a timeout.  Problem noted by
44842e43090eSPeter Wemm		Piotr Kucharski of the Warsaw School of Economics (SGH)
44852e43090eSPeter Wemm		and Carles Xavier Munyoz Baldo of CTV Internet.
44862e43090eSPeter Wemm	Prevent multiple deliveries on a self-referencing alias if the
44872e43090eSPeter Wemm		F=w mailer flag is not set.  Problem noted by Murray S.
44882e43090eSPeter Wemm		Kucherawy of Concentric Network Corporation and Per
44892e43090eSPeter Wemm		Hedeland of Ericsson.
44902e43090eSPeter Wemm	Do not strip empty headers but if there is no value and a
44912e43090eSPeter Wemm		default is defined in sendmail.cf, use the default.
44922e43090eSPeter Wemm		Problem noted by Philip Guenther of Gustavus Adolphus
44932e43090eSPeter Wemm		College and Christopher McCrory of Netus, Inc.
44942e43090eSPeter Wemm	Don't inherit information about the sender (notably the full name)
44952e43090eSPeter Wemm		in SMTP (-bs) mode, since this might be called from inetd.
44962e43090eSPeter Wemm	Accept any 3xx reply code in response to DATA command instead of
44972e43090eSPeter Wemm		requiring 354.  This change will match the wording to be
44982e43090eSPeter Wemm		published in the updated SMTP specification from the DRUMS
44992e43090eSPeter Wemm		group of the IETF.
45002e43090eSPeter Wemm	Portability:
450106f25ae9SGregory Neil Shapiro		AIX 4.2.0 or 4.2.1 may become updated by the fileset
450206f25ae9SGregory Neil Shapiro			bos.rte.net level 4.2.0.2.  This introduces the
450306f25ae9SGregory Neil Shapiro			softlink /usr/lib/libbind.a which should
45042e43090eSPeter Wemm			not be used.  It conflicts with the resolver
45052e43090eSPeter Wemm			built into libc.a.  "bind" has been removed
45062e43090eSPeter Wemm			from the confLIBSEARCH BuildTools variable.
45072e43090eSPeter Wemm			Users who have installed BIND 8.X will have
45082e43090eSPeter Wemm			to add it back in their site.config.m4 file.
45092e43090eSPeter Wemm			Problem noted by Ole Holm Nielsen of the
45102e43090eSPeter Wemm			Technical University of Denmark.
45112e43090eSPeter Wemm		CRAY TS 10.0.x from Sven Nielsen of San Diego
45122e43090eSPeter Wemm			Supercomputer Center.
45132e43090eSPeter Wemm		Improved LDAP version 3 integration based on input
45142e43090eSPeter Wemm			from Kurt D. Zeilenga of the OpenLDAP Foundation,
45152e43090eSPeter Wemm			John Beck of Sun Microsystems, and Booker Bense
45162e43090eSPeter Wemm			of Stanford University.
45172e43090eSPeter Wemm		Linux doesn't have a standard way to get the timezone
45182e43090eSPeter Wemm			between different releases.  Back out the
45192e43090eSPeter Wemm			change in 8.9.2 and don't attempt to derive
45202e43090eSPeter Wemm			a timezone.  Problem reported by Igor S. Livshits
45212e43090eSPeter Wemm			of the University of Illinois at Urbana-Champaign
45222e43090eSPeter Wemm			and Michael Dickens of Tetranet Communications.
45232e43090eSPeter Wemm		Reliant UNIX, the new name for SINIX, from Gert-Jan Looy
45242e43090eSPeter Wemm			of Siemens/SNI.
45252e43090eSPeter Wemm		SunOS 5.8 from John Beck of Sun Microsystems.
45262e43090eSPeter Wemm	CONFIG: SCO UnixWare 2.1 and 7.0 need TZ to get the proper
45272e43090eSPeter Wemm		timezone.  Problem noted by Petr Lampa of Technical
45282e43090eSPeter Wemm		University of Brno.
45292e43090eSPeter Wemm	CONFIG: Handle <@bestmx-host:user@otherhost> addressing properly
45302e43090eSPeter Wemm		when using FEATURE(bestmx_is_local).  Patch from Neil W.
45312e43090eSPeter Wemm		Rickert of Northern Illinois University.
45322e43090eSPeter Wemm	CONFIG: Properly handle source routed and %-hack addresses on
45332e43090eSPeter Wemm		hosts which the mailertable remaps to local:.  Patch from
45342e43090eSPeter Wemm		Neil W. Rickert of Northern Illinois University.
45352e43090eSPeter Wemm	CONFIG: Internal fixup of mailertable local: map value.  Patch from
45362e43090eSPeter Wemm		Larry Parmelee of Cornell University.
45372e43090eSPeter Wemm	CONFIG: Only add back +detail from host portion of mailer triplet
45382e43090eSPeter Wemm		on local mailer triplets if it was originally +detail.
45392e43090eSPeter Wemm		Patch from Neil W. Rickert of Northern Illinois University.
45402e43090eSPeter Wemm	CONFIG: The bestmx_is_local checking done in check_rcpt would
45412e43090eSPeter Wemm		cause later checks to fail.  Patch from Paul J Murphy of
45422e43090eSPeter Wemm		MIDS Europe.
454306f25ae9SGregory Neil Shapiro	New Files:
45442e43090eSPeter Wemm		BuildTools/OS/CRAYTS.10.0.x
45452e43090eSPeter Wemm		BuildTools/OS/ReliantUNIX
45462e43090eSPeter Wemm		BuildTools/OS/SunOS.5.8
45472e43090eSPeter Wemm
454806f25ae9SGregory Neil Shapiro8.9.2/8.9.2	1998/12/30
4549065a643dSPeter Wemm	SECURITY: Remove five second sleep on accepting daemon connections
4550065a643dSPeter Wemm		due to an accept() failure.  This sleep could be used
4551065a643dSPeter Wemm		for a denial of service attack.
4552065a643dSPeter Wemm	Do not silently ignore queue files with names which are too long.
4553065a643dSPeter Wemm		Patch from Bryan Costales of InfoBeat, Inc.
4554065a643dSPeter Wemm	Do not store failures closing an SMTP session in persistent
4555065a643dSPeter Wemm		host status.  Reported by Graeme Hewson of Oracle
4556065a643dSPeter Wemm		Corporation UK.
4557065a643dSPeter Wemm	Allow symbolic link forward files if they are in safe directories.
4558065a643dSPeter Wemm		Problem noted by Andreas Schott of the Max Planck Society.
4559065a643dSPeter Wemm	Missing columns in a text map could cause a segmentation fault.
4560065a643dSPeter Wemm		Fix from David Lee of the University of Durham.
45612e43090eSPeter Wemm	Note that for 8.9.X, PrivacyOptions=goaway also includes the
4562065a643dSPeter Wemm		noetrn flag.  This is scheduled to change in a future
4563065a643dSPeter Wemm		version of sendmail.  Problem noted by Theo Van Dinter of
4564065a643dSPeter Wemm		Chrysalis Symbolic Designa and Alan Brown of Manawatu
4565065a643dSPeter Wemm		Internet Services.
4566065a643dSPeter Wemm	When trying to do host canonification in a Wildcard MX
4567065a643dSPeter Wemm		environment, try an MX lookup of the hostname without the
4568065a643dSPeter Wemm		default domain appended.  Problem noted by Olaf Seibert of
4569065a643dSPeter Wemm		Polderland Language & Speech Technology.
4570065a643dSPeter Wemm	Reject SMTP RCPT To: commands with only comments (i.e.
4571065a643dSPeter Wemm		'RCPT TO: (comment)'.  Problem noted by Earle Ake of
4572065a643dSPeter Wemm		Hassler Communication Systems Technology, Inc.
4573065a643dSPeter Wemm	Handle any number of %s in the LDAP filter spec.  Patch from
4574065a643dSPeter Wemm		Per Hedeland of Ericsson.
4575065a643dSPeter Wemm	Clear ldapx open timeouts even if the map open failed to prevent
4576065a643dSPeter Wemm		a segmentation fault.  Patch from Wayne Knowles of the
4577065a643dSPeter Wemm		National Institute of Water & Atmospheric Research Ltd.
4578065a643dSPeter Wemm	Do not syslog envelope clone messages when using address
4579065a643dSPeter Wemm		verification (-bv).  Problem noted by Kari Hurtta of the
4580065a643dSPeter Wemm		Finnish Meteorological Institute.
4581065a643dSPeter Wemm	Continue to perform queue runs while in daemon mode even if the
4582065a643dSPeter Wemm		daemon is rejecting connections due to a disk full
4583065a643dSPeter Wemm		condition.  Problem noted by JR Oldroyd of TerraNet
4584065a643dSPeter Wemm		Internet Services.
4585065a643dSPeter Wemm	Include full filename on installation of the sendmail.hf file
4586065a643dSPeter Wemm		in case the $HFDIR directory does not exist.  Problem
4587065a643dSPeter Wemm		noted by Josef Svitak of Montana State University.
4588065a643dSPeter Wemm	Close all maps when exiting the process with one exception.
4589065a643dSPeter Wemm		Berkeley DB can use internal shared memory locking for
4590065a643dSPeter Wemm		its memory pool.  Closing a map opened by another process
4591065a643dSPeter Wemm		will interfere with the shared memory and locks of the
4592065a643dSPeter Wemm		parent process leaving things in a bad state.  For
4593065a643dSPeter Wemm		Berkeley DB, only close the map if the current process
4594065a643dSPeter Wemm		is also the one that opened the map, otherwise only close
4595065a643dSPeter Wemm		the map file descriptor.  Thanks to Yoseff Francus of
4596065a643dSPeter Wemm		Collective Technologies for volunteering his system for
4597065a643dSPeter Wemm		extended testing.
4598065a643dSPeter Wemm	Avoid null pointer dereference on XDEBUG output for SMTP reply
4599065a643dSPeter Wemm		failures.  Problem noted by Carlos Canau of EUnet Portugal.
4600065a643dSPeter Wemm	On mailq and hoststat listings being piped to another program, such
460106f25ae9SGregory Neil Shapiro		as more, if the pipe closes (i.e., the user quits more),
4602065a643dSPeter Wemm		stop sending output and exit.  Patch from Allan E Johannesen
4603065a643dSPeter Wemm		of Worcester Polytechnic Institute.
4604065a643dSPeter Wemm	In accordance with the documentation, LDAP map lookup failures
4605065a643dSPeter Wemm		are now considered temporary failures instead of permanent
4606065a643dSPeter Wemm		failures unless the -t flag is used in the map definition.
4607065a643dSPeter Wemm		Problem noted by Booker Bense of Stanford University and
4608065a643dSPeter Wemm		Eric C. Hagberg of Morgan Stanley.
4609065a643dSPeter Wemm	Fix by one error reporting on long alias names.  Problem noted by
4610065a643dSPeter Wemm		H. Paul Hammann of the Missouri Research and Education
4611065a643dSPeter Wemm		Network.
4612065a643dSPeter Wemm	Fix DontBlameSendmail=IncludeFileInUnsafeDirPath behavior.  Problem
4613065a643dSPeter Wemm		noted by Barry S. Finkel of Argonne National Laboratory.
4614065a643dSPeter Wemm	When automatically converting from 8 bit to quoted printable MIME,
4615065a643dSPeter Wemm		be careful not to miss a multi-part boundary if that
4616065a643dSPeter Wemm		boundary is preceded by a boundary-like line.  Problem
4617065a643dSPeter Wemm		noted by Andreas Raschle of Ansid Inc.  Fix from
4618065a643dSPeter Wemm		Kari Hurtta of the Finnish Meteorological Institute.
4619065a643dSPeter Wemm	Avoid bogus reporting of "LMTP tobuf overflow" when the buffer
4620065a643dSPeter Wemm		has enough space for the additional address.  Problem
4621065a643dSPeter Wemm		noted by Steve Cliffe of the University of Wollongong.
46222e43090eSPeter Wemm	Fix DontBlameSendmail=FileDeliveryToSymlink behavior.  Problem
4623065a643dSPeter Wemm		noted by Alex Vorobiev of Swarthmore College.
4624065a643dSPeter Wemm	If the check_compat ruleset resolves to the $#discard mailer,
4625065a643dSPeter Wemm		discard the current recipient.  Unlike check_relay,
4626065a643dSPeter Wemm		check_mail, and check_rcpt, the entire envelope is not
4627065a643dSPeter Wemm		discarded.  Problem noted by RZ D. Rahlfs.  Fix from
4628065a643dSPeter Wemm		Claus Assmann of Christian-Albrechts-University of Kiel.
46292e43090eSPeter Wemm	Avoid segmentation fault when reading ServiceSwitchFile files with
4630065a643dSPeter Wemm		bogus formatting.  Patch from Kari Hurtta of the Finnish
4631065a643dSPeter Wemm		Meteorological Institute.
4632065a643dSPeter Wemm	Support Berkeley DB 2.6.4 API change.
4633065a643dSPeter Wemm	OP.ME: Pages weren't properly output on duplexed printers.  Fix
4634065a643dSPeter Wemm		from Matthew Black of CSU Long Beach.
4635065a643dSPeter Wemm	Portability:
4636065a643dSPeter Wemm		Apple Rhapsody from Wilfredo Sanchez of Apple Computer, Inc.
4637065a643dSPeter Wemm		Avoid a clash with IRIX 6.2 getopt.h and the UserDatabase
4638065a643dSPeter Wemm			option structure.  Problem noted by Ashley M.
4639065a643dSPeter Wemm			Kirchner of Photo Craft Laboratories, Inc.
4640065a643dSPeter Wemm		Break out IP address to hostname translation for
4641065a643dSPeter Wemm			reading network interface addresses into
4642065a643dSPeter Wemm			class 'w'.  Patch from John Kennedy of
4643065a643dSPeter Wemm			Cal State University, Chico.
4644065a643dSPeter Wemm		AIX 4.x use -qstrict with -O3 to prevent the optimized
4645065a643dSPeter Wemm			from changing the semantics of the compiled
4646065a643dSPeter Wemm			program.  From Simon Travaglia of the
4647065a643dSPeter Wemm			University of Waikato, New Zealand.
4648065a643dSPeter Wemm		FreeBSD 2.2.2 and later support setusercontext().  From
4649065a643dSPeter Wemm			Peter Wemm of DIALix.
4650065a643dSPeter Wemm		FreeBSD 3.x fix from Peter Wemm of DIALix.
4651065a643dSPeter Wemm		IRIX 5.x has a syslog buffer size of 512 bytes.  From
4652065a643dSPeter Wemm			Nao NINOMIYA of Utsunomiya University.
4653065a643dSPeter Wemm		IRIX 6.5 64-bit Build support.
4654065a643dSPeter Wemm		LDAP Version 3 support from John Beck and Ravi Iyer
4655065a643dSPeter Wemm			of Sun Microsystems.
4656065a643dSPeter Wemm		Linux does not implement seteuid() properly.  From
4657065a643dSPeter Wemm			John Kennedy of Cal State University, Chico.
4658065a643dSPeter Wemm		Linux timezone type was set improperly.  From Takeshi Itoh
4659065a643dSPeter Wemm			of Bits Co., Ltd.
4660065a643dSPeter Wemm		NCR MP-RAS 3.x needs -lresolv for confLIBS.  From
4661065a643dSPeter Wemm			Tom J. Moore of NCR.
4662065a643dSPeter Wemm		NeXT 4.x correction to man page path.  From J. P. McCann
4663065a643dSPeter Wemm			of E I A.
46642e43090eSPeter Wemm		System V Rel 5.x (a.k.a UnixWare7 w/o BSD-Compatibility Libs)
4665065a643dSPeter Wemm			from Paul Gampe of the Asia Pacific Network
4666065a643dSPeter Wemm			Information Center.
4667065a643dSPeter Wemm		ULTRIX now requires an optimization limit of 970 from
4668065a643dSPeter Wemm			Allan E Johannesen of Worcester Polytechnic
4669065a643dSPeter Wemm			Institute.
4670065a643dSPeter Wemm		Fix extern declaration for sm_dopr().  Fix from Henk
4671065a643dSPeter Wemm			van Oers of Algemeen Nederlands Persbureau.
4672065a643dSPeter Wemm	CONFIG: Catch @hostname,user@anotherhost.domain as relaying.
4673065a643dSPeter Wemm		Problem noted by Mark Rogov of AirMedia, Inc.  Fix from
4674065a643dSPeter Wemm		Claus Assmann of Christian-Albrechts-University of Kiel.
4675065a643dSPeter Wemm	CONFIG: Do not refer to http://maps.vix.com/ on RBL rejections as
4676065a643dSPeter Wemm		there are multiple RBL's available and the MAPS RBL may
4677065a643dSPeter Wemm		not be the one in use.  Suggested by Alan Brown of
4678065a643dSPeter Wemm		Manawatu Internet Services.
467906f25ae9SGregory Neil Shapiro	CONFIG: Properly strip route addresses (i.e., @host1:user@host2)
4680065a643dSPeter Wemm		when stripping down a recipient address to check for
4681065a643dSPeter Wemm		relaying.  Patch from Claus Assmann of
4682065a643dSPeter Wemm		Christian-Albrechts-University of Kiel and Neil W Rickert
4683065a643dSPeter Wemm		of Northern Illinois University.
4684065a643dSPeter Wemm	CONFIG: Allow the access database to override RBL lookups.  Patch
4685065a643dSPeter Wemm		from Claus Assmann of Christian-Albrechts-University of
4686065a643dSPeter Wemm		Kiel.
4687065a643dSPeter Wemm	CONFIG: UnixWare 7 support from Phillip P. Porch of The Porch
4688065a643dSPeter Wemm		Dot Com.
4689065a643dSPeter Wemm	CONFIG: Fixed check for deferred delivery mode warning.  Patch
4690065a643dSPeter Wemm		from Claus Assmann of Christian-Albrechts-University of
4691065a643dSPeter Wemm		Kiel and Per Hedeland of Ericsson.
4692065a643dSPeter Wemm	CONFIG: If a recipient using % addressing is used, e.g.
4693065a643dSPeter Wemm		user%site@othersite, and othersite's MX records are now
4694065a643dSPeter Wemm		checked for local hosts if FEATURE(relay_based_on_MX) is
4695065a643dSPeter Wemm		used.  Problem noted by Alexander Litvin of Lucky Net Ltd.
4696065a643dSPeter Wemm		Patch from Alexander Litvin of Lucky Net Ltd and
4697065a643dSPeter Wemm		Claus Assmann of Christian-Albrechts-University of Kiel.
4698065a643dSPeter Wemm	MAIL.LOCAL: Prevent warning messages from appearing in the LMTP
4699065a643dSPeter Wemm		stream.  Do not allow more than one response per recipient.
4700065a643dSPeter Wemm	MAIL.LOCAL: Handle routed addresses properly when using LMTP.  Fix
4701065a643dSPeter Wemm		from John Beck of Sun Microsystems.
4702065a643dSPeter Wemm	MAIL.LOCAL: Properly check for CRLF when using LMTP.  Fix from
4703065a643dSPeter Wemm		John Beck of Sun Microsystems.
4704065a643dSPeter Wemm	MAIL.LOCAL: Substitute MAILER-DAEMON for the LMTP empty sender in
4705065a643dSPeter Wemm		the envelope From header.
4706065a643dSPeter Wemm	MAIL.LOCAL: Accept underscores in hostnames in LMTP mode.
4707065a643dSPeter Wemm		Problem noted by Glenn A. Malling of Syracuse University.
4708065a643dSPeter Wemm	MAILSTATS: Document msgsrej and msgsdis fields in the man page.
4709065a643dSPeter Wemm		Problem noted by Richard Wong of Princeton University.
4710065a643dSPeter Wemm	MAKEMAP: Build group list so group writable files are allowed with
4711065a643dSPeter Wemm		the -s flag.  Problem noted by Curt Sampson of Internet
4712065a643dSPeter Wemm		Portal Services, Inc.
4713065a643dSPeter Wemm	PRALIASES: Automatically handle alias files created without the
4714065a643dSPeter Wemm		NULL byte at the end of the key.  Patch from John Beck of
4715065a643dSPeter Wemm		Sun Microsystems.
4716065a643dSPeter Wemm	PRALIASES: Support Berkeley DB 2.6.4 API change.
4717065a643dSPeter Wemm	New Files:
4718065a643dSPeter Wemm		BuildTools/OS/IRIX64.6.5
4719065a643dSPeter Wemm		BuildTools/OS/UnixWare.5.i386
472006f25ae9SGregory Neil Shapiro		cf/ostype/unixware7.m4
4721065a643dSPeter Wemm		contrib/smcontrol.pl
4722065a643dSPeter Wemm		src/control.c
4723065a643dSPeter Wemm
472406f25ae9SGregory Neil Shapiro8.9.1/8.9.1	1998/07/02
4725c2aa98e2SPeter Wemm	If both an OS specific site configuration file and a generic
4726c2aa98e2SPeter Wemm		site.config.m4 file existed, only the latter was used
4727c2aa98e2SPeter Wemm		instead of both.  Problem noted by Geir Johannessen of
4728c2aa98e2SPeter Wemm		the Norwegian University of Science and Technology.
4729c2aa98e2SPeter Wemm	Fix segmentation fault while converting 8 bit to 7 bit MIME
4730c2aa98e2SPeter Wemm		multipart messages by trying to write to an unopened
4731c2aa98e2SPeter Wemm		file descriptor.  Fix from Kari Hurtta of the Finnish
4732c2aa98e2SPeter Wemm		Meteorological Institute.
4733c2aa98e2SPeter Wemm	Do not assume Message: and Text: headers indicate the end of
4734c2aa98e2SPeter Wemm		the header area when parsing MIME headers.  Problem noted
4735c2aa98e2SPeter Wemm		by Kari Hurtta of the Finnish Meteorological Institute.
4736c2aa98e2SPeter Wemm	Setting the confMAN#SRC Build variable would only effect the
4737c2aa98e2SPeter Wemm		installation commands.  The man pages would still be
4738c2aa98e2SPeter Wemm		built with .0 extensions.  Problem noted by Bryan
4739c2aa98e2SPeter Wemm		Costales of InfoBeat, Inc.
4740c2aa98e2SPeter Wemm	Installation of manual pages didn't honor the DESTDIR environment
4741c2aa98e2SPeter Wemm		variable.  Problem noted by Bryan Costales of InfoBeat, Inc.
4742c2aa98e2SPeter Wemm	If the check_relay ruleset resolved to the discard mailer, messages
4743c2aa98e2SPeter Wemm		were still delivered.  Problem noted by Mirek Luc of NASK.
4744c2aa98e2SPeter Wemm	Mail delivery to files would fail with an Operating System Error
474506f25ae9SGregory Neil Shapiro		if sendmail was not running as root, i.e., RunAsUser was set.
4746c2aa98e2SPeter Wemm		Problem noted by Leonard N. Zubkoff of Dandelion Digital.
4747c2aa98e2SPeter Wemm	Prevent MinQueueAge from interfering from queued items created
474806f25ae9SGregory Neil Shapiro		in the future, i.e., if the system clock was set ahead
4749c2aa98e2SPeter Wemm		and then back.  Problem noted by Michael Miller of the
4750c2aa98e2SPeter Wemm		University of Natal, Pietermaritzburg.
4751c2aa98e2SPeter Wemm	Do not advertise ETRN support in ESTMP EHLO reply if noetrn is
47522e43090eSPeter Wemm		set in the PrivacyOptions option.  Fix from Ted Rule of
4753c2aa98e2SPeter Wemm		Flextech TV.
4754c2aa98e2SPeter Wemm	Log invalid persistent host status file lines instead of
4755c2aa98e2SPeter Wemm		bouncing the message.  Problem noted by David Lindes of
4756c2aa98e2SPeter Wemm		DaveLtd Enterprises.
4757c2aa98e2SPeter Wemm	Move creation of empty sendmail.st file from installation to
4758c2aa98e2SPeter Wemm		compilation.  Installation may be done from a read-only
4759c2aa98e2SPeter Wemm		mount.  Fix from Bryan Costales of InfoBeat, Inc. and Ric
4760c2aa98e2SPeter Wemm		Anderson of the Oasis Research Center, Inc.
4761c2aa98e2SPeter Wemm	Enforce the maximum number of User Database entries limit.  Problem
4762c2aa98e2SPeter Wemm		noted by Gary Buchanan of Credence Systems Inc.
4763c2aa98e2SPeter Wemm	Allow dead.letter files in root's home directory.  Problem noted
4764c2aa98e2SPeter Wemm		by Anna Ullman of Sun Microsystems.
4765c2aa98e2SPeter Wemm	Program deliveries in forward files could be marked unsafe if
4766c2aa98e2SPeter Wemm		any directory listed in the ForwardPath option did not
4767c2aa98e2SPeter Wemm		exist.  Problem noted by Jorg Bielak of Coastal Web Online.
4768c2aa98e2SPeter Wemm	Do not trust the length of the address structure returned by
4769c2aa98e2SPeter Wemm		gethostbyname().  Problem noted by Chris Evans of Oxford
4770c2aa98e2SPeter Wemm		University.
4771c2aa98e2SPeter Wemm	If the SIZE= MAIL From: ESMTP parameter is too large, use the
4772c2aa98e2SPeter Wemm		5.3.4 DSN status code instead of 5.2.2.  Similarly, for
4773c2aa98e2SPeter Wemm		non-local deliveries, if the message is larger than the
4774c2aa98e2SPeter Wemm		mailer maximum message size, use 5.3.4 instead of 5.2.3.
4775c2aa98e2SPeter Wemm		Suggested by Antony Bowesman of
4776c2aa98e2SPeter Wemm		Fujitsu/TeaWARE Mail/MIME System.
4777c2aa98e2SPeter Wemm	Portability:
4778c2aa98e2SPeter Wemm		Fix the check for an IP address reverse lookup for
4779c2aa98e2SPeter Wemm			use in $&{client_name} on 64 bit platforms.
4780c2aa98e2SPeter Wemm			From Gilles Gallot of Institut for Development
4781c2aa98e2SPeter Wemm			and Resources in Intensive Scientific computing.
4782c2aa98e2SPeter Wemm		BSD-OS uses .0 for man page extensions.  From Jeff Polk
4783c2aa98e2SPeter Wemm			of BSDI.
4784c2aa98e2SPeter Wemm		DomainOS detection for Build.  Also, version 10.4 and later
4785c2aa98e2SPeter Wemm			ship a unistd.h.  Fixes from Takanobu Ishimura of
4786c2aa98e2SPeter Wemm			PICT Inc.
4787c2aa98e2SPeter Wemm		NeXT 4.x uses /usr/lib/man/cat for its man pages.  From
4788c2aa98e2SPeter Wemm			J. P. McCann of E I A.
4789c2aa98e2SPeter Wemm		SCO 4.X and 5.X include NDBM support.  From Vlado Potisk
4790c2aa98e2SPeter Wemm			of TEMPEST, Ltd.
4791c2aa98e2SPeter Wemm	CONFIG: Do not pass spoofed PTR results through resolver for
4792c2aa98e2SPeter Wemm		qualification.  Problem noted by Michiel Boland of
4793c2aa98e2SPeter Wemm		Digital Valley Internet Professionals; fix from
4794c2aa98e2SPeter Wemm		Kari Hurtta of the Finnish Meteorological Institute.
4795c2aa98e2SPeter Wemm	CONFIG: Do not try to resolve non-DNS hostnames such as UUCP,
4796c2aa98e2SPeter Wemm		BITNET, and DECNET addresses for resolvable senders.
4797c2aa98e2SPeter Wemm		Problem noted by Alexander Litvin of Lucky Net Ltd.
4798c2aa98e2SPeter Wemm	CONFIG: Work around Sun's broken configuration which sends bounce
4799c2aa98e2SPeter Wemm		messages as coming from @@hostname instead of <>.  LMTP
4800c2aa98e2SPeter Wemm		would not accept @@hostname.
4801c2aa98e2SPeter Wemm	OP.ME: Corrections to complex sendmail startup script from Rick
4802c2aa98e2SPeter Wemm		Troxel of the National Institutes of Health.
4803c2aa98e2SPeter Wemm	RMAIL: Do not install rmail by default, require 'make force-install'
4804c2aa98e2SPeter Wemm		as this rmail isn't the same as others.  Suggested by
4805c2aa98e2SPeter Wemm		Kari Hurtta of the Finnish Meteorological Institute.
4806065a643dSPeter Wemm	New Files:
4807065a643dSPeter Wemm		BuildTools/OS/DomainOS.10.4
4808c2aa98e2SPeter Wemm
480906f25ae9SGregory Neil Shapiro8.9.0/8.9.0	1998/05/19
4810c2aa98e2SPeter Wemm	SECURITY: To prevent users from reading files not normally
4811c2aa98e2SPeter Wemm		readable, sendmail will no longer open forward, :include:,
4812c2aa98e2SPeter Wemm		class, ErrorHeader, or HelpFile files located in unsafe
481306f25ae9SGregory Neil Shapiro		(i.e., group or world writable) directory paths.  Sites
4814c2aa98e2SPeter Wemm		which need the ability to override security can use the
4815c2aa98e2SPeter Wemm		DontBlameSendmail option.  See the README file for more
4816c2aa98e2SPeter Wemm		information.
4817c2aa98e2SPeter Wemm	SECURITY: Problems can occur on poorly managed systems, specifically,
4818c2aa98e2SPeter Wemm		if maps or alias files are in world writable directories.
4819c2aa98e2SPeter Wemm		This fixes the change added to 8.8.6 to prevent links in these
4820c2aa98e2SPeter Wemm		world writable directories.
4821c2aa98e2SPeter Wemm	SECURITY: Make sure ServiceSwitchFile option file is not a link if
4822c2aa98e2SPeter Wemm		it is in a world writable directory.
4823c2aa98e2SPeter Wemm	SECURITY: Never pass a tty to a mailer -- if a mailer can get at the
4824c2aa98e2SPeter Wemm		tty it may be able to push bytes back to the senders input.
4825c2aa98e2SPeter Wemm		Unfortunately this breaks -v mode.  Problem noted by
4826c2aa98e2SPeter Wemm		Wietse Venema of the Global Security Analysis Lab at
4827c2aa98e2SPeter Wemm		IBM T.J. Watson Research.
4828c2aa98e2SPeter Wemm	SECURITY: Empty group list if DontInitGroups is set to true to
4829c2aa98e2SPeter Wemm		prevent program deliveries from picking up extra group
4830c2aa98e2SPeter Wemm		privileges.  Problem reported by Wolfgang Ley of DFN-CERT.
4831c2aa98e2SPeter Wemm	SECURITY: The default value for DefaultUser is now set to the uid and
4832c2aa98e2SPeter Wemm		gid of the first existing user mailnull, sendmail, or daemon
4833c2aa98e2SPeter Wemm		that has a non-zero uid.  If none of these exist, sendmail
4834c2aa98e2SPeter Wemm		reverts back to the old behavior of using uid 1 and gid 1.
4835c2aa98e2SPeter Wemm		This is a security problem for Linux which has chosen that
4836c2aa98e2SPeter Wemm		uid and gid for user bin instead of daemon.  If DefaultUser
4837c2aa98e2SPeter Wemm		is set in the configuration file, that value overrides this
4838c2aa98e2SPeter Wemm		default.
483940266059SGregory Neil Shapiro	SECURITY: Since 8.8.7, the check for non-set-user-ID binaries
4840c2aa98e2SPeter Wemm		interfered with setting an alternate group id for the
4841c2aa98e2SPeter Wemm		RunAsUser option.  Problem noted by Randall Winchester of
4842c2aa98e2SPeter Wemm		the University of Maryland.
4843c2aa98e2SPeter Wemm	Add support for Berkeley DB 2.X.  Based on patch from John Kennedy
4844c2aa98e2SPeter Wemm		of Cal State University, Chico.
4845c2aa98e2SPeter Wemm	Remove support for OLD_NEWDB (pre-1.5 version of Berkeley DB).  Users
4846c2aa98e2SPeter Wemm		which previously defined OLD_NEWDB=1 must now upgrade to the
4847c2aa98e2SPeter Wemm		current version of Berkeley DB.
4848c2aa98e2SPeter Wemm	Added support for regular expressions using the new map class regex.
4849c2aa98e2SPeter Wemm		From Jan Krueger of Unix-AG of University of Hannover.
4850c2aa98e2SPeter Wemm	Support for BIND 8.1.1's hesiod for hesiod maps and hesiod
4851c2aa98e2SPeter Wemm		UserDatabases from Randall Winchester of the University
4852c2aa98e2SPeter Wemm		of Maryland.
4853c2aa98e2SPeter Wemm	Allow any shell for user shell on program deliveries on V1
4854c2aa98e2SPeter Wemm		configurations for backwards compatibility on machines which
4855c2aa98e2SPeter Wemm		do not have getusershell().  Fix from John Beck of Sun
4856c2aa98e2SPeter Wemm		Microsystems.
4857c2aa98e2SPeter Wemm	On operating systems which change the process title by reusing the
4858c2aa98e2SPeter Wemm		argument vector memory, sendmail could corrupt memory if the
4859c2aa98e2SPeter Wemm		last argument was either "-q" or "-d".  Problem noted by
4860c2aa98e2SPeter Wemm		Frank Langbein of the University of Stuttgart.
4861c2aa98e2SPeter Wemm	Support Local Mail Transfer Protocol (LMTP) between sendmail and
4862c2aa98e2SPeter Wemm		mail.local on the F=z flag.
4863c2aa98e2SPeter Wemm	Macro-expand the contents of the ErrMsgFile.  Previously this was
4864c2aa98e2SPeter Wemm		only done if you had magic characters (0x81) to indicate
4865c2aa98e2SPeter Wemm		macro expansion.  Now $x will be expanded.  This means that
4866c2aa98e2SPeter Wemm		real dollar signs have to be backslash escaped.
4867c2aa98e2SPeter Wemm	TCP Wrappers expects "unknown" in the hostname argument if the
4868c2aa98e2SPeter Wemm		reverse DNS lookup for the incoming connection fails.
4869c2aa98e2SPeter Wemm		Problem noted by Randy Grimshaw of Syracuse University and
4870c2aa98e2SPeter Wemm		Wietse Venema of the Global Security Analysis Lab at
4871c2aa98e2SPeter Wemm		IBM T.J. Watson Research.
4872c2aa98e2SPeter Wemm	DSN success bounces generated from an invocation of sendmail -t
4873c2aa98e2SPeter Wemm		would be sent to both the sender and MAILER-DAEMON.
4874c2aa98e2SPeter Wemm		Problem noted by Claus Assmann of
4875c2aa98e2SPeter Wemm		Christian-Albrechts-University of Kiel.
4876c2aa98e2SPeter Wemm	Avoid "Error 0" messages on delivery mailers which exit with a
4877c2aa98e2SPeter Wemm		valid exit value such as EX_NOPERM.  Fix from Andreas Luik
4878c2aa98e2SPeter Wemm		of ISA Informationssysteme GmbH.
4879c2aa98e2SPeter Wemm	Tokenize $&x expansions on right hand side of rules.  This eliminates
4880c2aa98e2SPeter Wemm		the need to use tricks like $(dequote "" $&{client_name} $)
4881c2aa98e2SPeter Wemm		to cause the ${client_name} macro to be properly tokenized.
4882c2aa98e2SPeter Wemm	Add the MaxRecipientsPerMessage option: this limits the number of
4883c2aa98e2SPeter Wemm		recipients that will be accepted in a single SMTP
4884c2aa98e2SPeter Wemm		transaction.  After this number is reached, sendmail
4885c2aa98e2SPeter Wemm		starts returning "452 Too many recipients" to all RCPT
4886c2aa98e2SPeter Wemm		commands.  This can be used to limit the number of recipients
4887c2aa98e2SPeter Wemm		per envelope (in particular, to discourage use of the server
4888c2aa98e2SPeter Wemm		for spamming).  Note: a better approach is to restrict
4889c2aa98e2SPeter Wemm		relaying entirely.
4890c2aa98e2SPeter Wemm	Fixed pointer initialization for LDAP lmap struct, fixed -s option
4891c2aa98e2SPeter Wemm		to ldapx map and added timeout for ldap_open call to
4892c2aa98e2SPeter Wemm		avoid hanging sendmail in the event of hung LDAP servers.
4893c2aa98e2SPeter Wemm		Patch from Booker Bense of Stanford University.
4894c2aa98e2SPeter Wemm	Allow multiple -qI, -qR, or -qS queue run limiters.  For example,
4895c2aa98e2SPeter Wemm		'-qRfoo -qRbar' would deliver mail to recipients with foo or
4896c2aa98e2SPeter Wemm		bar in their address.  Patch from Allan E Johannesen of
4897c2aa98e2SPeter Wemm		Worcester Polytechnic Institute.
4898c2aa98e2SPeter Wemm	The bestmx map will now return a list of the MX servers for a host if
4899c2aa98e2SPeter Wemm		passed a column delimiter via the -z map flag.  This can be
4900c2aa98e2SPeter Wemm		used to check if the server is an MX server for the recipient
4901c2aa98e2SPeter Wemm		of a message.  This can be used to help prevent relaying.
4902c2aa98e2SPeter Wemm		Patch from Mitchell Blank Jr of Exec-PC.
4903c2aa98e2SPeter Wemm	Mark failures for the *file* mailer and return bounce messages to the
4904c2aa98e2SPeter Wemm		sender for those failures.
4905c2aa98e2SPeter Wemm	Prevent bogus syslog timestamps on errors in sendmail.cf by
4906c2aa98e2SPeter Wemm		preserving the TZ environment variable until TimeZoneSpec
4907c2aa98e2SPeter Wemm		has been determined.  Problem noted by Ralf Hildebrandt of
4908c2aa98e2SPeter Wemm		Technical University of Braunschweig.  Patch from Per Hedeland
4909c2aa98e2SPeter Wemm		of Ericsson.
4910c2aa98e2SPeter Wemm	Print test input in address test mode when input is not from the tty
491106f25ae9SGregory Neil Shapiro		when the -v flag is given (i.e., sendmail -bt -v) to make
4912c2aa98e2SPeter Wemm		output easier to decipher.  Problem noted by Aidan Nichol
4913c2aa98e2SPeter Wemm		of Procter & Gamble.
4914c2aa98e2SPeter Wemm	The LDAP map -s flag was not properly parsed and the error message
4915c2aa98e2SPeter Wemm		given included the remainder of the arguments instead of
4916c2aa98e2SPeter Wemm		solely the argument in error.  Problem noted by Aidan Nichol
4917c2aa98e2SPeter Wemm		of Procter & Gamble.
4918c2aa98e2SPeter Wemm	New DontBlameSendmail option.  This option allows administrators to
4919c2aa98e2SPeter Wemm		bypass some of sendmail's file security checks at the expense
4920c2aa98e2SPeter Wemm		of system security.  This should only be used if you are
4921c2aa98e2SPeter Wemm		absolutely sure you know the consequences.  The available
4922c2aa98e2SPeter Wemm		DontBlameSendmail options are:
4923c2aa98e2SPeter Wemm			Safe
4924c2aa98e2SPeter Wemm			AssumeSafeChown
4925c2aa98e2SPeter Wemm			ClassFileInUnsafeDirPath
4926c2aa98e2SPeter Wemm			ErrorHeaderInUnsafeDirPath
4927c2aa98e2SPeter Wemm			GroupWritableDirPathSafe
4928c2aa98e2SPeter Wemm			GroupWritableForwardFileSafe
4929c2aa98e2SPeter Wemm			GroupWritableIncludeFileSafe
4930c2aa98e2SPeter Wemm			GroupWritableAliasFile
4931c2aa98e2SPeter Wemm			HelpFileinUnsafeDirPath
4932c2aa98e2SPeter Wemm			WorldWritableAliasFile
4933c2aa98e2SPeter Wemm			ForwardFileInGroupWritableDirPath
4934c2aa98e2SPeter Wemm			IncludeFileInGroupWritableDirPath
4935c2aa98e2SPeter Wemm			ForwardFileInUnsafeDirPath
4936c2aa98e2SPeter Wemm			IncludeFileInUnsafeDirPath
4937c2aa98e2SPeter Wemm			ForwardFileInUnsafeDirPathSafe
4938c2aa98e2SPeter Wemm			IncludeFileInUnsafeDirPathSafe
4939c2aa98e2SPeter Wemm			MapInUnsafeDirPath
4940c2aa98e2SPeter Wemm			LinkedAliasFileInWritableDir
4941c2aa98e2SPeter Wemm			LinkedClassFileInWritableDir
4942c2aa98e2SPeter Wemm			LinkedForwardFileInWritableDir
4943c2aa98e2SPeter Wemm			LinkedIncludeFileInWritableDir
4944c2aa98e2SPeter Wemm			LinkedMapInWritableDir
4945c2aa98e2SPeter Wemm			LinkedServiceSwitchFileInWritableDir
4946c2aa98e2SPeter Wemm			FileDeliveryToHardLink
4947c2aa98e2SPeter Wemm			FileDeliveryToSymLink
4948c2aa98e2SPeter Wemm			WriteMapToHardLink
4949c2aa98e2SPeter Wemm			WriteMapToSymLink
4950c2aa98e2SPeter Wemm			WriteStatsToHardLink
4951c2aa98e2SPeter Wemm			WriteStatsToSymLink
4952c2aa98e2SPeter Wemm			RunProgramInUnsafeDirPath
4953c2aa98e2SPeter Wemm			RunWritableProgram
4954c2aa98e2SPeter Wemm	New DontProbeInterfaces option to turn off the inclusion of all the
4955c2aa98e2SPeter Wemm		interface names in $=w on startup.  In particular, if you
4956c2aa98e2SPeter Wemm		have lots of virtual interfaces, this option will speed up
4957c2aa98e2SPeter Wemm		startup.  However, unless you make other arrangements, mail
4958c2aa98e2SPeter Wemm		sent to those addresses will be bounced.
4959c2aa98e2SPeter Wemm	Automatically create alias databases if they don't exist and
4960c2aa98e2SPeter Wemm		AutoRebuildAliases is set.
4961c2aa98e2SPeter Wemm	Add PrivacyOptions=noetrn flag to disable the SMTP ETRN command.
4962c2aa98e2SPeter Wemm		Suggested by Christophe Wolfhugel of the Institut Pasteur.
4963c2aa98e2SPeter Wemm	Add PrivacyOptions=noverb flag to disable the SMTP VERB command.
4964c2aa98e2SPeter Wemm	When determining the client host name ($&{client_name} macro), do
4965c2aa98e2SPeter Wemm		a forward (A) DNS lookup on the result of the PTR lookup
4966c2aa98e2SPeter Wemm		and compare results.  If they differ or if the PTR lookup
4967c2aa98e2SPeter Wemm		fails, &{client_name} will contain the IP address
496806f25ae9SGregory Neil Shapiro		surrounded by square brackets (e.g., [127.0.0.1]).
4969c2aa98e2SPeter Wemm	New map flag: -Tx appends "x" to lookups that return temporary failure
4970c2aa98e2SPeter Wemm		(i.e, it is like -ax for the temporary failure case, in
4971c2aa98e2SPeter Wemm		contrast to the success case).
4972c2aa98e2SPeter Wemm	New syntax to do limited checking of header syntax.  A config line
4973c2aa98e2SPeter Wemm		of the form:
4974c2aa98e2SPeter Wemm			HHeader: $>Ruleset
4975c2aa98e2SPeter Wemm		causes the indicated Ruleset to be invoked on the Header
4976c2aa98e2SPeter Wemm		when read.  This ruleset works like the check_* rulesets --
4977c2aa98e2SPeter Wemm		that is, it can reject mail on the basis of the contents.
4978c2aa98e2SPeter Wemm	Limit the size of the HELO/EHLO parameter to prevent spammers
4979c2aa98e2SPeter Wemm		from hiding their connection information in Received:
4980c2aa98e2SPeter Wemm		headers.
4981c2aa98e2SPeter Wemm	When SingleThreadDelivery is active, deliveries to locked hosts
4982c2aa98e2SPeter Wemm		are skipped.  This will cause the delivering process to
4983c2aa98e2SPeter Wemm		try the next MX host or queue the message if no other MX
4984c2aa98e2SPeter Wemm		hosts are available.  Suggested by Alexander Litvin.
4985c2aa98e2SPeter Wemm	The [FILE] mailer type now delivers to the file specified in the
4986c2aa98e2SPeter Wemm		A= equate of the mailer definition instead of $u.  It also
4987c2aa98e2SPeter Wemm		obeys all of the F= mailer flags such as the MIME
4988c2aa98e2SPeter Wemm		7/8 bit conversion flags.  This is useful for defining
4989c2aa98e2SPeter Wemm		a mailer which delivers to the same file regardless of the
499006f25ae9SGregory Neil Shapiro		recipient (e.g., 'A=FILE /dev/null' to discard unwanted mail).
4991c2aa98e2SPeter Wemm	Do not assume the identity of a remote connection is root@localhost
4992c2aa98e2SPeter Wemm		if the remote connection closes the socket before the
4993c2aa98e2SPeter Wemm		remote identity can be queried.
4994c2aa98e2SPeter Wemm	Change semantics of the F=S mailer flag back to 8.7.5 behavior.
4995c2aa98e2SPeter Wemm		Some mailers, including procmail, require that the real
4996c2aa98e2SPeter Wemm		uid is left unchanged by sendmail.  Problem noted by Per
4997c2aa98e2SPeter Wemm		Hedeland of Ericsson.
4998c2aa98e2SPeter Wemm	No longer is the src/obj*/Makefile selected from a large list -- it
4999c2aa98e2SPeter Wemm		is now generated using the information in BuildTools/OS/ --
5000c2aa98e2SPeter Wemm		some of the details are determined dynamically via
5001c2aa98e2SPeter Wemm		BuildTools/bin/configure.sh.
5002c2aa98e2SPeter Wemm	The other programs in the sendmail distribution -- mail.local,
5003c2aa98e2SPeter Wemm		mailstats, makemap, praliases, rmail, and smrsh -- now use
5004c2aa98e2SPeter Wemm		the new Build method which creates an operating system
5005c2aa98e2SPeter Wemm		specific Makefile using the information in BuildTools.
5006c2aa98e2SPeter Wemm	Make 4xx reply codes to the SMTP MAIL command be non-sticky (i.e.,
5007c2aa98e2SPeter Wemm		a failure on one message won't affect future messages to the
5008c2aa98e2SPeter Wemm		same host).  This is necessary if the remote host sends
5009c2aa98e2SPeter Wemm		a 451 error if the domain of the sender does not resolve
5010c2aa98e2SPeter Wemm		as is common in anti-spam configurations.  Problem noted
5011c2aa98e2SPeter Wemm		by Mitchell Blank Jr of Exec-PC.
5012c2aa98e2SPeter Wemm	New "discard" mailer for check_* rulesets and header checking
5013c2aa98e2SPeter Wemm		rulesets.  If one of the above rulesets resolves to the
5014c2aa98e2SPeter Wemm		$#discard mailer, the commands will be accepted but the
5015c2aa98e2SPeter Wemm		message will be completely discarded after it is accepting.
5016c2aa98e2SPeter Wemm		This means that even if only one of the recipients
5017c2aa98e2SPeter Wemm		resolves to the $#discard mailer, none of the recipients
5018c2aa98e2SPeter Wemm		will receive the mail.  Suggested by Brian Kantor.
5019c2aa98e2SPeter Wemm	All but the last cloned envelope of a split envelope were queued
5020c2aa98e2SPeter Wemm		instead of being delivered.  Problem noted by John Caruso
5021c2aa98e2SPeter Wemm		of CNET: The Computer Network.
5022c2aa98e2SPeter Wemm	Fix deadlock situation in persistent host status file locking.
5023c2aa98e2SPeter Wemm	Syslog an error if a user forward file could not be read due to
5024c2aa98e2SPeter Wemm		an error.  Patch from John Beck of Sun Microsystems.
5025c2aa98e2SPeter Wemm	Use the first name returned on machine lookups when canonifying a
5026c2aa98e2SPeter Wemm		hostname via NetInfo.  Patch from Timm Wetzel of GWDG.
5027c2aa98e2SPeter Wemm	Clear the $&{client_addr}, $&{client_name}, and $&{client_port}
5028c2aa98e2SPeter Wemm		macros when delivering a bounce message to prevent
5029c2aa98e2SPeter Wemm		rejection by a check_compat ruleset which uses these macros.
5030c2aa98e2SPeter Wemm		Problem noted by Jens Hamisch of AgiX Internetservices GmbH.
5031c2aa98e2SPeter Wemm	If the check_relay ruleset resolves to the the error mailer, the
5032c2aa98e2SPeter Wemm		error in the $: portion of the resolved triplet is used
5033c2aa98e2SPeter Wemm		in the rejection message given to the remote machine.
5034c2aa98e2SPeter Wemm		Suggested by Scott Gifford of The Internet Ramp.
5035c2aa98e2SPeter Wemm	Set the $&{client_addr}, $&{client_name}, and $&{client_port} macros
5036c2aa98e2SPeter Wemm		before calling the check_relay ruleset.  Suggested by Scott
5037c2aa98e2SPeter Wemm		Gifford of The Internet Ramp.
5038c2aa98e2SPeter Wemm	Sendmail would get a segmentation fault if a mailer exited with an
5039c2aa98e2SPeter Wemm		exit code of 79.  Problem noted by Aaron Schrab of ExecPC
5040c2aa98e2SPeter Wemm		Internet.  Fix from Christophe Wolfhugel of the Pasteur
5041c2aa98e2SPeter Wemm		Institute.
5042c2aa98e2SPeter Wemm	Separate snprintf/vsnprintf routines into separate file for use by
5043c2aa98e2SPeter Wemm		mail.local.
5044c2aa98e2SPeter Wemm	Allow multiple map lookups on right hand side, e.g.,
5045c2aa98e2SPeter Wemm		R$*	$( host $1 $) $| $( passwd $1 $).  Patch from
5046c2aa98e2SPeter Wemm		Christophe Wolfhugel of the Pasteur Institute.
5047c2aa98e2SPeter Wemm	Properly generate success DSN messages if requested for aliases
5048c2aa98e2SPeter Wemm		which have owner- aliases.  Problem noted by Kari Hurtta
5049c2aa98e2SPeter Wemm		of the Finnish Meteorological Institute.
5050c2aa98e2SPeter Wemm	Properly display delayed-expansion macros ($&{macroname}) in
5051c2aa98e2SPeter Wemm		address test mode (-bt).  Problem noted by Bryan Costales
5052c2aa98e2SPeter Wemm		of InfoBeat, Inc.
5053c2aa98e2SPeter Wemm	-qR could sometimes match names incorrectly.  Problem noted by
5054c2aa98e2SPeter Wemm		Lutz Euler of Lavielle EDV Systemberatung GmbH & Co.
5055c2aa98e2SPeter Wemm	Include a magic number and version in the StatusFile for the
5056c2aa98e2SPeter Wemm		mailstats command.
5057c2aa98e2SPeter Wemm	Record the number of rejected and discarded messages in the
5058c2aa98e2SPeter Wemm		StatusFile for display by the mailstats command.  Patch
5059c2aa98e2SPeter Wemm		from Randall Winchester of the University of Maryland.
5060c2aa98e2SPeter Wemm	IDENT returns where the OSTYPE field equals "OTHER" now list the
5061c2aa98e2SPeter Wemm		user portion as IDENT:username@site instead of
5062c2aa98e2SPeter Wemm		username@site to differentiate the two.  Suggested by
5063c2aa98e2SPeter Wemm		Kari Hurtta of the Finnish Meteorological Institute.
5064c2aa98e2SPeter Wemm	Enforce timeout for LDAP queries.  Patch from Per Hedeland of
5065c2aa98e2SPeter Wemm		Ericsson.
5066c2aa98e2SPeter Wemm	Change persistent host status filename substitution so '/' is
5067c2aa98e2SPeter Wemm		replaced by ':' instead of '|' to avoid clashes.  Also
5068c2aa98e2SPeter Wemm		avoid clashes with hostnames with leading dots.  Fix from
5069c2aa98e2SPeter Wemm		Mitchell Blank Jr. of Exec-PC.
5070c2aa98e2SPeter Wemm	If the system lock table is full, only attempt to create a new
5071c2aa98e2SPeter Wemm		queue entry five times before giving up.  Previously, it
5072c2aa98e2SPeter Wemm		was attempted indefinitely which could cause the partition
5073c2aa98e2SPeter Wemm		to run out of inodes.  Problem noted by Suzie Weigand of
5074c2aa98e2SPeter Wemm		Stratus Computer, Inc.
5075c2aa98e2SPeter Wemm	In verbose mode, warn if the sendmail.cf version is less than the
5076c2aa98e2SPeter Wemm		currently supported version.
5077c2aa98e2SPeter Wemm	Sorting for QueueSortOrder=host is now case insensitive.  Patch
5078c2aa98e2SPeter Wemm		from Randall S. Winchester of the University of Maryland.
5079c2aa98e2SPeter Wemm	Properly quote a full name passed via the -F command line option,
5080c2aa98e2SPeter Wemm		the Full-Name: header, or the NAME environment variable if
5081c2aa98e2SPeter Wemm		it contains characters which must be quoted.  Problem noted
5082c2aa98e2SPeter Wemm		by Kari Hurtta of the Finnish Meteorological Institute.
5083c2aa98e2SPeter Wemm	Avoid possible race condition that unlocked a mail job before
5084c2aa98e2SPeter Wemm		releasing the transcript file on systems that use flock(2).
5085c2aa98e2SPeter Wemm		In some cases, this might result in a "Transcript Unavailable"
5086c2aa98e2SPeter Wemm		message in error bounces.
5087c2aa98e2SPeter Wemm	Accept SMTP replies which contain only a reply code and no
5088c2aa98e2SPeter Wemm		accompanying text.  Problem noted by Fernando Fraticelli of
5089c2aa98e2SPeter Wemm		Digital Equipment Corporation.
5090c2aa98e2SPeter Wemm	Portability:
5091c2aa98e2SPeter Wemm		AIX 4.1 uses int for SOCKADDR_LEN_T from Motonori Nakamura
5092c2aa98e2SPeter Wemm			of Kyoto University.
5093c2aa98e2SPeter Wemm		AIX 4.2 requires <userpw.h> before <usersec.h>.  Patch from
5094c2aa98e2SPeter Wemm			Randall S. Winchester of the University of
5095c2aa98e2SPeter Wemm			Maryland.
5096c2aa98e2SPeter Wemm		AIX 4.3 from Valdis Kletnieks of Virginia Tech CNS.
5097c2aa98e2SPeter Wemm		CRAY T3E from Manu Mahonen of Center for Scientific Computing
5098c2aa98e2SPeter Wemm			in Finland.
5099c2aa98e2SPeter Wemm		Digital UNIX now uses statvfs for determining free
5100c2aa98e2SPeter Wemm			disk space.  Patch from Randall S. Winchester of
5101c2aa98e2SPeter Wemm			the University of Maryland.
5102c2aa98e2SPeter Wemm		HP-UX 11.x from Richard Allen of Opin Kerfi HF and
5103c2aa98e2SPeter Wemm			Regis McEwen of Progress Software Corporation.
5104c2aa98e2SPeter Wemm		IRIX 64 bit fixes from Kari Hurtta of the Finnish
5105c2aa98e2SPeter Wemm			Meteorological Institute.
5106c2aa98e2SPeter Wemm		IRIX 6.2 configuration fix for mail.local from Michael Kyle
5107c2aa98e2SPeter Wemm			of CIC/Advanced Computing Laboratory.
5108c2aa98e2SPeter Wemm		IRIX 6.5 from Thomas H Jones II of SGI.
5109c2aa98e2SPeter Wemm		IRIX 6.X load average code from Bob Mende of SGI.
5110c2aa98e2SPeter Wemm		QNX from Glen McCready <glen@qnx.com>.
5111c2aa98e2SPeter Wemm		SCO 4.2 and 5.x use /usr/bin instead of /usr/ucb for links
5112c2aa98e2SPeter Wemm			to sendmail.  Install with group bin instead of kmem
5113c2aa98e2SPeter Wemm			as kmem does not exist.  From Guillermo Freige of
5114c2aa98e2SPeter Wemm			Gobernacion de la Pcia de Buenos Aires and Paul
5115c2aa98e2SPeter Wemm			Fischer of BTG, Inc.
5116c2aa98e2SPeter Wemm		SunOS 4.X does not include memmove().  Patch from
5117c2aa98e2SPeter Wemm			Per Hedeland of Ericsson.
5118c2aa98e2SPeter Wemm		SunOS 5.7 includes getloadavg() function for determining
5119c2aa98e2SPeter Wemm			load average.  Patch from John Beck of Sun
5120c2aa98e2SPeter Wemm			Microsystems.
5121c2aa98e2SPeter Wemm	CONFIG: Increment version number of config file.
5122c2aa98e2SPeter Wemm	CONFIG: add DATABASE_MAP_TYPE to set the default type of database
5123c2aa98e2SPeter Wemm		map for the various maps.  The default is hash.  Patch from
5124c2aa98e2SPeter Wemm		Robert Harker of Harker Systems.
5125c2aa98e2SPeter Wemm	CONFIG: new confEBINDIR m4 variable for defining the executable
5126c2aa98e2SPeter Wemm		directory for certain programs.
5127c2aa98e2SPeter Wemm	CONFIG: new FEATURE(local_lmtp) to use the new LMTP support for
5128c2aa98e2SPeter Wemm		local mail delivery.  By the default, /usr/libexec/mail.local
5129c2aa98e2SPeter Wemm		is used.  This is expected to be the mail.local shipped
5130c2aa98e2SPeter Wemm		with 8.9 which is LMTP capable.  The path is based on the
5131c2aa98e2SPeter Wemm		new confEBINDIR m4 variable.
5132c2aa98e2SPeter Wemm	CONFIG: Use confEBINDIR in determining path to smrsh for
5133c2aa98e2SPeter Wemm		FEATURE(smrsh).  Note that this changes the default from
5134c2aa98e2SPeter Wemm		/usr/local/etc/smrsh to /usr/libexec/smrsh.  To obtain the
5135c2aa98e2SPeter Wemm		old path for smrsh, use FEATURE(smrsh, /usr/local/etc/smrsh).
5136c2aa98e2SPeter Wemm	CONFIG: DOMAIN(generic) changes the default confFORWARD_PATH to
5137c2aa98e2SPeter Wemm		include $z/.forward.$w+$h and $z/.forward+$h which allow
5138c2aa98e2SPeter Wemm		the user to setup different .forward files for
5139c2aa98e2SPeter Wemm		user+detail addressing.
5140c2aa98e2SPeter Wemm	CONFIG: add confMAX_RCPTS_PER_MESSAGE, confDONT_PROBE_INTERFACES,
5141c2aa98e2SPeter Wemm		and confDONT_BLAME_SENDMAIL to set MaxRecipientsPerMessage,
5142c2aa98e2SPeter Wemm		DontProbeInterfaces, and DontBlameSendmail options.
5143c2aa98e2SPeter Wemm	CONFIG: by default do not allow relaying (that is, accepting mail
5144c2aa98e2SPeter Wemm		from outside your domain and sending it to another host
5145c2aa98e2SPeter Wemm		outside your domain).
5146c2aa98e2SPeter Wemm	CONFIG: new FEATURE(promiscuous_relay) to allow mail relaying from
5147c2aa98e2SPeter Wemm		any site to any site.
5148c2aa98e2SPeter Wemm	CONFIG: new FEATURE(relay_entire_domain) allows any host in your
5149c2aa98e2SPeter Wemm		domain as defined by the 'm' class ($=m) to relay.
5150c2aa98e2SPeter Wemm	CONFIG: new FEATURE(relay_based_on_MX) to allow relaying based on
5151c2aa98e2SPeter Wemm		the MX records of the host portion of an incoming recipient.
5152c2aa98e2SPeter Wemm	CONFIG: new FEATURE(access_db) which turns on the access database
51538774250cSGregory Neil Shapiro		feature.  This database gives you the ability to allow
5154c2aa98e2SPeter Wemm		or refuse to accept mail from specified domains for
5155c2aa98e2SPeter Wemm		administrative reasons.  By default, names that are listed
5156c2aa98e2SPeter Wemm		as "OK" in the access db are domain names, not host names.
5157c2aa98e2SPeter Wemm	CONFIG: new confCR_FILE m4 variable for defining the name of the file
5158c2aa98e2SPeter Wemm		used for class 'R'.  Defaults to /etc/mail/relay-domains.
5159c2aa98e2SPeter Wemm	CONFIG: new command RELAY_DOMAIN(domain) and RELAY_DOMAIN_FILE(file)
5160c2aa98e2SPeter Wemm		to add items to class 'R' ($=R) for hosts allowed to relay.
5161c2aa98e2SPeter Wemm	CONFIG: new FEATURE(relay_hosts_only) to change the behavior
5162c2aa98e2SPeter Wemm		of FEATURE(access_db) and class 'R' to lookup individual
5163c2aa98e2SPeter Wemm		host names only.
5164c2aa98e2SPeter Wemm	CONFIG: new FEATURE(loose_relay_check).  Normally, if a recipient
5165c2aa98e2SPeter Wemm		using % addressing is used, e.g.  user%site@othersite,
5166c2aa98e2SPeter Wemm		and othersite is in class 'R', the check_rcpt ruleset
5167c2aa98e2SPeter Wemm		will strip @othersite and recheck user@site for relaying.
5168c2aa98e2SPeter Wemm		This feature changes that behavior.  It should not be
5169c2aa98e2SPeter Wemm		needed for most installations.
5170c2aa98e2SPeter Wemm	CONFIG: new FEATURE(relay_local_from) to allow relaying if the
5171c2aa98e2SPeter Wemm		domain portion of the mail sender is a local host.  This
5172c2aa98e2SPeter Wemm		should only be used if absolutely necessary as it opens
5173c2aa98e2SPeter Wemm		a window for spammers.  Patch from Randall S. Winchester of
5174c2aa98e2SPeter Wemm		the University of Maryland.
5175c2aa98e2SPeter Wemm	CONFIG: new FEATURE(blacklist_recipients) turns on the ability to
5176c2aa98e2SPeter Wemm		block incoming mail destined for certain recipient
5177c2aa98e2SPeter Wemm		usernames, hostnames, or addresses.
5178c2aa98e2SPeter Wemm	CONFIG: By default, MAIL FROM: commands in the SMTP session will be
5179c2aa98e2SPeter Wemm		refused if the host part of the argument to MAIL FROM: cannot
5180c2aa98e2SPeter Wemm		be located in the host name service (e.g., DNS).
5181c2aa98e2SPeter Wemm	CONFIG: new FEATURE(accept_unresolvable_domains) accepts
5182c2aa98e2SPeter Wemm		unresolvable hostnames in MAIL FROM: SMTP commands.
5183c2aa98e2SPeter Wemm	CONFIG: new FEATURE(accept_unqualified_senders) accepts
5184c2aa98e2SPeter Wemm		MAIL FROM: senders which do not include a domain.
5185c2aa98e2SPeter Wemm	CONFIG: new FEATURE(rbl) Turns on rejection of hosts found in the
5186c2aa98e2SPeter Wemm		Realtime Blackhole List.  You can specify the RBL name
5187c2aa98e2SPeter Wemm		server to contact by specifying it as an optional argument.
5188c2aa98e2SPeter Wemm		The default is rbl.maps.vix.com.  For details, see
5189c2aa98e2SPeter Wemm		http://maps.vix.com/rbl/.
5190c2aa98e2SPeter Wemm	CONFIG: Call Local_check_relay, Local_check_mail, and
5191c2aa98e2SPeter Wemm		Local_check_rcpt from check_relay, check_mail, and
5192c2aa98e2SPeter Wemm		check_rcpt.  Users with local rulesets should place the
5193c2aa98e2SPeter Wemm		rules using LOCAL_RULESETS.  If a Local_check_* ruleset
5194c2aa98e2SPeter Wemm		returns $#OK, the message is accepted.  If the ruleset
5195c2aa98e2SPeter Wemm		returns a mailer, the appropriate action is taken, else
5196c2aa98e2SPeter Wemm		the return of the ruleset is ignored.
5197c2aa98e2SPeter Wemm	CONFIG: CYRUS_MAILER_FLAGS now includes the /:| mailer flags by
5198c2aa98e2SPeter Wemm		default to support file, :include:, and program deliveries.
5199c2aa98e2SPeter Wemm	CONFIG: Remove the default for confDEF_USER_ID so the binary can
5200c2aa98e2SPeter Wemm		pick the proper default value.  See the SECURITY note
5201c2aa98e2SPeter Wemm		above for more information.
5202c2aa98e2SPeter Wemm	CONFIG: FEATURE(nodns) now warns the user that the feature is a
5203c2aa98e2SPeter Wemm		no-op.  Patch from Kari Hurtta of the Finnish
5204c2aa98e2SPeter Wemm		Meteorological Institute.
5205c2aa98e2SPeter Wemm	CONFIG: OSTYPE(osf1) now sets DefaultUserID (confDEF_USER_ID) to
5206c2aa98e2SPeter Wemm		daemon since DEC's /bin/mail will drop the envelope
5207c2aa98e2SPeter Wemm		sender if run as mailnull.  See the Digital UNIX section
5208c2aa98e2SPeter Wemm		of src/README for more information.  Problem noted by
5209c2aa98e2SPeter Wemm		Kari Hurtta of the Finnish Meteorological Institute.
5210c2aa98e2SPeter Wemm	CONFIG: .cf files are now stored in the same directory with the
5211c2aa98e2SPeter Wemm		.mc files instead of in the obj directory.
5212c2aa98e2SPeter Wemm	CONFIG: New options confSINGLE_LINE_FROM_HEADER,
5213c2aa98e2SPeter Wemm		confALLOW_BOGUS_HELO, and confMUST_QUOTE_CHARS for
5214c2aa98e2SPeter Wemm		setting SingleLineFromHeader, AllowBogusHELO, and
5215c2aa98e2SPeter Wemm		MustQuoteChars respectively.
5216c2aa98e2SPeter Wemm	MAIL.LOCAL: support -l flag to run LMTP on stdin/stdout.  This
5217c2aa98e2SPeter Wemm		SMTP-like protocol allows detailed reporting of delivery
5218c2aa98e2SPeter Wemm		status on a per-user basis.  Code donated by John Myers of
5219c2aa98e2SPeter Wemm		CMU (now of Netscape).
5220c2aa98e2SPeter Wemm	MAIL.LOCAL: HP-UX support from Randall S. Winchester of the
5221c2aa98e2SPeter Wemm		University of Maryland.  NOTE: mail.local is not
5222c2aa98e2SPeter Wemm		compatible with the stock HP-UX mail format.  Be sure to
5223c2aa98e2SPeter Wemm		read mail.local/README.
5224c2aa98e2SPeter Wemm	MAIL.LOCAL: Prevent other mail delivery agents from stealing a
5225c2aa98e2SPeter Wemm		mailbox lock.  Patch from Randall S. Winchester of the
5226c2aa98e2SPeter Wemm		University of Maryland.
5227c2aa98e2SPeter Wemm	MAIL.LOCAL: glibc portability from John Kennedy of Cal State
5228c2aa98e2SPeter Wemm		University, Chico.
5229c2aa98e2SPeter Wemm	MAIL.LOCAL: IRIX portability from Kari Hurtta of the Finnish
5230c2aa98e2SPeter Wemm		Meteorological Institute.
5231c2aa98e2SPeter Wemm	MAILSTATS: Display the number of rejected and discarded messages
5232c2aa98e2SPeter Wemm		in the StatusFile.  Patch from Randall Winchester of the
5233c2aa98e2SPeter Wemm		University of Maryland.
5234c2aa98e2SPeter Wemm	MAKEMAP: New -s flag to ignore safety checks on database map files
5235c2aa98e2SPeter Wemm		such as linked files in world writable directories.
5236c2aa98e2SPeter Wemm	MAKEMAP: Add support for Berkeley DB 2.X.  Remove OLD_NEWDB support.
5237c2aa98e2SPeter Wemm	PRALIASES: Add support for Berkeley DB 2.X.
5238c2aa98e2SPeter Wemm	PRALIASES: Do not automatically include NDBM support.  Problem
5239c2aa98e2SPeter Wemm		noted by Ralf Hildebrandt of the Technical University of
5240c2aa98e2SPeter Wemm		Braunschweig.
5241c2aa98e2SPeter Wemm	RMAIL: Improve portability for other platforms.  Patches from
5242c2aa98e2SPeter Wemm		Randall S. Winchester of the University of Maryland and
5243c2aa98e2SPeter Wemm		Kari Hurtta of the Finnish Meteorological Institute.
5244c2aa98e2SPeter Wemm	Changed Files:
5245c2aa98e2SPeter Wemm		src/Makefiles/Makefile.* files have been modified to use
5246c2aa98e2SPeter Wemm			the new build mechanism and are now BuildTools/OS/*.
5247c2aa98e2SPeter Wemm		src/makesendmail changed to symbolic link to src/Build.
5248c2aa98e2SPeter Wemm	New Files:
5249c2aa98e2SPeter Wemm		BuildTools/M4/header.m4
5250c2aa98e2SPeter Wemm		BuildTools/M4/depend/BSD.m4
5251c2aa98e2SPeter Wemm		BuildTools/M4/depend/CC-M.m4
5252c2aa98e2SPeter Wemm		BuildTools/M4/depend/NCR.m4
5253c2aa98e2SPeter Wemm		BuildTools/M4/depend/Solaris.m4
5254c2aa98e2SPeter Wemm		BuildTools/M4/depend/X11.m4
5255c2aa98e2SPeter Wemm		BuildTools/M4/depend/generic.m4
5256c2aa98e2SPeter Wemm		BuildTools/OS/AIX.4.2
5257c2aa98e2SPeter Wemm		BuildTools/OS/AIX.4.x
5258c2aa98e2SPeter Wemm		BuildTools/OS/CRAYT3E.2.0.x
5259c2aa98e2SPeter Wemm		BuildTools/OS/HP-UX.11.x
5260c2aa98e2SPeter Wemm		BuildTools/OS/IRIX.6.5
5261c2aa98e2SPeter Wemm		BuildTools/OS/NEXTSTEP.4.x
5262c2aa98e2SPeter Wemm		BuildTools/OS/NeXT.4.x
5263c2aa98e2SPeter Wemm		BuildTools/OS/NetBSD.8.3
5264c2aa98e2SPeter Wemm		BuildTools/OS/QNX
5265c2aa98e2SPeter Wemm		BuildTools/OS/SunOS.5.7
5266c2aa98e2SPeter Wemm		BuildTools/OS/dcosx.1.x.NILE
5267c2aa98e2SPeter Wemm		BuildTools/README
5268c2aa98e2SPeter Wemm		BuildTools/Site/README
5269c2aa98e2SPeter Wemm		BuildTools/bin/Build
5270c2aa98e2SPeter Wemm		BuildTools/bin/configure.sh
5271c2aa98e2SPeter Wemm		BuildTools/bin/find_m4.sh
5272c2aa98e2SPeter Wemm		BuildTools/bin/install.sh
5273c2aa98e2SPeter Wemm		Makefile
5274c2aa98e2SPeter Wemm		cf/cf/Build
5275c2aa98e2SPeter Wemm		cf/cf/generic-hpux10.cf
5276c2aa98e2SPeter Wemm		cf/feature/accept_unqualified_senders.m4
5277c2aa98e2SPeter Wemm		cf/feature/accept_unresolvable_domains.m4
5278c2aa98e2SPeter Wemm		cf/feature/access_db.m4
5279c2aa98e2SPeter Wemm		cf/feature/blacklist_recipients.m4
5280c2aa98e2SPeter Wemm		cf/feature/loose_relay_check.m4
5281c2aa98e2SPeter Wemm		cf/feature/local_lmtp.m4
5282c2aa98e2SPeter Wemm		cf/feature/promiscuous_relay.m4
5283c2aa98e2SPeter Wemm		cf/feature/rbl.m4
5284c2aa98e2SPeter Wemm		cf/feature/relay_based_on_MX.m4
5285c2aa98e2SPeter Wemm		cf/feature/relay_entire_domain.m4
5286c2aa98e2SPeter Wemm		cf/feature/relay_hosts_only.m4
5287c2aa98e2SPeter Wemm		cf/feature/relay_local_from.m4
5288c2aa98e2SPeter Wemm		cf/ostype/qnx.m4
5289c2aa98e2SPeter Wemm		contrib/doublebounce.pl
5290c2aa98e2SPeter Wemm		mail.local/Build
5291c2aa98e2SPeter Wemm		mail.local/Makefile.m4
5292c2aa98e2SPeter Wemm		mail.local/README
5293c2aa98e2SPeter Wemm		mailstats/Build
5294c2aa98e2SPeter Wemm		mailstats/Makefile.m4
5295c2aa98e2SPeter Wemm		makemap/Build
5296c2aa98e2SPeter Wemm		makemap/Makefile.m4
5297c2aa98e2SPeter Wemm		praliases/Build
5298c2aa98e2SPeter Wemm		praliases/Makefile.m4
5299c2aa98e2SPeter Wemm		rmail/Build
5300c2aa98e2SPeter Wemm		rmail/Makefile.m4
5301c2aa98e2SPeter Wemm		rmail/rmail.0
5302c2aa98e2SPeter Wemm		smrsh/Build
5303c2aa98e2SPeter Wemm		smrsh/Makefile.m4
5304c2aa98e2SPeter Wemm		src/Build
5305c2aa98e2SPeter Wemm		src/Makefile.m4
5306c2aa98e2SPeter Wemm		src/snprintf.c
5307c2aa98e2SPeter Wemm	Deleted Files:
5308c2aa98e2SPeter Wemm		cf/cf/Makefile (replaced by Makefile.dist)
5309c2aa98e2SPeter Wemm		mail.local/Makefile
5310c2aa98e2SPeter Wemm		mail.local/Makefile.dist
5311c2aa98e2SPeter Wemm		mailstats/Makefile
5312c2aa98e2SPeter Wemm		mailstats/Makefile.dist
5313c2aa98e2SPeter Wemm		makemap/Makefile
5314c2aa98e2SPeter Wemm		makemap/Makefile.dist
5315c2aa98e2SPeter Wemm		praliases/Makefile
5316c2aa98e2SPeter Wemm		praliases/Makefile.dist
5317c2aa98e2SPeter Wemm		rmail/Makefile
5318c2aa98e2SPeter Wemm		smrsh/Makefile
5319c2aa98e2SPeter Wemm		smrsh/Makefile.dist
5320c2aa98e2SPeter Wemm		src/Makefile
5321c2aa98e2SPeter Wemm		src/Makefiles/Makefile.AIX.4 (split into AIX.4.x and AIX.4.2)
5322c2aa98e2SPeter Wemm		src/Makefiles/Makefile.SMP_DC.OSx.NILE
5323c2aa98e2SPeter Wemm			(renamed BuildTools/OS/dcosx.1.x.NILE)
5324c2aa98e2SPeter Wemm		src/Makefiles/Makefile.Utah (obsolete platform)
5325c2aa98e2SPeter Wemm	Renamed Files:
5326c2aa98e2SPeter Wemm		READ_ME => README
5327c2aa98e2SPeter Wemm		cf/cf/Makefile.dist => Makefile
5328c2aa98e2SPeter Wemm		cf/cf/obj/* => cf/cf/*
5329c2aa98e2SPeter Wemm		src/READ_ME => src/README
5330c2aa98e2SPeter Wemm
533106f25ae9SGregory Neil Shapiro8.8.8/8.8.8	1997/10/24
5332c2aa98e2SPeter Wemm	If the check_relay ruleset failed, the relay= field was logged
5333c2aa98e2SPeter Wemm		incorrectly.  Problem noted by Kari Hurtta of the Finnish
5334c2aa98e2SPeter Wemm		Meteorological Institute.
5335c2aa98e2SPeter Wemm	If /usr/tmp/dead.letter already existed, sendmail could not
5336c2aa98e2SPeter Wemm		add additional bounces to it.  Problem noted by Thomas J.
5337c2aa98e2SPeter Wemm		Arseneault of SRI International.
5338c2aa98e2SPeter Wemm	If an SMTP mailer used a non-standard port number for the outgoing
5339c2aa98e2SPeter Wemm		connection, it would be displayed incorrectly in verbose mode.
5340c2aa98e2SPeter Wemm		Problem noted by John Kennedy of Cal State University, Chico.
5341c2aa98e2SPeter Wemm	Log the ETRN parameter specified by the client before altering them
5342c2aa98e2SPeter Wemm		to internal form.  Suggested by Bob Kupiec of GES-Verio.
5343c2aa98e2SPeter Wemm	EXPN and VRFY SMTP commands on malformed addresses were logging as
5344c2aa98e2SPeter Wemm		User unknown with bogus delay= values.  Change them to log
5345c2aa98e2SPeter Wemm		the same as compliant addresses.  Problem noted by Kari E.
5346c2aa98e2SPeter Wemm		Hurtta of the Finnish Meteorological Institute.
5347c2aa98e2SPeter Wemm	Ignore the debug resolver option unless using sendmail debug trace
5348c2aa98e2SPeter Wemm		option for resolver.  Problem noted by Greg Nichols of Wind
5349c2aa98e2SPeter Wemm		River Systems.
5350c2aa98e2SPeter Wemm	If SingleThreadDelivery was enabled and the remote server returned a
5351c2aa98e2SPeter Wemm		protocol error on the DATA command, the connection would be
5352c2aa98e2SPeter Wemm		closed but the persistent host status file would not be
5353c2aa98e2SPeter Wemm		unlocked so other sendmail processes could not deliver to
5354c2aa98e2SPeter Wemm		that host.  Problem noted by Peter Wemm of DIALix.
5355c2aa98e2SPeter Wemm	If queueing up a message due to an expensive mailer, don't increment
5356c2aa98e2SPeter Wemm		the number of delivery attempts or set the last delivery
5357c2aa98e2SPeter Wemm		attempt time so the message will be delivered on the next
5358c2aa98e2SPeter Wemm		queue run regardless of MinQueueAge.  Problem noted by
5359c2aa98e2SPeter Wemm		Brian J. Coan of the Institute for Global Communications.
5360c2aa98e2SPeter Wemm	Authentication warnings of "Processed from queue _directory_" and
5361c2aa98e2SPeter Wemm		"Processed by _username_ with -C _filename_" would be logged
5362c2aa98e2SPeter Wemm		with the incorrect timestamp.  Problem noted by Kari E. Hurtta
5363c2aa98e2SPeter Wemm		of the Finnish Meteorological Institute.
5364c2aa98e2SPeter Wemm	Use a better heuristic for detecting GDBM.
5365c2aa98e2SPeter Wemm	Log null connections on dropped connections.  Problem noted by
5366c2aa98e2SPeter Wemm		Jon Lewis of Florida Digital Turnpike.
5367c2aa98e2SPeter Wemm	If class dbm maps are rebuilt, sendmail will now detect this and
5368c2aa98e2SPeter Wemm		reopen the map.  Previously, they could give stale
5369c2aa98e2SPeter Wemm		results during a single message processing (but would
5370c2aa98e2SPeter Wemm		recover when the next message was received).  Fix from
5371c2aa98e2SPeter Wemm		Joe Pruett of Q7 Enterprises.
5372c2aa98e2SPeter Wemm	Do not log failures such as "User unknown" on -bv or SMTP VRFY
5373c2aa98e2SPeter Wemm		requests.  Problem noted by Kari E. Hurtta of the
5374c2aa98e2SPeter Wemm		Finnish Meteorological Institute.
5375c2aa98e2SPeter Wemm	Do not send a bounce message back to the sender regarding bad
5376c2aa98e2SPeter Wemm		recipients if the SMTP connection is dropped before the
5377c2aa98e2SPeter Wemm		message is accepted.  Problem noted by Kari E. Hurtta of the
5378c2aa98e2SPeter Wemm		Finnish Meteorological Institute.
5379c2aa98e2SPeter Wemm	Use "localhost" instead of "[UNIX: localhost]" when connecting to
5380c2aa98e2SPeter Wemm		sendmail via a UNIX pipe.  This will allow rulesets using
5381c2aa98e2SPeter Wemm		$&{client_name} to process without sending the string through
5382c2aa98e2SPeter Wemm		dequote.  Problem noted by Alan Barrett of Internet Africa.
5383c2aa98e2SPeter Wemm	A combination of deferred delivery mode, a double bounce situation,
5384c2aa98e2SPeter Wemm		and the inability to save a bounce message to
5385c2aa98e2SPeter Wemm		/var/tmp/dead.letter would cause sendmail to send a bounce
5386c2aa98e2SPeter Wemm		to postmaster but not remove the offending envelope from the
5387c2aa98e2SPeter Wemm		queue causing it to create a new bounce message each time the
5388c2aa98e2SPeter Wemm		queue was run.  Problem noted by Brad Doctor of Net Daemons
5389c2aa98e2SPeter Wemm		Associates.
5390c2aa98e2SPeter Wemm	Remove newlines from hostname information returned via DNS.  There are
5391c2aa98e2SPeter Wemm		no known security implications of newlines in hostnames as
5392c2aa98e2SPeter Wemm		sendmail filters newlines in all vital areas; however, this
5393c2aa98e2SPeter Wemm		could cause confusing error messages.
5394c2aa98e2SPeter Wemm	Starting with sendmail 8.8.6, mail sent with the '-t' option would be
5395c2aa98e2SPeter Wemm		rejected if any of the specified addresses were bad.  This
5396c2aa98e2SPeter Wemm		behavior was modified to only reject the bad addresses and not
5397c2aa98e2SPeter Wemm		the entire message.  Problem noted by Jozsef Hollosi of
5398c2aa98e2SPeter Wemm		SuperNet, Inc.
5399c2aa98e2SPeter Wemm	Use Timeout.fileopen when delivering mail to a file.  Suggested by
5400c2aa98e2SPeter Wemm		Bryan Costales of InfoBeat, Inc.
5401c2aa98e2SPeter Wemm	Display the proper Final-Recipient on DSN messages for non-SMTP
5402c2aa98e2SPeter Wemm		mailers.  Problem noted by Kari E. Hurtta of the
5403c2aa98e2SPeter Wemm		Finnish Meteorological Institute.
5404c2aa98e2SPeter Wemm	An error in calculating the available space in the list of addresses
5405c2aa98e2SPeter Wemm		for logging deliveries could cause an address to be silently
5406c2aa98e2SPeter Wemm		dropped.
5407c2aa98e2SPeter Wemm	Include the initial user environment if sendmail is restarted via
5408c2aa98e2SPeter Wemm		a HUP signal.  This will give room for the process title.
5409c2aa98e2SPeter Wemm		Problem noted by Jon Lewis of Florida Digital Turnpike.
5410c2aa98e2SPeter Wemm	Mail could be delivered without a body if the machine does not
5411c2aa98e2SPeter Wemm		support flock locking and runs out of processes during
5412c2aa98e2SPeter Wemm		delivery.  Fix from Chuck Lever of the University of Michigan.
5413c2aa98e2SPeter Wemm	Drop recipient address from 251 and 551 SMTP responses per RFC 821.
5414c2aa98e2SPeter Wemm		Problem noted by Kari E. Hurtta of the Finnish Meteorological
5415c2aa98e2SPeter Wemm		Institute.
5416c2aa98e2SPeter Wemm	Make sure non-rebuildable database maps are opened before the
541706f25ae9SGregory Neil Shapiro		rebuildable maps (i.e., alias files) in case the database maps
5418c2aa98e2SPeter Wemm		are needed for verifying the left hand side of the aliases.
5419c2aa98e2SPeter Wemm		Problem noted by Lloyd Parkes of Victoria University.
5420c2aa98e2SPeter Wemm	Make sure sender RFC822 source route addresses are alias expanded for
5421c2aa98e2SPeter Wemm		bounce messages.  Problem noted by Juergen Georgi of
5422c2aa98e2SPeter Wemm		RUS University of Stuttgart.
5423c2aa98e2SPeter Wemm	Minor lint fixes.
5424c2aa98e2SPeter Wemm	Return a temporary error instead of a permanent error if an LDAP map
5425c2aa98e2SPeter Wemm		search returns an error.  This will allow sequenced maps which
5426c2aa98e2SPeter Wemm		use other LDAP servers to be checked.  Fix from Booker Bense
5427c2aa98e2SPeter Wemm		of Stanford University.
5428c2aa98e2SPeter Wemm	When automatically converting from quoted printable to 8bit text do
5429c2aa98e2SPeter Wemm		not pad bare linefeeds with a space.  Problem noted by Theo
5430c2aa98e2SPeter Wemm		Nolte of the University of Technology Aachen, Germany.
5431c2aa98e2SPeter Wemm	Portability:
5432c2aa98e2SPeter Wemm		Non-standard C compilers may have had a problem compiling
5433c2aa98e2SPeter Wemm			conf.c due to a standard C external declaration of
5434c2aa98e2SPeter Wemm			setproctitle().  Problem noted by Ted Roberts of
5435c2aa98e2SPeter Wemm			Electronic Data Systems.
5436c2aa98e2SPeter Wemm		AUX: has a broken O_EXCL implementation.  Reported by Jim
5437c2aa98e2SPeter Wemm			Jagielski of jaguNET Access Services.
5438c2aa98e2SPeter Wemm		BSD/OS: didn't compile if HASSETUSERCONTEXT was defined.
5439c2aa98e2SPeter Wemm		Digital UNIX: Digital UNIX (and possibly others) moves
5440c2aa98e2SPeter Wemm			loader environment variables into the loader memory
5441c2aa98e2SPeter Wemm			area.  If one of these environment variables (such as
5442c2aa98e2SPeter Wemm			LD_LIBRARY_PATH) was the last environment variable,
5443c2aa98e2SPeter Wemm			an invalid memory address would be used by the process
5444c2aa98e2SPeter Wemm			title routine causing memory corruption.  Problem
5445c2aa98e2SPeter Wemm			noted by Sam Hartman of Mesa Internet Systems.
5446c2aa98e2SPeter Wemm		GNU libc: uses an enum for _PC_CHOWN_RESTRICTED which caused
5447c2aa98e2SPeter Wemm			chownsafe() to always return 0 even if the OS does
5448c2aa98e2SPeter Wemm			not permit file giveaways.  Problem noted by
5449c2aa98e2SPeter Wemm			Yasutaka Sumi of The University of Tokyo.
5450c2aa98e2SPeter Wemm		IRIX6: Syslog buffer size set to 512 bytes.  Reported by
5451c2aa98e2SPeter Wemm			Gerald Rinske of Siemens Business Services VAS.
5452c2aa98e2SPeter Wemm		Linux: Pad process title with NULLs.  Problem noted by
5453c2aa98e2SPeter Wemm			Jon Lewis of Florida Digital Turnpike.
5454c2aa98e2SPeter Wemm		SCO OpenServer 5.0: SIOCGIFCONF ioctl call returns an
5455c2aa98e2SPeter Wemm			incorrect value for the number of interfaces.
5456c2aa98e2SPeter Wemm			Problem noted by Chris Loelke of JetStream Internet
5457c2aa98e2SPeter Wemm			Services.
5458c2aa98e2SPeter Wemm		SINIX: Update for Makefile and syslog buffer size from Gerald
5459c2aa98e2SPeter Wemm			Rinske of Siemens Business Services VAS.
5460c2aa98e2SPeter Wemm		Solaris: Make sure HASGETUSERSHELL setting for SunOS is not
5461c2aa98e2SPeter Wemm			used on a Solaris machine.  Problem noted by
5462c2aa98e2SPeter Wemm			Stephen Ma of Jtec Pty Limited.
5463c2aa98e2SPeter Wemm		CONFIG: SINIX: Update from Gerald Rinske of Siemens Business
5464c2aa98e2SPeter Wemm			Services VAS.
5465c2aa98e2SPeter Wemm	MAKEMAP: Use a better heuristic for detecting GDBM.
5466c2aa98e2SPeter Wemm	CONTRIB: expn.pl: Updated version from the author, David Muir Sharnoff.
5467c2aa98e2SPeter Wemm	OP.ME: Document the F=i mailer flag.  Problem noted by Per Hedeland of
5468c2aa98e2SPeter Wemm			Ericsson.
5469c2aa98e2SPeter Wemm
547006f25ae9SGregory Neil Shapiro8.8.7/8.8.7	1997/08/03
5471c2aa98e2SPeter Wemm	If using Berkeley DB on systems without O_EXLOCK (open a file with
5472c2aa98e2SPeter Wemm		an exclusive lock already set -- i.e., almost all systems
5473c2aa98e2SPeter Wemm		except 4.4-BSD derived systems), the initial attempt at
5474c2aa98e2SPeter Wemm		rebuilding aliases file if the database didn't already
5475c2aa98e2SPeter Wemm		exist would fail.  Patch from Raymund Will of LST Software
5476c2aa98e2SPeter Wemm		GmbH.
5477c2aa98e2SPeter Wemm	Bogus incoming SMTP commands would reset the SMTP conversation.
5478c2aa98e2SPeter Wemm		Problem noted by Fredrik J�nsson of the Royal Institute
5479c2aa98e2SPeter Wemm		of Technology, Stockholm.
5480c2aa98e2SPeter Wemm	Since TCP Wrappers includes setenv(), unsetenv(), and putenv(),
5481c2aa98e2SPeter Wemm		some environments could give "multiple definitions" for these
5482c2aa98e2SPeter Wemm		routines during compilation.  If using TCP Wrappers, assume
5483c2aa98e2SPeter Wemm		that these routines are included as though they were in the
5484c2aa98e2SPeter Wemm		C library.  Patch from Robert La Ferla.
5485c2aa98e2SPeter Wemm	When a NEWDB database map was rebuilt at the same time it was being
5486c2aa98e2SPeter Wemm		used by a queue run, the maps could be left locked for the
5487c2aa98e2SPeter Wemm		duration of the queue run, causing other processes to hang.
5488c2aa98e2SPeter Wemm		Problem noted by Kendall Libby of Shore.NET.
5489c2aa98e2SPeter Wemm	In some cases, NoRecipientAction=add-bcc was being ignored, so the
5490c2aa98e2SPeter Wemm		mail was passed on without any recipient header.  This could
5491c2aa98e2SPeter Wemm		cause problems downstream.  Problem noted by Xander Jansen
5492c2aa98e2SPeter Wemm		of SURFnet ExpertiseCentrum.
5493c2aa98e2SPeter Wemm	Give error when GDBM is used with sendmail.  GDBM's locking and
5494c2aa98e2SPeter Wemm		linking of the .dir and .pag files interferes with sendmail's
5495c2aa98e2SPeter Wemm		locking and security checks.  Problems noted by Fyodor
5496c2aa98e2SPeter Wemm		Yarochkin of the Kyrgyz Republic FreeNet.
5497c2aa98e2SPeter Wemm	Don't fsync qf files if SuperSafe option is not set.
5498c2aa98e2SPeter Wemm	Avoid extra calls to gethostbyname for addresses for which a
5499c2aa98e2SPeter Wemm		gethostbyaddr found no value.  Also, ignore any returns
5500c2aa98e2SPeter Wemm		from gethostbyaddr that look like a dotted quad.
5501c2aa98e2SPeter Wemm	If PTR lookup fails when looking up an SMTP peer, don't tag it as
5502c2aa98e2SPeter Wemm		"may be forged", since at the network level we pretty much
5503c2aa98e2SPeter Wemm		have to assume that the information is good.
5504c2aa98e2SPeter Wemm	In some cases, errors during an SMTP session could leave files
5505c2aa98e2SPeter Wemm		open or locked.
5506c2aa98e2SPeter Wemm	Better handling of missing file descriptors (0, 1, 2) on startup.
550740266059SGregory Neil Shapiro	Better handling of non-set-user-ID binaries -- avoids certain obnoxious
5508c2aa98e2SPeter Wemm		errors during testing.
5509c2aa98e2SPeter Wemm	Errors in file locking of NEWDB maps had the incorrect file name
5510c2aa98e2SPeter Wemm		printed in the error message.
5511c2aa98e2SPeter Wemm	If the AllowBogusHELO option were set and an EHLO with a bad or
5512c2aa98e2SPeter Wemm		missing parameter were issued, the EHLO behaved like a HELO.
5513c2aa98e2SPeter Wemm	Load limiting never kicked in for incoming SMTP transactions if the
55142e43090eSPeter Wemm		DeliveryMode=background and any recipient was an alias or
5515c2aa98e2SPeter Wemm		had a .forward file.  From Nik Conwell of Boston University.
5516c2aa98e2SPeter Wemm	On some non-Posix systems, the decision of whether chown(2) permits
5517c2aa98e2SPeter Wemm		file giveaway was undefined.  From Tetsu Ushijima of the
5518c2aa98e2SPeter Wemm		Tokyo Institute of Technology.
5519c2aa98e2SPeter Wemm	Fix race condition that could cause the body of a message to be
5520c2aa98e2SPeter Wemm		lost (so only the header was delivered).  This only occurs
5521c2aa98e2SPeter Wemm		on systems that do not use flock(2), and only when a queue
5522c2aa98e2SPeter Wemm		runner runs during a critical section in another message
5523c2aa98e2SPeter Wemm		delivery.  Based on a patch from Steve Schweinhart of
5524c2aa98e2SPeter Wemm		Results Computing.
5525c2aa98e2SPeter Wemm	If a qf file was found in a mail queue directory that had a problem
5526c2aa98e2SPeter Wemm		(wrong ownership, bad format, etc.) and the file name was
5527c2aa98e2SPeter Wemm		exactly MAXQFNAME bytes long, then instead of being tried
5528c2aa98e2SPeter Wemm		once, it would be tried on every queue run.  Problem noted
5529c2aa98e2SPeter Wemm		by Bryan Costales of Mercury Mail.
5530c2aa98e2SPeter Wemm	If the system supports an st_gen field in the status structure,
5531c2aa98e2SPeter Wemm		include it when reporting that a file has changed after open.
5532c2aa98e2SPeter Wemm		This adds a new compile flag, HAS_ST_GEN (0/1 option).
5533c2aa98e2SPeter Wemm		This out to be checked as well as reported, since it is
5534c2aa98e2SPeter Wemm		theoretically possible for an attacker to remove a file after
5535c2aa98e2SPeter Wemm		it is opened and replace it with another file that has the
5536c2aa98e2SPeter Wemm		same i-number, but some filesystems (notably AFS) return
5537c2aa98e2SPeter Wemm		garbage in this field, and hence always look like the file
5538c2aa98e2SPeter Wemm		has changed.  As a practical matter this is not a security
5539c2aa98e2SPeter Wemm		problem, since the files can be neither hard nor soft links,
5540c2aa98e2SPeter Wemm		and on no filesystem (that I am aware of) is it possible to
5541c2aa98e2SPeter Wemm		have two files on the same filesystem with the same i-number
5542c2aa98e2SPeter Wemm		simultaneously.
5543c2aa98e2SPeter Wemm	Delete the root Makefile from the distribution -- it is only for
5544c2aa98e2SPeter Wemm		use internally, and does not work at customer sites.
5545c2aa98e2SPeter Wemm	Fix botch that caused the second MAIL FROM: command in a single
5546c2aa98e2SPeter Wemm		transaction to clear the entire transaction.  Problem
5547c2aa98e2SPeter Wemm		noted by John Kennedy of Cal State University, Chico.
5548c2aa98e2SPeter Wemm	Work properly on machines that have _PATH_VARTMP defined without
5549c2aa98e2SPeter Wemm		a trailing slash.  (And a pox on vendors that decide to
5550c2aa98e2SPeter Wemm		ignore the established conventions!)  Problem noted by
5551c2aa98e2SPeter Wemm		Gregory Neil Shapiro of WPI.
5552c2aa98e2SPeter Wemm	Internal changes to make it easier to add another protocol family
5553c2aa98e2SPeter Wemm		(intended for IPv6).  Patches are from John Kennedy of
5554c2aa98e2SPeter Wemm		CSU Chico.
5555c2aa98e2SPeter Wemm	In certain cases, 7->8 bit MIME decoding of Base64 text could leave
5556c2aa98e2SPeter Wemm		an extra space at the beginning of some lines.  Problem
5557c2aa98e2SPeter Wemm		noted by Charles Karney of Princeton University; fix based
5558c2aa98e2SPeter Wemm		on a patch from Christophe Wolfhugel.
5559c2aa98e2SPeter Wemm	Portability:
5560c2aa98e2SPeter Wemm		Allow _PATH_VENDOR_CF to be set in Makefile for consistency
5561c2aa98e2SPeter Wemm			with the _Sendmail_ book, 2nd edition.  Note that
5562c2aa98e2SPeter Wemm			the book is actually wrong: _PATH_SENDMAILCF should
5563c2aa98e2SPeter Wemm			be used instead.
5564c2aa98e2SPeter Wemm		AIX 3.x: Include <sys/select.h>.  Patch from Gene Rackow
5565c2aa98e2SPeter Wemm			of Argonne National Laboratory.
5566c2aa98e2SPeter Wemm		OpenBSD from from Paul DuBois of the University of Wisconsin.
5567c2aa98e2SPeter Wemm		RISC/os 4.0 from Paul DuBois of the University of Wisconsin.
5568c2aa98e2SPeter Wemm		SunOS: Include <memory.h> to fix warning from util.c.  From
5569c2aa98e2SPeter Wemm			James Aldridge of EUnet Ltd.
5570c2aa98e2SPeter Wemm		Solaris: Change STDIR (location of status file) to /etc/mail
5571c2aa98e2SPeter Wemm			in Makefiles.
5572c2aa98e2SPeter Wemm		Linux, Dynix, UNICOS: Remove -DNDBM and -lgdbm from
5573c2aa98e2SPeter Wemm			Makefiles.  Use NEWDB on Linux instead.
5574c2aa98e2SPeter Wemm		NCR MP-RAS 3.x with STREAMware TCP/IP: SIOCGIFNUM ioctl
5575c2aa98e2SPeter Wemm			exists but behaves differently than other OSes.
5576c2aa98e2SPeter Wemm			Add SIOCGIFNUM_IS_BROKEN compile flag to get
5577c2aa98e2SPeter Wemm			around the problem.  Problem noted by Tom Moore of
5578c2aa98e2SPeter Wemm			NCR Corp.
5579c2aa98e2SPeter Wemm		HP-UX 9.x: fix compile warnings for old select API.  Problem
5580c2aa98e2SPeter Wemm			noted by Tom Smith of Digital Equipment Corp.
5581c2aa98e2SPeter Wemm		UnixWare 2.x: compile warnings on offsetof macro.  Problem
5582c2aa98e2SPeter Wemm			noted by Tom Good of the Community Access Information
5583c2aa98e2SPeter Wemm			Resource Network
5584c2aa98e2SPeter Wemm		SCO 4.2: compile problems caused by a change in the type of
5585c2aa98e2SPeter Wemm			the "length" parameters passed to accept, getpeername,
5586c2aa98e2SPeter Wemm			getsockname, and getsockopt.  Adds new compile flags
5587c2aa98e2SPeter Wemm			SOCKADDR_SIZE_T and SOCKOPT_SIZE_T.  Problem reported
5588c2aa98e2SPeter Wemm			by Tom Good of St. Vincent's North Richmond Community
5589c2aa98e2SPeter Wemm			Mental Health Center Residential Services.
5590c2aa98e2SPeter Wemm		AIX 4: Use size_t for SOCKADDR_SIZE_T and SOCKOPT_SIZE_T.
5591c2aa98e2SPeter Wemm			Suggested by Brett Hogden of Rochester Gas & Electric
5592c2aa98e2SPeter Wemm			Corp.
5593c2aa98e2SPeter Wemm		Linux: avoid compile problem for versions of <setjmp.h> that
5594c2aa98e2SPeter Wemm			#define both setjmp and longjmp.  Problem pointed out
5595c2aa98e2SPeter Wemm			by J.R. Oldroyd of TerraNet.
5596c2aa98e2SPeter Wemm		CONFIG: SCO UnixWare 2.1: Support for OSTYPE(sco-uw-2.1)
5597c2aa98e2SPeter Wemm			from Christopher Durham of SCO.
5598c2aa98e2SPeter Wemm		CONFIG: NEXTSTEP: define confCW_FILE to
5599c2aa98e2SPeter Wemm			/etc/sendmail/sendmail.cw to match the usual
5600c2aa98e2SPeter Wemm			configuration.  Patch from Dennis Glatting of
5601c2aa98e2SPeter Wemm			PlainTalk.
5602c2aa98e2SPeter Wemm	CONFIG: MAILER(fax) called a program that hasn't existed for a long
5603c2aa98e2SPeter Wemm		time.  Convert to use the HylaFAX 4.0 conventions.  Suggested
5604c2aa98e2SPeter Wemm		by Harry Styron.
5605c2aa98e2SPeter Wemm	CONFIG: Improve sample anti-spam rulesets in cf/cf/knecht.mc.  These
5606c2aa98e2SPeter Wemm		are the rulesets in use on sendmail.org.
5607c2aa98e2SPeter Wemm	MAKEMAP: give error on GDBM files.
5608c2aa98e2SPeter Wemm	MAIL.LOCAL: Make error messages a bit more explicit, for example,
5609c2aa98e2SPeter Wemm		telling more details on what actually changed when "file
5610c2aa98e2SPeter Wemm		changed after open".
5611c2aa98e2SPeter Wemm	CONTRIB: etrn.pl: Ignore comments in Fw files.  Support multiple Fw
5612c2aa98e2SPeter Wemm		files.
5613c2aa98e2SPeter Wemm	CONTRIB: passwd-to-alias.pl: Handle 8 bit characters and '-'.
5614c2aa98e2SPeter Wemm	NEW FILES:
5615c2aa98e2SPeter Wemm		src/Makefiles/Makefile.OpenBSD
5616c2aa98e2SPeter Wemm		src/Makefiles/Makefile.RISCos.4_0
5617c2aa98e2SPeter Wemm		test/t_exclopen.c
5618c2aa98e2SPeter Wemm		cf/ostype/sco-uw-2.1.m4
5619c2aa98e2SPeter Wemm	DELETED FILES:
5620c2aa98e2SPeter Wemm		Makefile
5621c2aa98e2SPeter Wemm
562206f25ae9SGregory Neil Shapiro8.8.6/8.8.6	1997/06/14
5623c2aa98e2SPeter Wemm	    *************************************************************
5624c2aa98e2SPeter Wemm	    * The extensive assistance of Gregory Neil Shapiro of WPI	*
5625c2aa98e2SPeter Wemm	    * in preparing this release is gratefully appreciated.	*
5626c2aa98e2SPeter Wemm	    * Sun Microsystems has also provided resources toward	*
5627c2aa98e2SPeter Wemm	    * continued sendmail development.				*
5628c2aa98e2SPeter Wemm	    *************************************************************
5629c2aa98e2SPeter Wemm	SECURITY: A few systems allow an open with the O_EXCL|O_CREAT open
5630c2aa98e2SPeter Wemm		mode bits set to create a file that is a symbolic link that
5631c2aa98e2SPeter Wemm		points nowhere.  This makes it possible to create a root
5632c2aa98e2SPeter Wemm		owned file in an arbitrary directory by inserting the symlink
5633c2aa98e2SPeter Wemm		into a writable directory after the initial lstat(2) check
5634c2aa98e2SPeter Wemm		determined that the file did not exist.  The only verified
5635c2aa98e2SPeter Wemm		example of a system having these odd semantics for O_EXCL
5636c2aa98e2SPeter Wemm		and symbolic links was HP-UX prior to version 9.07.  Most
5637c2aa98e2SPeter Wemm		systems do not have the problem, since a exclusive create
5638c2aa98e2SPeter Wemm		of a file disallows symbolic links.  Systems that have been
5639c2aa98e2SPeter Wemm		verified to NOT have the problem include AIX 3.x, *BSD,
5640c2aa98e2SPeter Wemm		DEC OSF/1, HP-UX 9.07 and higher, Linux, SunOS, Solaris,
5641c2aa98e2SPeter Wemm		and Ultrix.  This is a potential exposure on systems that
5642c2aa98e2SPeter Wemm		have this bug and which do not have a MAILER-DAEMON alias
5643c2aa98e2SPeter Wemm		pointing at a legitimate account, since this will cause old
5644c2aa98e2SPeter Wemm		mail to be dropped in /var/tmp/dead.letter.
5645c2aa98e2SPeter Wemm	SECURITY: Problems can occur on poorly managed systems, specifically,
5646c2aa98e2SPeter Wemm		if maps or alias files are in world writable directories.
5647c2aa98e2SPeter Wemm		If your system has alias maps in writable directories, it
5648c2aa98e2SPeter Wemm		is potentially possible for an attacker to replace the .db
5649c2aa98e2SPeter Wemm		(or .dir and .pag) files by symbolic links pointing at
5650c2aa98e2SPeter Wemm		another database; this can be used either to expose
5651c2aa98e2SPeter Wemm		information (e.g., by pointing an alias file at /etc/spwd.db
5652c2aa98e2SPeter Wemm		and probing for accounts), or as a denial-of-service attack
5653c2aa98e2SPeter Wemm		(by trashing the password database).  The fix disallows
5654c2aa98e2SPeter Wemm		symbolic links entirely when rebuilding alias files or on
5655c2aa98e2SPeter Wemm		maps that are in writable directories, and always warns on
5656c2aa98e2SPeter Wemm		writable directories; 8.9 will probably consider writable
5657c2aa98e2SPeter Wemm		directories to be fatal errors.  This does not represent an
5658c2aa98e2SPeter Wemm		exposure on systems that have alias files in unwritable
5659c2aa98e2SPeter Wemm		system directories.
5660c2aa98e2SPeter Wemm	SECURITY: disallow .forward or :include: files that are links (hard
5661c2aa98e2SPeter Wemm		or soft) if the parent directory (or any directory in the
5662c2aa98e2SPeter Wemm		path) is writable by anyone other than the owner.  This is
5663c2aa98e2SPeter Wemm		similar to the previous case for user files.  This change
5664c2aa98e2SPeter Wemm		should not affect most systems, but is necessary to prevent
5665c2aa98e2SPeter Wemm		an attacker who can write the directory from pointing such
5666c2aa98e2SPeter Wemm		files at other files that are readable only by the owner.
5667c2aa98e2SPeter Wemm	SECURITY: Tighten safechown rules: many systems will say that they
5668c2aa98e2SPeter Wemm		have a safe (restricted to root) chown even on files that
5669c2aa98e2SPeter Wemm		are mounted from another system that allows owners to give
5670c2aa98e2SPeter Wemm		away files.  The new rules are very strict, trusting file
5671c2aa98e2SPeter Wemm		ownership only in those few cases where the system has
5672c2aa98e2SPeter Wemm		been verified to be at least as paranoid as necessary.
5673c2aa98e2SPeter Wemm		However, it is possible to relax the rules to partially
5674c2aa98e2SPeter Wemm		trust the ownership if the directory path is not world or
5675c2aa98e2SPeter Wemm		group writable.  This might allow someone who has a legitimate
5676c2aa98e2SPeter Wemm		:include: file (referenced directly from /etc/aliases) to
5677c2aa98e2SPeter Wemm		become another non-root user if the :include: file is in a
5678c2aa98e2SPeter Wemm		non-writable directory on an NFS-mounted filesystem where
5679c2aa98e2SPeter Wemm		the local system says that giveaway is denied but it is
5680c2aa98e2SPeter Wemm		actually permitted.  I believe this to be a very small set
5681c2aa98e2SPeter Wemm		of cases.  If in doubt, do not point :include: aliases at
5682c2aa98e2SPeter Wemm		NFS-mounted filesystems.
5683c2aa98e2SPeter Wemm	SECURITY: When setting a numeric group id using the RunAsUser option
5684c2aa98e2SPeter Wemm		(e.g., "O RunAsUser=10:20", the group id would not be set.
5685c2aa98e2SPeter Wemm		Implicit group ids (e.g., "O RunAsUser=mailnull") or alpha
5686c2aa98e2SPeter Wemm		group ids (e.g., "O RunAsUser=mailuser:mailgrp") worked fine.
5687c2aa98e2SPeter Wemm		The user id was still set properly.  Problem noted by Uli
5688c2aa98e2SPeter Wemm		Pralle of the Technical University of Berlin.
5689c2aa98e2SPeter Wemm	Save the initial gid set for use when checking for if the
5690c2aa98e2SPeter Wemm		PrivacyOptions=restrictmailq option is set.  Problem reported
5691c2aa98e2SPeter Wemm		by Wolfgang Ley of DFN-CERT.
5692c2aa98e2SPeter Wemm	Make 55x reply codes to the SMTP DATA-"." be non-sticky (i.e., a
5693c2aa98e2SPeter Wemm		failure on one message won't affect future messages to the
5694c2aa98e2SPeter Wemm		same host).
5695c2aa98e2SPeter Wemm	IP source route printing had an "off by one" error that would
5696c2aa98e2SPeter Wemm		affect any options that came after the route option.  Patch
5697c2aa98e2SPeter Wemm		from Theo de Raadt.
5698c2aa98e2SPeter Wemm	The "Message is too large" error didn't successfully bounce the error
5699c2aa98e2SPeter Wemm		back to the sender.  Problem reported by Stephen More of
5700c2aa98e2SPeter Wemm		PSI; patch from Gregory Neil Shapiro of WPI.
5701c2aa98e2SPeter Wemm	Change SMTP status code 553 to map into Extended code 5.1.0 (instead
5702c2aa98e2SPeter Wemm		of 5.1.3); it apparently gets used in multiple ways.
5703c2aa98e2SPeter Wemm		Suggested by John Myers of Portola Communications.
5704c2aa98e2SPeter Wemm	Fix possible extra null byte generated during collection if errors
5705c2aa98e2SPeter Wemm		occur at the beginning of the stream.  Patch contributed by
5706c2aa98e2SPeter Wemm		Andrey A. Chernov and Gregory Neil Shapiro.
5707c2aa98e2SPeter Wemm	Code changes to avoid possible reentrant call of malloc/free within
5708c2aa98e2SPeter Wemm		a signal handler.  Problem noted by John Beck of Sun
5709c2aa98e2SPeter Wemm		Microsystems.
5710c2aa98e2SPeter Wemm	Move map initialization to be earlier so that check_relay ruleset
5711c2aa98e2SPeter Wemm		will have the latest version of the map data.  Problem noted
5712c2aa98e2SPeter Wemm		by Paul Forgey of Metainfo; patch from Gregory Neil Shapiro.
5713c2aa98e2SPeter Wemm	If there are fatal errors during the collection phase (e.g., message
5714c2aa98e2SPeter Wemm		too large) don't send the bogus message.
5715c2aa98e2SPeter Wemm	Avoid "cannot open xfAAA00000" messages when sending to aliases that
5716c2aa98e2SPeter Wemm		have errors and have owner- aliases.  Problem noted by Michael
5717c2aa98e2SPeter Wemm		Barber of MTU; fix from Gregory Neil Shapiro of WPI.
5718c2aa98e2SPeter Wemm	Avoid null pointer dereference on illegal Boundary= parameters in
5719c2aa98e2SPeter Wemm		multipart/mixed Content-Type: header.  Problem noted by
5720c2aa98e2SPeter Wemm		Richard Muirden of RMIT University.
5721c2aa98e2SPeter Wemm	Always print error messages during newaliases (-bi) even if the
5722c2aa98e2SPeter Wemm		ErrorMode is not set to "print".  Fix from Gregory Neil
5723c2aa98e2SPeter Wemm		Shapiro.
5724c2aa98e2SPeter Wemm	Test mode could core dump if you did a /map lookup in an optional map
5725c2aa98e2SPeter Wemm		that could not be opened.  Based on a fix from John Beck of
5726c2aa98e2SPeter Wemm		Sun Microsystems.
5727c2aa98e2SPeter Wemm	If DNS is misconfigured so that the last MX record tried points to
5728c2aa98e2SPeter Wemm		a host that does not have an A record, but other MX records
5729c2aa98e2SPeter Wemm		pointed to something reasonable, don't bounce the message
5730c2aa98e2SPeter Wemm		with a "host unknown" error.  Note that this should really
5731c2aa98e2SPeter Wemm		be fixed in the zone file for the domain.  Problem noted by
5732c2aa98e2SPeter Wemm		Joe Rhett of Navigist, Inc.
5733c2aa98e2SPeter Wemm	If a map fails (e.g., DNS times out) on all recipient addresses, mark
5734c2aa98e2SPeter Wemm		the message as having been tried; otherwise the next queue
5735c2aa98e2SPeter Wemm		run will not realize that this is a second attempt and will
5736c2aa98e2SPeter Wemm		retry immediately.  Problem noted by Bryan Costales of
5737c2aa98e2SPeter Wemm		Mercury Mail.
5738c2aa98e2SPeter Wemm	If the clock is set backwards, and a MinQueueAge is set, no jobs
5739c2aa98e2SPeter Wemm		will be run until the later setting of the clock is reached.
5740c2aa98e2SPeter Wemm		"Problem" (I use the term loosely) noted by Eric Hagberg of
5741c2aa98e2SPeter Wemm		Morgan Stanley.
5742c2aa98e2SPeter Wemm	If the load average rises above the cutoff threshold (above which
5743c2aa98e2SPeter Wemm		sendmail will not process the queue at all) during a queue
5744c2aa98e2SPeter Wemm		run, abort the queue run immediately.  Problem noted by
5745c2aa98e2SPeter Wemm		Bryan Costales of Mercury Mail.
5746c2aa98e2SPeter Wemm	The variable queue processing algorithm (based on the message size,
5747c2aa98e2SPeter Wemm		number of recipients, message precedence, and job age) was
5748c2aa98e2SPeter Wemm		non-functional -- either the entire queue was processed or
5749c2aa98e2SPeter Wemm		none of the queue was processed.  The updated algorithm
5750c2aa98e2SPeter Wemm		does no queue run if a single recipient zero size job will
5751c2aa98e2SPeter Wemm		not be run.
5752c2aa98e2SPeter Wemm	If there is a fatal ("panic") message that will cause sendmail to
5753c2aa98e2SPeter Wemm		die immediately, never hold the error message for future
5754c2aa98e2SPeter Wemm		printing.
5755c2aa98e2SPeter Wemm	Force ErrorMode=print in -bt mode so that all errors are printed
5756c2aa98e2SPeter Wemm		regardless of the setting of the ErrorMode option in the
5757c2aa98e2SPeter Wemm		configuration file.  Patch from Gregory Neil Shapiro.
5758c2aa98e2SPeter Wemm	New compile flag HASSTRERROR says that this OS has the strerror(3)
5759c2aa98e2SPeter Wemm		routine available in one of the libraries.  Use it in conf.h.
5760c2aa98e2SPeter Wemm	The -m (match only) flag now works on host class maps.
5761c2aa98e2SPeter Wemm	If class hash or btree maps are rebuilt, sendmail will now detect
5762c2aa98e2SPeter Wemm		this and reopen the map.  Previously, they could give
5763c2aa98e2SPeter Wemm		erroneous results during a single message processing
5764c2aa98e2SPeter Wemm		(but would recover when the next message was received).
5765c2aa98e2SPeter Wemm	Don't delete zero length queue files when doing queue runs until the
5766c2aa98e2SPeter Wemm		files are at least ten minutes old.  This avoids a potential
5767c2aa98e2SPeter Wemm		race condition: the creator creates the qf file, getting back
5768c2aa98e2SPeter Wemm		a file descriptor.  The queue runner locks it and deletes it
5769c2aa98e2SPeter Wemm		because it is zero length.  The creator then writes the
5770c2aa98e2SPeter Wemm		descriptor that is now for a disconnected file, and the
5771c2aa98e2SPeter Wemm		job goes away.  Based on a suggestion by Bryan Costales.
5772c2aa98e2SPeter Wemm	When determining the "validated" host name ($_ macro), do a forward
5773c2aa98e2SPeter Wemm		(A) DNS lookup on the result of the PTR lookup and compare
5774c2aa98e2SPeter Wemm		results.  If they differ or if the PTR lookup fails, tag the
5775c2aa98e2SPeter Wemm		address as "may be forged".
5776c2aa98e2SPeter Wemm	Log null connections (i.e., hosts that connect but do not do any
5777c2aa98e2SPeter Wemm		substantive activity on the connection before disconnecting;
5778c2aa98e2SPeter Wemm		"substantive" is defined to be MAIL, EXPN, VRFY, or ETRN.
5779c2aa98e2SPeter Wemm	Always permit "writes" to /dev/null regardless of the link count.
5780c2aa98e2SPeter Wemm		This is safe because /dev/null is special cased, and no open
5781c2aa98e2SPeter Wemm		or write is ever actually attempted.  Patch from Villy Kruse
5782c2aa98e2SPeter Wemm		of TwinCom.
5783c2aa98e2SPeter Wemm	If a message cannot be sent because of a 552 (exceeded storage
5784c2aa98e2SPeter Wemm		allocation) response to the MAIL FROM:<>, and a SIZE= parameter
5785c2aa98e2SPeter Wemm		was given, don't return the body in the bounce, since there
5786c2aa98e2SPeter Wemm		is a very good chance that the message will double-bounce.
5787c2aa98e2SPeter Wemm	Fix possible line truncation if a quoted-printable had an =00 escape
5788c2aa98e2SPeter Wemm		in the body.  Problem noted by Charles Karney of the Princeton
5789c2aa98e2SPeter Wemm		Plasma Physics Laboratory.
5790c2aa98e2SPeter Wemm	Notify flags (e.g., -NSUCCESS) were lost on user+detail addresses.
5791c2aa98e2SPeter Wemm		Problem noted by Kari Hurtta of the Finnish Meteorological
5792c2aa98e2SPeter Wemm		Institute.
5793c2aa98e2SPeter Wemm	The MaxDaemonChildren option wasn't applying to queue runs as
5794c2aa98e2SPeter Wemm		documented.  Note that this increases the potential denial
5795c2aa98e2SPeter Wemm		of service problems with this option: an attacker can
5796c2aa98e2SPeter Wemm		connect many times, and thereby lock out queue runs as well
5797c2aa98e2SPeter Wemm		as incoming connections.  If you use this option, you should
5798c2aa98e2SPeter Wemm		run the "sendmail -bd" and "sendmail -q30m" jobs separately
5799c2aa98e2SPeter Wemm		to avoid this attack.  Failure to limit noted by Matthew
5800c2aa98e2SPeter Wemm		Dillon of BEST Internet Communications.
5801c2aa98e2SPeter Wemm	Always give a message in newaliases if alias files cannot be
5802c2aa98e2SPeter Wemm		opened instead of failing silently.  Suggested by Gregory
5803c2aa98e2SPeter Wemm		Neil Shapiro.  This change makes the code match the O'Reilly
5804c2aa98e2SPeter Wemm		book (2nd edition).
5805c2aa98e2SPeter Wemm	Some older versions of the resolver could return with h_errno == -1
5806c2aa98e2SPeter Wemm		if no name server could be reached, causing mail to bounce
5807c2aa98e2SPeter Wemm		instead of queueing.  Treat this like TRY_AGAIN.  Fix from
5808c2aa98e2SPeter Wemm		John Beck of SunSoft.
5809c2aa98e2SPeter Wemm	If a :include: file is owned by a user that does not have an entry
5810c2aa98e2SPeter Wemm		in the passwd file, sendmail could dereference a null pointer.
5811c2aa98e2SPeter Wemm		Problem noted by Satish Mynam of Sun Microsystems.
5812c2aa98e2SPeter Wemm	Take precautions to make sure that the SMTP protocol cannot get out
5813c2aa98e2SPeter Wemm		of sync if (for example) an alias file cannot be opened.
5814c2aa98e2SPeter Wemm	Fix a possible race condition that can cause a SIGALRM to come in
5815c2aa98e2SPeter Wemm		immediately after a SIGHUP, causing the new sendmail to die.
5816c2aa98e2SPeter Wemm	Avoid possible hang on SVr3 systems when doing child reaping.  Patch
5817c2aa98e2SPeter Wemm		from Villy Kruse of TwinCom.
5818c2aa98e2SPeter Wemm	Ignore improperly formatted SMTP reply codes.  Previously these were
5819c2aa98e2SPeter Wemm		partially processed, which could cause confusing error
5820c2aa98e2SPeter Wemm		returns.
5821c2aa98e2SPeter Wemm	Fix possible bogus pointer dereference when doing ldapx map lookups
5822c2aa98e2SPeter Wemm		on some architectures.
5823c2aa98e2SPeter Wemm	Portability:
5824c2aa98e2SPeter Wemm		A/UX: from Jim Jagielski of NASA/GSFC.
5825c2aa98e2SPeter Wemm		glibc: SOCK_STREAM was changed from a #define to an enum,
5826c2aa98e2SPeter Wemm			thus breaking #ifdef SOCK_STREAM.  Only option seems
5827c2aa98e2SPeter Wemm			to be to assume SOCK_STREAM if __GNU_LIBRARY__ is
5828c2aa98e2SPeter Wemm			defined.  Problem reported by A Sun of the University
5829c2aa98e2SPeter Wemm			of Washington.
5830c2aa98e2SPeter Wemm		Solaris: use SIOCGIFNUM to get the number of interfaces on
5831c2aa98e2SPeter Wemm			the system rather than guessing at compile time.
5832c2aa98e2SPeter Wemm			Patch contributed by John Beck of Sun Microsystems.
5833c2aa98e2SPeter Wemm		Intel Paragon: from Wendy Lin of Purdue University.
5834c2aa98e2SPeter Wemm		GNU Hurd: from Miles Bader of the GNU project.
5835c2aa98e2SPeter Wemm		RISC/os 4.50 from Harlan Stenn of PFCS Corporation.
5836c2aa98e2SPeter Wemm		ISC Unix: wait never returns if SIGCLD signals are blocked.
5837c2aa98e2SPeter Wemm			Unfortunately releasing them opens a race condition,
5838c2aa98e2SPeter Wemm			but there appears to be no fix for this.  Patch from
5839c2aa98e2SPeter Wemm			Gregory Neil Shapiro.
5840c2aa98e2SPeter Wemm		BIND 8.1 for IPv6 compatibility from John Kennedy.
5841c2aa98e2SPeter Wemm		Solaris: a bug in strcasecmp caused characters with the
5842c2aa98e2SPeter Wemm			high order bit set to apparently randomly match
5843c2aa98e2SPeter Wemm			letters -- for example, $| (0233) matches "i" and "I".
5844c2aa98e2SPeter Wemm			Problem noted by John Gregson of the University of
5845c2aa98e2SPeter Wemm			Cambridge.
5846c2aa98e2SPeter Wemm		IRIX 6.x: make Makefile.IRIX.6.2 apply to all 6.x.  From
5847c2aa98e2SPeter Wemm			Kari Hurtta.
5848c2aa98e2SPeter Wemm		IRIX 6.x: Create Makefiles for systems that claim to be
5849c2aa98e2SPeter Wemm			IRIX64 but are 6.2 or higher (so use the regular
5850c2aa98e2SPeter Wemm			IRIX Makefile).
5851c2aa98e2SPeter Wemm		IRIX 6.x: Fix load average computation on 64 bit kernels.
5852c2aa98e2SPeter Wemm			Problem noted by Eric Hagberg of Morgan Stanley.
5853c2aa98e2SPeter Wemm	CONFIG: Some canonification was still done for UUCP-like addresses
5854c2aa98e2SPeter Wemm		even if FEATURE(nocanonify) was set.  Problem pointed out by
5855c2aa98e2SPeter Wemm		Brian Candler.
5856c2aa98e2SPeter Wemm	CONFIG: In some cases UUCP mailers wouldn't properly recognize all
5857c2aa98e2SPeter Wemm		local names as local.  Problem noted by Jeff Polk of BSDI;
5858c2aa98e2SPeter Wemm		fix provided by Gregory Neil Shapiro.
5859c2aa98e2SPeter Wemm	CONFIG: The "local:user" syntax entries in mailertables and other
5860c2aa98e2SPeter Wemm		"mailer:user" syntax locations returned an incorrect value
5861c2aa98e2SPeter Wemm		for the $h macro.  Problem noted by Gregory Neil Shapiro.
5862c2aa98e2SPeter Wemm	CONFIG: Retain "+detail" information when forwarding mail to a
5863c2aa98e2SPeter Wemm		MAIL_HUB, LUSER_RELAY, or LOCAL_RELAY.  Patch from Philip
5864c2aa98e2SPeter Wemm		Guenther of Gustavus Adolphus College.
5865c2aa98e2SPeter Wemm	CONFIG: Make sure user+detail works for FEATURE(virtusertable);
5866c2aa98e2SPeter Wemm		rules are the same as for aliasing.  Based on a patch from
5867c2aa98e2SPeter Wemm		Gregory Neil Shapiro.
5868c2aa98e2SPeter Wemm	CONFIG: Break up parsing rules into several pieces; this should
5869c2aa98e2SPeter Wemm		have no functional change in this release, but makes it
5870c2aa98e2SPeter Wemm		possible to have better anti-spam rulesets in the future.
5871c2aa98e2SPeter Wemm	CONFIG: Disallow double dots in host names to avoid having the
5872c2aa98e2SPeter Wemm		HostStatusDirectory store status under the wrong name.
5873c2aa98e2SPeter Wemm		In some cases this can be used as a denial-of-service attack.
5874c2aa98e2SPeter Wemm		Problem noted by Ron Jarrell of Virginia Tech, patch from
5875c2aa98e2SPeter Wemm		Gregory Neil Shapiro.
5876c2aa98e2SPeter Wemm	CONFIG: Don't use F=m (multiple recipients per invocation) for
5877c2aa98e2SPeter Wemm		MAILER(procmail), but do pass F=Pn9 (include Return-Path:,
5878c2aa98e2SPeter Wemm		don't include From_, and convert to 8-bit).  Suggestions
5879c2aa98e2SPeter Wemm		from Kimmo Suominen and Roderick Schertler.
588006f25ae9SGregory Neil Shapiro	CONFIG: Domains under $=M (specified with MASQUERADE_DOMAIN) were
5881c2aa98e2SPeter Wemm		being masqueraded as though FEATURE(masquerade_entire_domain)
5882c2aa98e2SPeter Wemm		was specified, even when it wasn't.
5883c2aa98e2SPeter Wemm	MAIL.LOCAL: Solaris 2.6 has snprintf.  From John Beck of SunSoft.
5884c2aa98e2SPeter Wemm	MAIL.LOCAL: SECURITY: check to make sure that an attacker doesn't
5885c2aa98e2SPeter Wemm		"slip in" a symbolic link between the lstat(2) call and the
5886c2aa98e2SPeter Wemm		exclusive open.  This is only a problem on System V derived
5887c2aa98e2SPeter Wemm		systems that allow an exclusive create on files that are
5888c2aa98e2SPeter Wemm		symbolic links pointing nowhere.
5889c2aa98e2SPeter Wemm	MAIL.LOCAL: If the final mailbox close() failed, the user id was
5890c2aa98e2SPeter Wemm		not reset back to root, which on some systems would cause
5891c2aa98e2SPeter Wemm		later mailboxes to fail.  Also, any partial message would
5892c2aa98e2SPeter Wemm		not be truncated, which could result in repeated deliveries.
5893c2aa98e2SPeter Wemm		Problem noted by Bruce Evans via Peter Wemm (FreeBSD
5894c2aa98e2SPeter Wemm		developers).
5895c2aa98e2SPeter Wemm	MAKEMAP: Handle cases where O_EXLOCK is #defined to be 0.  A similar
5896c2aa98e2SPeter Wemm		change to the sendmail map code was made in 8.8.3.  Problem
5897c2aa98e2SPeter Wemm		noted by Gregory Neil Shapiro.
5898c2aa98e2SPeter Wemm	MAKEMAP: Give warnings on file problems such as map files that are
589940266059SGregory Neil Shapiro		symbolic links; although makemap is not set-user-ID root, it is
5900c2aa98e2SPeter Wemm		often run as root and hence has the potential for the same
5901c2aa98e2SPeter Wemm		sorts of problems as alias rebuilds.
5902c2aa98e2SPeter Wemm	MAKEMAP: Change compilation so that it will link properly on
5903c2aa98e2SPeter Wemm		NEXTSTEP.
5904c2aa98e2SPeter Wemm	CONTRIB: etrn.pl: search for Cw as well as Fw lines in sendmail.cf.
5905c2aa98e2SPeter Wemm		Accept an optional list of arguments following the server
5906c2aa98e2SPeter Wemm		name for the ETRN arguments to use (instead of $=w).  Other
5907c2aa98e2SPeter Wemm		miscellaneous bug fixes.  From Christian von Roques via
5908c2aa98e2SPeter Wemm		John Beck of Sun Microsystems.
5909c2aa98e2SPeter Wemm	CONTRIB: Add passwd-to-alias.pl, contributed by Kari Hurtta.  This
5910c2aa98e2SPeter Wemm		Perl script converts GECOS information in the /etc/passwd
5911c2aa98e2SPeter Wemm		file into aliases, allowing for faster access to full name
5912c2aa98e2SPeter Wemm		lookups; it is also clever about adding aliases (to root)
5913c2aa98e2SPeter Wemm		for system accounts.
5914c2aa98e2SPeter Wemm	NEW FILES:
5915c2aa98e2SPeter Wemm		src/safefile.c
5916c2aa98e2SPeter Wemm		cf/ostype/gnuhurd.m4
5917c2aa98e2SPeter Wemm		cf/ostype/irix6.m4
5918c2aa98e2SPeter Wemm		contrib/passwd-to-alias.pl
5919c2aa98e2SPeter Wemm		src/Makefiles/Makefile.IRIX64.6.1
5920c2aa98e2SPeter Wemm		src/Makefiles/Makefile.IRIX64.6.x
5921c2aa98e2SPeter Wemm	RENAMED FILES:
5922c2aa98e2SPeter Wemm		src/Makefiles/Makefile.IRIX.6.2 =>	Makefile.IRIX.6.x
5923c2aa98e2SPeter Wemm		src/Makefiles/Makefile.IRIX64 =>	Makefile.IRIX64.6.0
5924c2aa98e2SPeter Wemm
592506f25ae9SGregory Neil Shapiro8.8.5/8.8.5	1997/01/21
5926c2aa98e2SPeter Wemm	SECURITY: Clear out group list during startup.  Without this, sendmail
5927c2aa98e2SPeter Wemm		will continue to run with the group permissions of the caller,
5928c2aa98e2SPeter Wemm		even if RunAsUser is specified.
5929c2aa98e2SPeter Wemm	SECURITY: Make purgestat (-bH) be root-only.  This is not in response
5930c2aa98e2SPeter Wemm		to any known attack, but it's best to be conservative.
5931c2aa98e2SPeter Wemm		Suggested by Peter Wemm of DIALix.
5932c2aa98e2SPeter Wemm	SECURITY: Fix buffer overrun problem in MIME code that has possible
5933c2aa98e2SPeter Wemm		security implications.  Patch from Alex Garthwaite of the
5934c2aa98e2SPeter Wemm		University of Pennsylvania.
5935c2aa98e2SPeter Wemm	Use of a -f flag with a phrase attached (e.g., "-f 'Full Name <addr>'")
5936c2aa98e2SPeter Wemm		would truncate the address after "Full".  Although the -f
5937c2aa98e2SPeter Wemm		syntax is incorrect (since it is in the envelope, it
5938c2aa98e2SPeter Wemm		shouldn't have comments and full names), the failure mode
5939c2aa98e2SPeter Wemm		was unnecessarily awful.
5940c2aa98e2SPeter Wemm	Fix a possible null pointer dereference when converting 8-bit data
5941c2aa98e2SPeter Wemm		to a 7-bit format.  Problem noted by Jim Hutchins of
5942c2aa98e2SPeter Wemm		Sandia National Labs and David James of British Telecom.
5943c2aa98e2SPeter Wemm	Clear out stale state that affected F=9 on SMTP mailers in queue
5944c2aa98e2SPeter Wemm		runs.  Although this really shouldn't be used (F=9 is for
5945c2aa98e2SPeter Wemm		final delivery only, and using it on an SMTP mailer makes
5946c2aa98e2SPeter Wemm		it possible for a message to be converted from 8->7->8->7
5947c2aa98e2SPeter Wemm		bits several times), it shouldn't have failed with a syserr.
5948c2aa98e2SPeter Wemm		Problem noted by Eric Hagberg of Morgan Stanley.
5949c2aa98e2SPeter Wemm	_Really_ fix the multiple :maildrop code in the user database
5950c2aa98e2SPeter Wemm		module.  Patch from Roy Mongiovi of Georgia Tech.
5951c2aa98e2SPeter Wemm	Let F lines in the configuration file actually read root-only
5952c2aa98e2SPeter Wemm		files if the configuration file is safe.  Based on a
5953c2aa98e2SPeter Wemm		patch from Keith Reynolds of SCO.
5954c2aa98e2SPeter Wemm	ETRN followed by QUIT would hold the connection open until the queue
5955c2aa98e2SPeter Wemm		run completed.  Problem noted by Truck Lewis of TDK
5956c2aa98e2SPeter Wemm		Semiconductor Corp.
5957c2aa98e2SPeter Wemm	It turns out that despite the documentation, the TCP wrappers library
5958c2aa98e2SPeter Wemm		does _not_ log rejected connections.  Do the logging ourselves.
5959c2aa98e2SPeter Wemm		Problem noted by Fletcher Mattox of the University of Texas
5960c2aa98e2SPeter Wemm		at Austin.
5961c2aa98e2SPeter Wemm	If sendmail finds a qf file in its queue directory that is an unknown
5962c2aa98e2SPeter Wemm		version (e.g., when backing out to an old version), the
5963c2aa98e2SPeter Wemm		error is reported on every queue run.  Change it to only
5964c2aa98e2SPeter Wemm		give the error once (and rename the qf => Qf).  Patch from
5965c2aa98e2SPeter Wemm		William A. Gianopoulos of Raytheon Company.
5966c2aa98e2SPeter Wemm	Start a new session when doing background delivery; currently it
5967c2aa98e2SPeter Wemm		ignored signals but didn't start a new signal, that caused
5968c2aa98e2SPeter Wemm		some problems if a background process tried to send mail
5969c2aa98e2SPeter Wemm		under certain circumstances.  Problem noted by Eric Hagberg
5970c2aa98e2SPeter Wemm		of Morgan Stanley; fix from Kari Hurtta.
5971c2aa98e2SPeter Wemm	Simplify test for skipping a queue run to just check if the current
5972c2aa98e2SPeter Wemm		load average is >= the queueing load average.  Previously
5973c2aa98e2SPeter Wemm		the check factored in some other parameters that caused it
5974c2aa98e2SPeter Wemm		to essentially never skip the queue run.  Patch from Bryan
5975c2aa98e2SPeter Wemm		Costales.
5976c2aa98e2SPeter Wemm	If the SMTP server is running in "nullserver" mode (that is, it is
5977c2aa98e2SPeter Wemm		rejecting all commands), start sleeping after MAXBADCOMMAND
5978c2aa98e2SPeter Wemm		(25) commands; this helps prevent a bad guy from putting
5979c2aa98e2SPeter Wemm		you into a tight loop as a denial-of-service attack.  Based
5980c2aa98e2SPeter Wemm		on an e-mail conversation with Brad Knowles of AOL.
5981c2aa98e2SPeter Wemm	Slow down when too many "light weight" commands have been issued;
5982c2aa98e2SPeter Wemm		this helps prevent a class of denial-of-service attacks.
5983c2aa98e2SPeter Wemm		The current values and defaults are:
5984c2aa98e2SPeter Wemm		    MAXNOOPCOMMANDS	20	NOOP, VERB, ONEX, XUSR
5985c2aa98e2SPeter Wemm		    MAXHELOCOMMANDS	3	HELO, EHLO
5986c2aa98e2SPeter Wemm		    MAXVRFYCOMMANDS	6	VRFY, EXPN
5987c2aa98e2SPeter Wemm		    MAXETRNCOMMANDS	8	ETRN
5988c2aa98e2SPeter Wemm		These will probably be configurable in a future release.
5989c2aa98e2SPeter Wemm	On systems that have uid_t typedefed to be an unsigned short, programs
5990c2aa98e2SPeter Wemm		that had the F=S flag and no U= equate would be invoked with
5991c2aa98e2SPeter Wemm		the real uid set to 65535 rather than being left unchanged.
5992c2aa98e2SPeter Wemm	In some cases, NOTIFY=NEVER was not being honored.  Problem noted
5993c2aa98e2SPeter Wemm		by Steve Hubert of the University of Washington, Seattle.
5994c2aa98e2SPeter Wemm	Mail that was Quoted-Printable encoded and had a soft line break on
5995c2aa98e2SPeter Wemm		the last line (i.e., an incomplete continuation) had the last
5996c2aa98e2SPeter Wemm		line dropped.  Since this appears to be illegal it isn't
5997c2aa98e2SPeter Wemm		clear what to do with it, but flushing the last line seems
5998c2aa98e2SPeter Wemm		to be a better "fail soft" approach.  Based on a patch from
5999c2aa98e2SPeter Wemm		Eric Hagberg.
6000c2aa98e2SPeter Wemm	If AllowBogusHELO and PrivacyOptions=needmailhelo are both set, a
6001c2aa98e2SPeter Wemm		bogus HELO command still causes the "Polite people say HELO
6002c2aa98e2SPeter Wemm		first" error message.  Problem pointed out by Chris Thomas
6003c2aa98e2SPeter Wemm		of UCLA; patch from John Beck of SunSoft.
6004c2aa98e2SPeter Wemm	Handle "sendmail -bp -qSfoobar" properly if restrictqrun is set
60052e43090eSPeter Wemm		in PrivacyOptions.  The -q shouldn't turn this command off.
6006c2aa98e2SPeter Wemm		Problem noted by Murray Kucherawy of Pacific Bell Internet;
6007c2aa98e2SPeter Wemm		based on a patch from Gregory Neil Shapiro of WPI.
6008c2aa98e2SPeter Wemm	Don't consider SMTP reply codes 452 or 552 (exceeded storage allocation)
6009c2aa98e2SPeter Wemm		in a DATA transaction to be sticky; these can occur because
6010c2aa98e2SPeter Wemm		a message is too large, and smaller messages should still go
6011c2aa98e2SPeter Wemm		through.  Problem noted by Matt Dillon of Best Internet
6012c2aa98e2SPeter Wemm		Communications.
6013c2aa98e2SPeter Wemm	In some cases bounces were saved in /var/tmp/dead.letter even if they
6014c2aa98e2SPeter Wemm		had been successfully delivered to the envelope sender.
6015c2aa98e2SPeter Wemm		Problem noted Eric Hagberg of Morgan Stanley; solution from
6016c2aa98e2SPeter Wemm		Gregory Neil Shapiro of WPI.
6017c2aa98e2SPeter Wemm	Give better diagnostics on long alias lines.  Based on code contributed
6018c2aa98e2SPeter Wemm		by Patrick Gosling of the University of Cambridge.
6019c2aa98e2SPeter Wemm	Increase the number of virtual interfaces that will be probed for
6020c2aa98e2SPeter Wemm		alternate names.  Problem noted by Amy Rich of Shore.Net.
6021c2aa98e2SPeter Wemm	PORTABILITY:
6022c2aa98e2SPeter Wemm		UXP/DS V20L10 for Fujitsu DS/90: Makefile patches from
6023c2aa98e2SPeter Wemm			Toshiaki Nomura of Fujitsu Limited.
6024c2aa98e2SPeter Wemm		SunOS with LDAP support: compile problems with struct timeval.
6025c2aa98e2SPeter Wemm			Patch from Nick Cuccia of TCSI Corporation.
6026c2aa98e2SPeter Wemm		SCO: from Keith Reynolds of SCO.
6027c2aa98e2SPeter Wemm		Solaris: kstat load average computation wasn't being used.
6028c2aa98e2SPeter Wemm			Fixes from Michael Ju. Tokarev of Telecom Service, JSC
6029c2aa98e2SPeter Wemm			(Moscow).
6030c2aa98e2SPeter Wemm		OpenBSD: from Jason Downs of teeny.org.
6031c2aa98e2SPeter Wemm		Altos System V: from Tim Rice.
6032c2aa98e2SPeter Wemm		Solaris 2.5: from Alan Perry of SunSoft.
6033c2aa98e2SPeter Wemm		Solaris 2.6: from John Beck of SunSoft.
6034c2aa98e2SPeter Wemm		Harris Nighthawk PowerUX (mh6000 box): from Bob Miorelli
6035c2aa98e2SPeter Wemm			of Pratt & Whitney <miorelli@pweh.com>.
6036c2aa98e2SPeter Wemm	CONFIG: It seems that I hadn't gotten the Received: line syntax
6037c2aa98e2SPeter Wemm		_just_right_ yet.  Tweak it again.  I'll omit the names
6038c2aa98e2SPeter Wemm		of the "contributors" (quantity two) in this one case.
6039c2aa98e2SPeter Wemm		As of now, NO MORE DISCUSSION about the syntax of the
6040c2aa98e2SPeter Wemm		Received: line.
6041c2aa98e2SPeter Wemm	CONFIG: Although FEATURE(nullclient) uses EXPOSED_USER (class $=E),
6042c2aa98e2SPeter Wemm		it never inserts that class into the output file.  Fix it
6043c2aa98e2SPeter Wemm		so it will honor EXPOSED_USER but will _not_ include root
6044c2aa98e2SPeter Wemm		automatically in this class.  Problem noted by Ronan KERYELL
6045c2aa98e2SPeter Wemm		of Centre de Recherche en Informatique de l'�cole Nationale
6046c2aa98e2SPeter Wemm		Sup�rieure des Mines de Paris (CRI-ENSMP).
6047c2aa98e2SPeter Wemm	CONFIG: Clean up handling of "local:" syntax in relay specifications
6048c2aa98e2SPeter Wemm		such as LUSER_RELAY.  This change permits the following
6049c2aa98e2SPeter Wemm		syntaxes:  ``local:'' will send to the same user on the
6050c2aa98e2SPeter Wemm		local machine (e.g., in a mailertable entry for "host",
6051c2aa98e2SPeter Wemm		``local:'' will cause an address addressed to user@host to
6052c2aa98e2SPeter Wemm		go to user on the local machone).  ``local:user'' will send
6053c2aa98e2SPeter Wemm		to the named user on the local machine.  ``local:user@host''
6054c2aa98e2SPeter Wemm		is equivalent to ``local:user'' (the host is ignored).  In
6055c2aa98e2SPeter Wemm		all cases, the original user@host is passed in $@ (i.e., the
6056c2aa98e2SPeter Wemm		detail information).  Inspired by a report from Michael Fuhr.
6057c2aa98e2SPeter Wemm	CONFIG: Strip quotes from the first word of an "error:" host
6058c2aa98e2SPeter Wemm		indication.  This lets you set (for example) the LUSER_RELAY
6059c2aa98e2SPeter Wemm		to be ``error:\"5.1.1\" Your Message Here''.  Note the use
6060c2aa98e2SPeter Wemm		of the \" so that the resulting string is properly quoted.
6061c2aa98e2SPeter Wemm		Problem noted by Gregory Neil Shapiro of WPI.
6062c2aa98e2SPeter Wemm	OP.ME: documentation was inconsistent about whether sendmail did a
6063c2aa98e2SPeter Wemm		NOOP or a RSET to probe the connection (it does a RSET).
6064c2aa98e2SPeter Wemm		Inconsistency noted by Deeran Peethamparam.
6065c2aa98e2SPeter Wemm	OP.ME: insert additional blank pages so it will print properly on
6066c2aa98e2SPeter Wemm		a duplex printer.  From Matthew Black of Cal State University,
6067c2aa98e2SPeter Wemm		Long Beach.
6068c2aa98e2SPeter Wemm
606906f25ae9SGregory Neil Shapiro8.8.4/8.8.4	1996/12/02
6070c2aa98e2SPeter Wemm	SECURITY: under some circumstances, an attacker could get additional
6071c2aa98e2SPeter Wemm		permissions by hard linking to files that were group
6072c2aa98e2SPeter Wemm		writable by the attacker.  The solution is to disallow any
6073c2aa98e2SPeter Wemm		files that have hard links -- this will affect .forward,
6074c2aa98e2SPeter Wemm		:include:, and output files.  Problem noted by Terry
6075c2aa98e2SPeter Wemm		Kyriacopoulos of Interlog Internet Services.  As a
6076c2aa98e2SPeter Wemm		workaround, set UnsafeGroupWrites -- always a good idea.
6077c2aa98e2SPeter Wemm	SECURITY: the TryNullMXList (w) option should not be safe -- if it
6078c2aa98e2SPeter Wemm		is, it is possible to do a denial-of-service attack on
6079c2aa98e2SPeter Wemm		MX hosts that rely on the use of the null MX list.  There
6080c2aa98e2SPeter Wemm		is no danger if you have this option turned off (the default).
6081c2aa98e2SPeter Wemm		Problem noted by Dan Bernstein.  Also, make the DontInitGroups
6082c2aa98e2SPeter Wemm		unsafe.  I know of no specific attack against this, although
6083c2aa98e2SPeter Wemm		a denial-of-service attack is probably possible, but in theory
6084c2aa98e2SPeter Wemm		you should not be able to safely tweak anything that affects
6085c2aa98e2SPeter Wemm		the permissions that are used when mail is delivered.
6086c2aa98e2SPeter Wemm	Purgestat could go into an infinite loop if one of the host status
6087c2aa98e2SPeter Wemm		directories somehow became empty.  Problem noted by Roy
6088c2aa98e2SPeter Wemm		Mongiovi of Georgia Tech.
6089c2aa98e2SPeter Wemm	Processes got "lost" when counting children due to a race condition.
6090c2aa98e2SPeter Wemm		This caused "proc_list_probe: lost pid" messages to be logged.
6091c2aa98e2SPeter Wemm		Problem noted by several people.
6092c2aa98e2SPeter Wemm	On systems with System V SIGCLD child signal semantics (notably AIX
6093c2aa98e2SPeter Wemm		and HP-UX), mail transactions would print the message "451
6094c2aa98e2SPeter Wemm		SMTP-MAIL: lost child: No child processes".  Problem noted
6095c2aa98e2SPeter Wemm		by several people.
6096c2aa98e2SPeter Wemm	Miscellaneous compiler warnings on picky compilers (or when setting
6097c2aa98e2SPeter Wemm		gcc to high warning levels).  From Tom Moore of NCR Corp.
6098c2aa98e2SPeter Wemm	SMTP protocol errors, and most errors on MAIL FROM: lines should
6099c2aa98e2SPeter Wemm		not be persistent between runs, since they are based on the
6100c2aa98e2SPeter Wemm		message rather than the host.  Problem noted by Matt Dillon
6101c2aa98e2SPeter Wemm		of Best Internet Communications.
6102c2aa98e2SPeter Wemm	The F=7 flag was ignored on SMTP mailers.  Problem noted by Tom Moore
6103c2aa98e2SPeter Wemm		of NCR (a.k.a., AT&T Global Information Solutions).
6104c2aa98e2SPeter Wemm	Avoid the possibility of having a child daemon run to completion
6105c2aa98e2SPeter Wemm		(including closing the SMTP socket) before the parent has
6106c2aa98e2SPeter Wemm		had a chance to close the socket; this can cause the parent
6107c2aa98e2SPeter Wemm		to hang for a long time waiting for the socket to drain.
6108c2aa98e2SPeter Wemm		Patch from Don Lewis of TDK Semiconductor.
6109c2aa98e2SPeter Wemm	If the fork() failed in a queue run, the queue runners would not be
6110c2aa98e2SPeter Wemm		rescheduled (so queue runs would stop).  Patch from Don Lewis.
6111c2aa98e2SPeter Wemm	Some error conditions in ETRN could cause output without an SMTP
6112c2aa98e2SPeter Wemm		status code.  Problem noted by Don Lewis.
6113c2aa98e2SPeter Wemm	Multiple :maildrop addresses in the user database didn't work properly.
6114c2aa98e2SPeter Wemm		Patch from Roy Mongiovi of Georgia Tech.
6115c2aa98e2SPeter Wemm	Add ".db" automatically onto any user database spec that does not
6116c2aa98e2SPeter Wemm		already have it; this is for consistency with makemap, the
6117c2aa98e2SPeter Wemm		K line, and the documentation.  Inconsistency pointed out
6118c2aa98e2SPeter Wemm		by Roy Mongiovi.
6119c2aa98e2SPeter Wemm	Allow sendmail to be properly called in nohup mode.  Patch from
6120c2aa98e2SPeter Wemm		Kyle Jones of UUNET.
6121c2aa98e2SPeter Wemm	Change ETRN to ignore but still update host status files; previously
6122c2aa98e2SPeter Wemm		it would ignore them and not save the updated status, which
6123c2aa98e2SPeter Wemm		caused stale information to be maintained.  Based on a patch
6124c2aa98e2SPeter Wemm		from Christopher Davis of Kapor Enterprises Inc.  Also, have
6125c2aa98e2SPeter Wemm		ETRN ignore the MinQueueAge option.
6126c2aa98e2SPeter Wemm	Patch long term host status to recover more gracefully from an empty
6127c2aa98e2SPeter Wemm		host status file condition.  Patch from NAKAMURA Motonori
6128c2aa98e2SPeter Wemm		of Kyoto University.
6129c2aa98e2SPeter Wemm	Several patches to signal handling code to fix potential race
6130c2aa98e2SPeter Wemm		conditions from Don Lewis.
6131c2aa98e2SPeter Wemm	Make it possible to compile with -DDAEMON=0 (previously it had some
6132c2aa98e2SPeter Wemm		compile errors).  This turns DAEMON, QUEUE, and SMTP into
6133c2aa98e2SPeter Wemm		0/1 compilation flags.  Note that DAEMON is an obsolete
6134c2aa98e2SPeter Wemm		compile flag; use NETINET instead.  Solution based on a
6135c2aa98e2SPeter Wemm		patch from Bryan Costales.
6136c2aa98e2SPeter Wemm	PORTABILITY FIXES:
6137c2aa98e2SPeter Wemm		AIX4: getpwnam() and getpwuid() do a sequential scan of the
6138c2aa98e2SPeter Wemm			/etc/security/passwd file when called as root.  This
6139c2aa98e2SPeter Wemm			is very slow on some systems.  To speed it up, use the
6140c2aa98e2SPeter Wemm			(undocumented) _getpw{nam,uid}_shadow() routines.
6141c2aa98e2SPeter Wemm			Patch from Chris Thomas of UCLA/OAC Systems Group.
6142c2aa98e2SPeter Wemm		SCO 5.x: include -lprot in the Makefile.  Patch from Bill
6143c2aa98e2SPeter Wemm			Glicker of Burrelle's Information Service.
6144c2aa98e2SPeter Wemm		NEWS-OS 4.x: need a definition for MODE_T to compile.  Patch
6145c2aa98e2SPeter Wemm			from Makoto MATSUSHITA of Osaka University.
6146c2aa98e2SPeter Wemm		SunOS 4.0.3: compile problems.  Patches from Andrew Cole of
6147c2aa98e2SPeter Wemm			Leeds University and SASABE Tetsuro of the University
6148c2aa98e2SPeter Wemm			of Tokyo.
6149c2aa98e2SPeter Wemm		DG/UX 5.4.4.11 from Brian J. Murrell of InterLinx Support
6150c2aa98e2SPeter Wemm			Services, Inc.
6151c2aa98e2SPeter Wemm		Domain/OS from Don (Truck) Lewis of TDK Semiconductor Corp.
6152c2aa98e2SPeter Wemm			I believe this to have only been a problem if you
6153c2aa98e2SPeter Wemm			compiled with -DUSE_VENDOR_CF_PATH -- another reason
6154c2aa98e2SPeter Wemm			to stick with /etc/sendmail.cf as your One True Path.
6155c2aa98e2SPeter Wemm		Digital UNIX (OSF/1 on Alpha) load average computation from
6156c2aa98e2SPeter Wemm			Martin Laubach of the Technischen Universit�t Wien.
6157c2aa98e2SPeter Wemm	CONFIG: change default Received: line to be multiple lines rather
6158c2aa98e2SPeter Wemm		than one long one.  By popular demand.
6159c2aa98e2SPeter Wemm	MAIL.LOCAL: warnings weren't being logged on some systems.  Patch
6160c2aa98e2SPeter Wemm		from Jerome Berkman of U.C. Berkeley.
6161c2aa98e2SPeter Wemm	MAKEMAP: be sure to zero hinfo to avoid cruft that can cause runs
6162c2aa98e2SPeter Wemm		to take a very long time.  Problem noted by Yoshiro YONEYA
6163c2aa98e2SPeter Wemm		of NTT Software Corporation.
6164c2aa98e2SPeter Wemm	CONTRIB: add etrn.pl, contributed by John Beck.
6165c2aa98e2SPeter Wemm	NEW FILES:
6166c2aa98e2SPeter Wemm		contrib/etrn.pl
6167c2aa98e2SPeter Wemm
616806f25ae9SGregory Neil Shapiro8.8.3/8.8.3	1996/11/17
6169c2aa98e2SPeter Wemm	SECURITY: it was possible to get a root shell by lying to sendmail
6170c2aa98e2SPeter Wemm		about argv[0] and then sending it a signal.  Problem noted
6171c2aa98e2SPeter Wemm		by Leshka Zakharoff <leshka@leshka.chuvashia.su> on the
6172c2aa98e2SPeter Wemm		best-of-security list.
6173c2aa98e2SPeter Wemm	Log sendmail binary version number in "Warning: .cf version level
6174c2aa98e2SPeter Wemm		(%d) exceeds program functionality (%d) message" -- this
6175c2aa98e2SPeter Wemm		should make it clearer to people that they are running
6176c2aa98e2SPeter Wemm		the wrong binary.
6177c2aa98e2SPeter Wemm	Fix a problem that occurs when you open an SMTP connection and then
6178c2aa98e2SPeter Wemm		do one or more ETRN commands followed by a MAIL command; at
6179c2aa98e2SPeter Wemm		the end of the DATA phase sendmail would incorrectly report
6180c2aa98e2SPeter Wemm		"451 SMTP-MAIL: lost child: No child processes".  Problem
6181c2aa98e2SPeter Wemm		noted by Eric Bishop of Virginia Tech.
6182c2aa98e2SPeter Wemm	When doing text-based host canonification (typically /etc/hosts
6183c2aa98e2SPeter Wemm		lookup), a null host name would match any /etc/hosts entry
6184c2aa98e2SPeter Wemm		with space at the end of the line.  Problem noted by Steve
6185c2aa98e2SPeter Wemm		Hubert of the University of Washington, Seattle.
6186c2aa98e2SPeter Wemm	7 to 8 bit BASE64 MIME conversions could duplicate bits of text.
6187c2aa98e2SPeter Wemm		Problem reported by Tom Smith of Digital Equipment Corp.
6188c2aa98e2SPeter Wemm	Increase the size of the DNS answer buffer -- the standard UDP packet
6189c2aa98e2SPeter Wemm		size PACKETSZ (512) is not sufficient for some nameserver
6190c2aa98e2SPeter Wemm		answers containing very many resource records.  The resolver
6191c2aa98e2SPeter Wemm		may also switch to TCP and retry if it detects UDP packet
6192c2aa98e2SPeter Wemm		overflow.  Also, allow for the fact that the resolver
6193c2aa98e2SPeter Wemm		routines res_query and res_search return the size of the
6194c2aa98e2SPeter Wemm		*un*truncated answer in case the supplied answer buffer it
6195c2aa98e2SPeter Wemm		not big enough to accommodate the entire answer.  Patch from
6196c2aa98e2SPeter Wemm		Eric Wassenaar.
6197c2aa98e2SPeter Wemm	Improvements to MaxDaemonChildren code.  If you think you have too
6198c2aa98e2SPeter Wemm		many children, probe the ones you have to verify that they
6199c2aa98e2SPeter Wemm		are still around.  Suggested by Jared Mauch of CICnet, Inc.
6200c2aa98e2SPeter Wemm		Also, do this probe before growing the vector of children
6201c2aa98e2SPeter Wemm		pids; this previously caused the vector to grow indefinitely
6202c2aa98e2SPeter Wemm		due to a race condition.  Problem reported by Kyle Jones of
6203c2aa98e2SPeter Wemm		UUNET.
6204c2aa98e2SPeter Wemm	On some architectures, <db.h> (from the Berkeley DB library) defines
6205c2aa98e2SPeter Wemm		O_EXLOCK to zero; this fools the map compilation code into
6206c2aa98e2SPeter Wemm		thinking that it can avoid race conditions by locking on open.
6207c2aa98e2SPeter Wemm		Change it to check for O_EXLOCK non-zero.  Problem noted by
6208c2aa98e2SPeter Wemm		Leif Erlingsson of Data Lege.
6209c2aa98e2SPeter Wemm	Always call res_init() on startup (if compiled in, of course) to
6210c2aa98e2SPeter Wemm		allow the sendmail.cf file to tweak resolver flags; without
6211c2aa98e2SPeter Wemm		it, flag tweaks in ResolverOptions are ignored.  Patch from
6212c2aa98e2SPeter Wemm		Andrew Sun of Merrill Lynch.
6213c2aa98e2SPeter Wemm	Improvements to host status printing code.  Suggested by Steve Hubert
6214c2aa98e2SPeter Wemm		of the University of Washington, Seattle.
6215c2aa98e2SPeter Wemm	Change MinQueueAge option processing to do the check for the job age
6216c2aa98e2SPeter Wemm		when reading the queue file, rather than at the end; this
6217c2aa98e2SPeter Wemm		avoids parsing the addresses, which can do DNS lookups.
6218c2aa98e2SPeter Wemm		Problem noted by John Beck of InReference, Inc.
6219c2aa98e2SPeter Wemm	When MIME was being 7->8 bit decoded, "From " lines weren't being
6220c2aa98e2SPeter Wemm		properly escaped.  Problem noted by Peter Nilsson of the
6221c2aa98e2SPeter Wemm		University of Linkoping.
6222c2aa98e2SPeter Wemm	In some cases, sendmail would retain root permissions during queue
6223c2aa98e2SPeter Wemm		runs even if RunAsUser was set.  Problem noted by Mark
6224c2aa98e2SPeter Wemm		Thomas of Mark G. Thomas Consulting.
6225c2aa98e2SPeter Wemm	If the F=l flag was set on an SMTP mailer to indicate that it is
6226c2aa98e2SPeter Wemm		actually local delivery, and NOTIFY=SUCCESS is specified in
6227c2aa98e2SPeter Wemm		the envelope, and the receiving SMTP server speaks DSN, then
6228c2aa98e2SPeter Wemm		the DSN would be both generated locally and propagated to the
6229c2aa98e2SPeter Wemm		other end.
6230c2aa98e2SPeter Wemm	The U= mailer field didn't correctly extract the group id if the
6231c2aa98e2SPeter Wemm		user id was numeric.  Problem noted by Kenneth Herron of
6232c2aa98e2SPeter Wemm		MCI Telecommunications Communications.
6233c2aa98e2SPeter Wemm	If a message exceeded the fixed maximum size on input, the body of
6234c2aa98e2SPeter Wemm		the message was included in the bounce.  Note that this did
6235c2aa98e2SPeter Wemm		not occur if it exceeded the maximum _output_ size.  Problem
6236c2aa98e2SPeter Wemm		reported by Kyle Jones of UUNET.
6237c2aa98e2SPeter Wemm	PORTABILITY FIXES:
6238c2aa98e2SPeter Wemm		AIX4: 4.1 doesn't have a working setreuid(2); change the
6239c2aa98e2SPeter Wemm			AIX4 defines to use seteuid(2) instead, which
6240c2aa98e2SPeter Wemm			works on 4.1 as well as 4.2.  Problem noted by
6241c2aa98e2SPeter Wemm			H�kan Lindholm of interAF, Sweden.
6242c2aa98e2SPeter Wemm		AIX4: use tzname[] vector to determine time zone name.
6243c2aa98e2SPeter Wemm			Patch from NAKAMURA Motonori of Kyoto University.
6244c2aa98e2SPeter Wemm		MkLinux: add Makefile.Linux.ppc and OSTYPE(mklinux) support.
6245c2aa98e2SPeter Wemm			Contributed by Paul DuBois <dubois@primate.wisc.edu>.
6246c2aa98e2SPeter Wemm		Solaris: kstat(3k) support for retrieving the load average.
6247c2aa98e2SPeter Wemm			This adds the LA_KSTAT definition for LA_TYPE.
6248c2aa98e2SPeter Wemm			The outline of the implementation was contributed
6249c2aa98e2SPeter Wemm			by Michael Tokarev of Telecom Service, JSC, Moscow.
6250c2aa98e2SPeter Wemm		HP-UX 10.0 gripes about the (perfectly legal!) forward
6251c2aa98e2SPeter Wemm			declaration of struct rusage at the top of conf.h;
6252c2aa98e2SPeter Wemm			change it to only be included if you are using gcc,
6253c2aa98e2SPeter Wemm			which is apparently the only compiler that requires
6254c2aa98e2SPeter Wemm			it in the first place.  Problem noted by Jeff
6255c2aa98e2SPeter Wemm			Earickson of Colby College.
6256c2aa98e2SPeter Wemm		IRIX: don't default to using gcc.  IRIX is a civilized
6257c2aa98e2SPeter Wemm			operating system that comes with a decent compiler
6258c2aa98e2SPeter Wemm			by default.  Problem noted by Barry Bouwsma and
6259c2aa98e2SPeter Wemm			Kari Hurtta.
6260c2aa98e2SPeter Wemm	CONFIG: specify F=9 as default in FEATURE(local_procmail) for
6261c2aa98e2SPeter Wemm		consistency with other local mailers.  Inconsistency
6262c2aa98e2SPeter Wemm		pointed out by Teddy Hogeborn <teddy@fukt.hk-r.se>.
6263c2aa98e2SPeter Wemm	CONFIG: if the "limited best mx" feature is used (to reduce DNS
6264c2aa98e2SPeter Wemm		overhead) as part of the bestmx_is_local feature, the
6265c2aa98e2SPeter Wemm		domain part was dropped from the name.  Patch from Steve
6266c2aa98e2SPeter Wemm		Hubert of the University of Washington, Seattle.
6267c2aa98e2SPeter Wemm	CONFIG: catch addresses of the form "user@.dom.ain"; these could
6268c2aa98e2SPeter Wemm		end up being translated to the null host name, which would
6269c2aa98e2SPeter Wemm		return any entry in /etc/hosts that had a space at the end
6270c2aa98e2SPeter Wemm		of the line.  Problem noted by Steve Hubert of the
6271c2aa98e2SPeter Wemm		University of Washington, Seattle.
6272c2aa98e2SPeter Wemm	CONFIG: add OSTYPE(aix4).  From Michael Sofka of Rensselaer
6273c2aa98e2SPeter Wemm		Polytechnic Institute.
6274c2aa98e2SPeter Wemm	MAKEMAP: tweak hash and btree parameters for better performance.
6275c2aa98e2SPeter Wemm		Patch from Matt Dillon of Best Internet Communications.
6276c2aa98e2SPeter Wemm	NEW FILES:
6277c2aa98e2SPeter Wemm		src/Makefiles/Makefile.Linux.ppc
6278c2aa98e2SPeter Wemm		cf/ostype/aix4.m4
6279c2aa98e2SPeter Wemm		cf/ostype/mklinux.m4
6280c2aa98e2SPeter Wemm
628106f25ae9SGregory Neil Shapiro8.8.2/8.8.2	1996/10/18
6282c2aa98e2SPeter Wemm	SECURITY: fix a botch in the 7-bit MIME patch; the previous patch
6283c2aa98e2SPeter Wemm		changed the code but didn't fix the problem.
6284c2aa98e2SPeter Wemm	PORTABILITY FIXES:
6285c2aa98e2SPeter Wemm		Solaris: Don't use the system getusershell(3); it can
6286c2aa98e2SPeter Wemm			apparently corrupt the heap in some circumstances.
6287c2aa98e2SPeter Wemm			Problem found by Ken Pizzini of Spry, Inc.
6288c2aa98e2SPeter Wemm	OP.ME: document several mailer flags that were accidentally omitted
6289c2aa98e2SPeter Wemm		from this document.  These flags were F=d, F=j, F=R, and F=9.
6290c2aa98e2SPeter Wemm	CONFIG: no changes.
6291c2aa98e2SPeter Wemm
629206f25ae9SGregory Neil Shapiro8.8.1/8.8.1	1996/10/17
6293c2aa98e2SPeter Wemm	SECURITY: unset all environment variables that the resolver will
6294c2aa98e2SPeter Wemm		examine during queue runs and daemon mode.  Problem noted
6295c2aa98e2SPeter Wemm		by Dan Bernstein of the University of Illinois at Chicago.
6296c2aa98e2SPeter Wemm	SECURITY: in some cases an illegal 7-bit MIME-encoded text/plain
6297c2aa98e2SPeter Wemm		message could overflow a buffer if it was converted back
6298c2aa98e2SPeter Wemm		to 8 bits.  This caused core dumps and has the potential
6299c2aa98e2SPeter Wemm		for a remote attack.  Problem first noted by Gregory Shapiro
6300c2aa98e2SPeter Wemm		of WPI.
6301c2aa98e2SPeter Wemm	Avoid duplicate deliveries of error messages on systems that don't
6302c2aa98e2SPeter Wemm		have flock(2) support.  Patch from Motonori Nakamura of
6303c2aa98e2SPeter Wemm		Kyoto University.
6304c2aa98e2SPeter Wemm	Ignore null FallBackMX (V) options.  If this option is null (as
6305c2aa98e2SPeter Wemm		opposed to undefined) it can cause "null signature" syserrs
6306c2aa98e2SPeter Wemm		on illegal host names.
6307c2aa98e2SPeter Wemm	If a Base64 encoded text/plain message has no trailing newline in
6308c2aa98e2SPeter Wemm		the encoded text, conversion back to 8 bits will drop the
6309c2aa98e2SPeter Wemm		final line.  Problem noted by Pierre David.
6310c2aa98e2SPeter Wemm	If running with a RunAsUser, sendmail would give bogus "cannot
6311c2aa98e2SPeter Wemm		setuid" (or seteuid, or setreuid) messages on some systems.
6312c2aa98e2SPeter Wemm		Problem pointed out by Jordan Mendelson of Web Services, Inc.
6313c2aa98e2SPeter Wemm	Always print error messages in -bv mode -- previously, -bv would
6314c2aa98e2SPeter Wemm		be absolutely silent on errors if the error mode was sent
6315c2aa98e2SPeter Wemm		to (say) mail-back.  Problem noted by Kyle Jones of UUNET.
6316c2aa98e2SPeter Wemm	If -qI/R/S is set (or the ETRN command is used), ignore all long
6317c2aa98e2SPeter Wemm		term host status.  This is necessary because it is common
6318c2aa98e2SPeter Wemm		to do this when you know a host has just come back up.
6319c2aa98e2SPeter Wemm	Disallow duplicate HELO/EHLO commands as required by RFC 1651 section
6320c2aa98e2SPeter Wemm		4.2.  Excessive permissiveness noted by Lee Flight of the
6321c2aa98e2SPeter Wemm		University of Leicester.
6322c2aa98e2SPeter Wemm	If a service (such as NIS) is specified as the last entry in the
6323c2aa98e2SPeter Wemm		service switch, but that service is not compiled in, sendmail
6324c2aa98e2SPeter Wemm		would return a temporary failure when an entry was not found
6325c2aa98e2SPeter Wemm		in the map.  This caused the message to be queued instead of
6326c2aa98e2SPeter Wemm		bouncing immediately.  Problem noted by Harry Edmon of the
6327c2aa98e2SPeter Wemm		University of Washington.
6328c2aa98e2SPeter Wemm	PORTABILITY FIXES:
6329c2aa98e2SPeter Wemm		Solaris 2.3 had compilation problems in conf.c.  Several
6330c2aa98e2SPeter Wemm			people pointed this out.
6331c2aa98e2SPeter Wemm		NetBSD from Charles Hannum of MIT.
6332c2aa98e2SPeter Wemm		AIX4 improvements based on info from Steve Bauer of South
6333c2aa98e2SPeter Wemm			Dakota School of Mines & Technology.
6334c2aa98e2SPeter Wemm	CONFIG: ``error:code message'' syntax was broken in virtusertable.
6335c2aa98e2SPeter Wemm		Patch from Gil Kloepfer Jr.
6336c2aa98e2SPeter Wemm	CONFIG: if FEATURE(nocanonify) was specified, hosts in $=M (set
6337c2aa98e2SPeter Wemm		using MASQUERADE_DOMAIN) were not masqueraded unless they
6338c2aa98e2SPeter Wemm		were also in $=w.  Problem noted by Zoltan Basti of
6339c2aa98e2SPeter Wemm		Softec.
6340c2aa98e2SPeter Wemm	MAIL.LOCAL: patches to compile and link cleanly on AIX.  Based
6341c2aa98e2SPeter Wemm		on a patch from Eric Hagberg of Morgan Stanley.
6342c2aa98e2SPeter Wemm	MAIL.LOCAL: patches to compile on NEXTSTEP.  From Patrick Nolan
6343c2aa98e2SPeter Wemm		of Stanford via Robert La Ferla.
6344c2aa98e2SPeter Wemm
634506f25ae9SGregory Neil Shapiro8.8.0/8.8.0	1996/09/26
6346c2aa98e2SPeter Wemm	Under some circumstances, Bcc: headers would not be properly
6347c2aa98e2SPeter Wemm		deleted.  Pointed out by Jonathan Kamens of OpenVision.
6348c2aa98e2SPeter Wemm	Log a warning if the sendmail daemon is invoked without a full
6349c2aa98e2SPeter Wemm		pathname, which prevents "kill -1" from working.  I was
6350c2aa98e2SPeter Wemm		urged to put this in by Andrey A. Chernov of DEMOS (Russia).
6351c2aa98e2SPeter Wemm	Fix small buffer overflow.  Since the data in this buffer was not
6352c2aa98e2SPeter Wemm		read externally, there was no security problem (and in fact
6353c2aa98e2SPeter Wemm		probably wouldn't really overflow on most compilers).  Pointed
6354c2aa98e2SPeter Wemm		out by KIZU takashi of Osaka University.
6355c2aa98e2SPeter Wemm	Fix problem causing domain literals such as [1.2.3.4] to be ignored
6356c2aa98e2SPeter Wemm		if a FallbackMXHost was specified in the configuration file
6357c2aa98e2SPeter Wemm		-- all mail would be sent to the fallback even if the original
6358c2aa98e2SPeter Wemm		host was accessible.  Pointed out by Munenari Hirayama of
6359c2aa98e2SPeter Wemm		NSC (Japan).
6360c2aa98e2SPeter Wemm	A message that didn't terminate with a newline would (sometimes) not
6361c2aa98e2SPeter Wemm		have the trailing "." added properly in the SMTP dialogue,
6362c2aa98e2SPeter Wemm		causing SMTP to hang.  Patch from Per Hedeland of Ericsson.
6363c2aa98e2SPeter Wemm	The DaemonPortOptions suboption to bind to a particular address was
6364c2aa98e2SPeter Wemm		incorrect and nonfunctional due to a misunderstanding of the
6365c2aa98e2SPeter Wemm		semantics of binding on a passive socket.  Patch from
6366c2aa98e2SPeter Wemm		NIIBE Yutaka of Mitsubishi Research Institute.
6367c2aa98e2SPeter Wemm	Increase the number of MX hosts for a single name to 100 to better
6368c2aa98e2SPeter Wemm		handle the truly huge service providers such as AOL, which
6369c2aa98e2SPeter Wemm		has 13 at the moment (and climbing).  In order to avoid
6370c2aa98e2SPeter Wemm		trashing memory, the buffer for all names has only been
6371c2aa98e2SPeter Wemm		slightly increased in size, to 12.8K from 10.2K -- this means
6372c2aa98e2SPeter Wemm		that if a single name had 100 MX records, the average size
6373c2aa98e2SPeter Wemm		of those records could not exceed 128 bytes.  Requested by
6374c2aa98e2SPeter Wemm		Brad Knowles of America On Line.
6375c2aa98e2SPeter Wemm	Restore use of IDENT returns where the OSTYPE field equals "OTHER".
6376c2aa98e2SPeter Wemm		Urged by Dan Bernstein of U.C. Berkeley.
6377c2aa98e2SPeter Wemm	Print q_statdate and q_specificity in address structure debugging
6378c2aa98e2SPeter Wemm		printout.
6379c2aa98e2SPeter Wemm	Expand MCI structure flag bits for debugging output.
6380c2aa98e2SPeter Wemm	Support IPv6-style domain literals, which can have colons between
6381c2aa98e2SPeter Wemm		square braces.
6382c2aa98e2SPeter Wemm	Log open file descriptors for the "cannot dup" messages in deliver();
6383c2aa98e2SPeter Wemm		this is an attempt to track down a bug that one person seems
6384c2aa98e2SPeter Wemm		to be having (it may be a Solaris bug!).
6385c2aa98e2SPeter Wemm	DSN NOTIFY parameters were not properly propagated across queue runs;
6386c2aa98e2SPeter Wemm		this caused the NOTIFY info to sometimes be lost.  Problem
6387c2aa98e2SPeter Wemm		pointed out by Claus Assmann of the
6388c2aa98e2SPeter Wemm		Christian-Albrechts-University of Kiel.
6389c2aa98e2SPeter Wemm	The statistics gathered in the sendmail.st file were too high; in
6390c2aa98e2SPeter Wemm		some cases failures (e.g., user unknown or temporary failure)
6391c2aa98e2SPeter Wemm		would count as a delivery as far as the statistics were
6392c2aa98e2SPeter Wemm		concerned.  Problem noted by Tom Moore of AT&T GIS.
6393c2aa98e2SPeter Wemm	Systems that don't have flock() would not send split envelopes in
6394c2aa98e2SPeter Wemm		the initial run.  Problem pointed out by Leonard Zubkoff of
6395c2aa98e2SPeter Wemm		Dandelion Digital.
6396c2aa98e2SPeter Wemm	Move buffer overflow checking -- these primarily involve distrusting
6397c2aa98e2SPeter Wemm		results that may come from NIS and DNS.
6398c2aa98e2SPeter Wemm	4.4-BSD-derived systems, including FreeBSD, NetBSD, and BSD/OS didn't
6399c2aa98e2SPeter Wemm		include <paths.h> and hence had the wrong pathnames for a few
6400c2aa98e2SPeter Wemm		things like /var/tmp.  Reported by Matthew Green.
6401c2aa98e2SPeter Wemm	Conditions were reversed for the Priority: header, resulting in all
6402c2aa98e2SPeter Wemm		values being interpreted as non-urgent except for non-urgent,
6403c2aa98e2SPeter Wemm		which was interpreted as normal.  Patch from Bryan Costales.
6404c2aa98e2SPeter Wemm	The -o (optional) flag was being ignored on hash and btree maps
6405c2aa98e2SPeter Wemm		since 8.7.2.  Fix from Bryan Costales.
6406c2aa98e2SPeter Wemm	Content-Types listed in class "q" will always be encoded as
6407c2aa98e2SPeter Wemm		Quoted-Printable (or more accurately, will never be encoded
6408c2aa98e2SPeter Wemm		as base64).  The class can have primary types (e.g., "text")
6409c2aa98e2SPeter Wemm		or full types (e.g., "text/plain").  Based on a suggestion by
6410c2aa98e2SPeter Wemm		Marius Olafsson of the University of Iceland.
6411c2aa98e2SPeter Wemm	Define ${envid} to be the original envelope id (from the ESMTP DSN
6412c2aa98e2SPeter Wemm		dialogue) so it can be passed to programs in mailers.
6413c2aa98e2SPeter Wemm	Define ${bodytype} to be the body type (from the -B flag or the
6414c2aa98e2SPeter Wemm		BODY= ESMTP parameter) so it can be passed to programs in
6415c2aa98e2SPeter Wemm		mailers.
6416c2aa98e2SPeter Wemm	Cause the VRFY command to return 252 instead of 250 unless the F=q
6417c2aa98e2SPeter Wemm		flag is set in the mailer descriptor.  Suggested by John
6418c2aa98e2SPeter Wemm		Myers of CMU.
6419c2aa98e2SPeter Wemm	Implement ESMTP ETRN command to flush the queue for a specific host.
6420c2aa98e2SPeter Wemm		The command takes a host name; data for that host is
6421c2aa98e2SPeter Wemm		immediately (and asynchronously) flushed.  Because this shares
6422c2aa98e2SPeter Wemm		the -qR implementation, other hosts may be attempted, but
6423c2aa98e2SPeter Wemm		there should be no security implications.  Implementation
6424c2aa98e2SPeter Wemm		from John Beck of InReference, Inc.  See RFC 1985 for details.
6425c2aa98e2SPeter Wemm	Add three new command line flags to pass in DSN parameters: -V envid
6426c2aa98e2SPeter Wemm		(equivalent to ENVID=envid on the MAIL command), -R ret
6427c2aa98e2SPeter Wemm		(equivalent to RET=ret on the MAIL command), and -Nnotify
6428c2aa98e2SPeter Wemm		(equivalent to NOTIFY=notify on the RCPT command).  Note
6429c2aa98e2SPeter Wemm		that the -N flag applies to all recipients; there is no way
6430c2aa98e2SPeter Wemm		to specify per-address notifications on the command line,
6431c2aa98e2SPeter Wemm		nor is there an equivalent for the ORCPT= per-address
6432c2aa98e2SPeter Wemm		parameter.
6433c2aa98e2SPeter Wemm	Restore LogLevel option to be safe (it can only be increased);
6434c2aa98e2SPeter Wemm		apparently I went into paranoid mode between 8.6 and 8.7
6435c2aa98e2SPeter Wemm		and made it unsafe.  Pointed out by Dabe Murphy of the
6436c2aa98e2SPeter Wemm		University of Maryland.
6437c2aa98e2SPeter Wemm	New logging on log level 15:  all SMTP traffic.  Patches from
6438c2aa98e2SPeter Wemm		Andrew Gross of San Diego Supercomputer Center.
6439c2aa98e2SPeter Wemm	NetInfo property value searching code wasn't stopping when it found
6440c2aa98e2SPeter Wemm		a match.  This was causing the wrong values to be found (and
6441c2aa98e2SPeter Wemm		had a memory leak).  Found by Bastian Schleuter of TU-Berlin.
6442c2aa98e2SPeter Wemm	Add new F=0 (zero) mailer flag to turn off MX lookups.  It was pointed
6443c2aa98e2SPeter Wemm		out by Bill Wisner of Electronics for Imaging that you can't
6444c2aa98e2SPeter Wemm		use the bracket address form for the MAIL_HUB macro, since
6445c2aa98e2SPeter Wemm		that causes the brackets to remain in the envelope recipient
6446c2aa98e2SPeter Wemm		address used for delivery.  The simple fix (stripping off the
6447c2aa98e2SPeter Wemm		brackets in the config file) breaks the use of IP literal
6448c2aa98e2SPeter Wemm		addresses.  This flag will solve that problem.
6449c2aa98e2SPeter Wemm	Add MustQuoteChars option.  This is a list of characters that must
6450c2aa98e2SPeter Wemm		be quoted if they are found in the phrase part of an address
6451c2aa98e2SPeter Wemm		(that is, the full name part).  The characters @,;:\()[] are
6452c2aa98e2SPeter Wemm		always in this list and cannot be removed.  The default is
6453c2aa98e2SPeter Wemm		this list plus . and ' to match RFC 822.
6454c2aa98e2SPeter Wemm	Add AllowBogusHELO option; if set, sendmail will allow HELO commands
6455c2aa98e2SPeter Wemm		that do not include a host name for back compatibility with
6456c2aa98e2SPeter Wemm		some stupid SMTP clients.  Setting this violates RFC 1123
6457c2aa98e2SPeter Wemm		section 5.2.5.
6458c2aa98e2SPeter Wemm	Add MaxDaemonChildren option; if this is set, sendmail will start
6459c2aa98e2SPeter Wemm		rejecting connections if it has more than this many
6460c2aa98e2SPeter Wemm		outstanding children accepting mail.  Note that you may
6461c2aa98e2SPeter Wemm		see more processes than this because of outgoing mail; this
6462c2aa98e2SPeter Wemm		is for incoming connections only.
6463c2aa98e2SPeter Wemm	Add ConnectionRateThrottle option.  If set to a positive value, the
6464c2aa98e2SPeter Wemm		number of incoming SMTP connections that will be permitted
6465c2aa98e2SPeter Wemm		in a single second is limited to this number.  Connections are
6466c2aa98e2SPeter Wemm		not refused during this time, just deferred.  The intent is to
6467c2aa98e2SPeter Wemm		flatten out demand so that load average limiting can kick in.
6468c2aa98e2SPeter Wemm		It is less radical than MaxDaemonChildren, which will stop
6469c2aa98e2SPeter Wemm		accepting connections even if all the connections are idle
6470c2aa98e2SPeter Wemm		(e.g., due to connection caching).
6471c2aa98e2SPeter Wemm	Add Timeout.hoststatus option.  This interval (defaulting to 30m)
6472c2aa98e2SPeter Wemm		specifies how long cached information about the state of a
6473c2aa98e2SPeter Wemm		host will be kept before they are considered stale and the
6474c2aa98e2SPeter Wemm		host is retried.  If you are using persistent host status
6475c2aa98e2SPeter Wemm		(i.e., the HostStatusDirectory option is set) this will apply
6476c2aa98e2SPeter Wemm		between runs; otherwise, it applies only within a single queue
6477c2aa98e2SPeter Wemm		run and hence is useful only for hosts that have large queues
6478c2aa98e2SPeter Wemm		that take a very long time to run.
6479c2aa98e2SPeter Wemm	Add SingleLineFromHeader option.  If set, From: headers are coerced
6480c2aa98e2SPeter Wemm		into being a single line even if they had newlines in them
6481c2aa98e2SPeter Wemm		when read.  This is to get around a botch in Lotus Notes.
6482c2aa98e2SPeter Wemm	Text class maps were totally broken -- if you ever retrieved the last
6483c2aa98e2SPeter Wemm		item in a table it would be truncated.  Problem noted by
6484c2aa98e2SPeter Wemm		Gregory Neil Shapiro of WPI.
6485c2aa98e2SPeter Wemm	Extend the lines printed by the mailq command (== the -bp flag) when
6486c2aa98e2SPeter Wemm		-v is given to 120 characters; this allows more information
6487c2aa98e2SPeter Wemm		to be displayed.  Suggested by Gregory Neil Shapiro of WPI.
6488c2aa98e2SPeter Wemm	Allow macro definitions (`D' lines) with unquoted commas; previously
6489c2aa98e2SPeter Wemm		this was treated as end-of-input.  Problem noted by Bryan
6490c2aa98e2SPeter Wemm		Costales.
6491c2aa98e2SPeter Wemm	The RET= envelope parameter (used for DSNs) wasn't properly written
6492c2aa98e2SPeter Wemm		to the queue file.  Fix from John Hughes of Atlantic
6493c2aa98e2SPeter Wemm		Technologies, Inc.
6494c2aa98e2SPeter Wemm	Close /var/tmp/dead.letter after a successful write -- otherwise
6495c2aa98e2SPeter Wemm		if this happens in a queue run it can cause nasty delays.
6496c2aa98e2SPeter Wemm		Problem noted by Mark Horton of AT&T.
6497c2aa98e2SPeter Wemm	If userdb entries pointed to userdb entries, and there were multiple
6498c2aa98e2SPeter Wemm		values for a given key, the database cursor would get
6499c2aa98e2SPeter Wemm		trashed by the recursive call.  Problem noted by Roy Mongiovi
6500c2aa98e2SPeter Wemm		of Georgia Tech.  Fixed by reading all the values and creating
6501c2aa98e2SPeter Wemm		a comma-separated list; thus, the -v output will be somewhat
6502c2aa98e2SPeter Wemm		different for this case.
6503c2aa98e2SPeter Wemm	Fix buffer allocation problem with Hesiod-based userdb maps when
6504c2aa98e2SPeter Wemm		HES_GETMAILHOST is defined.  Based on a patch by Betty Lee
6505c2aa98e2SPeter Wemm		of Stanford University.
6506c2aa98e2SPeter Wemm	When envelopes were split due to aliases with owner- aliases, and
6507c2aa98e2SPeter Wemm		there was some error on one of the lists, more than one of
6508c2aa98e2SPeter Wemm		the owners would get the message.  Problem pointed out by
6509c2aa98e2SPeter Wemm		Roy Mongiovi of Georgia Tech.
6510c2aa98e2SPeter Wemm	Detect excessive recursion in macro expansions, e.g., $X defined
6511c2aa98e2SPeter Wemm		in terms of $Y which is defined in terms of $X.  Problem
6512c2aa98e2SPeter Wemm		noted by Bryan Costales; patch from Eric Wassenaar.
6513c2aa98e2SPeter Wemm	When using F=U to get "ugly UUCP" From_ lines, a buffer could in
6514c2aa98e2SPeter Wemm		some cases get trashed causing bogus From_ lines.  Fix from
6515c2aa98e2SPeter Wemm		Kyle Jones of UUNET.
6516c2aa98e2SPeter Wemm	When doing load average initialization, if the nlist call for avenrun
6517c2aa98e2SPeter Wemm		failed, the second and subsequent lookups wouldn't notice
6518c2aa98e2SPeter Wemm		that fact causing bogus load averages to be returned.  Noted
6519c2aa98e2SPeter Wemm		by Casper Dik of Sun Holland.
6520c2aa98e2SPeter Wemm	Fix problem with incompatibility with some versions of inet_aton that
6521c2aa98e2SPeter Wemm		have changed the return value to unsigned, so a check for an
6522c2aa98e2SPeter Wemm		error return of -1 doesn't work.  Use INADDR_NONE instead.
6523c2aa98e2SPeter Wemm		This could cause mail to addresses such as [foo.com] to bounce
6524c2aa98e2SPeter Wemm		or get dropped.  Problem noted by Christophe Wolfhugel of the
6525c2aa98e2SPeter Wemm		Pasteur Institute.
6526c2aa98e2SPeter Wemm	DSNs were inconsistent if a failure occurred during the DATA phase
6527c2aa98e2SPeter Wemm		rather than the RCPT phase: the Action: would be correct, but
6528c2aa98e2SPeter Wemm		the detailed status information would be wrong.  Problem noted
6529c2aa98e2SPeter Wemm		by Bob Snyder of General Electric Company.
6530c2aa98e2SPeter Wemm	Add -U command line flag and the XUSR ESMTP extension, both indicating
6531c2aa98e2SPeter Wemm		that this is the initial MUA->MTA submission.  The flag current
6532c2aa98e2SPeter Wemm		does nothing, but in future releases (when MUAs start using
6533c2aa98e2SPeter Wemm		these flags) it will probably turn on things like DNS
6534c2aa98e2SPeter Wemm		canonification.
6535c2aa98e2SPeter Wemm	Default end-of-line string (E= specification on mailer [M] lines)
6536c2aa98e2SPeter Wemm		to \r\n on SMTP mailers.  Default remains \n on non-SMTP
6537c2aa98e2SPeter Wemm		mailers.
6538c2aa98e2SPeter Wemm	Change the internal definition for the *file* and *include* mailers
6539c2aa98e2SPeter Wemm		to have $u in the argument vectors so that they aren't
6540c2aa98e2SPeter Wemm		misinterpreted as SMTP mailers and thus use \r\n line
6541c2aa98e2SPeter Wemm		termination.  This will affect anyone who has redefined
6542c2aa98e2SPeter Wemm		either of these in their configuration file.
6543c2aa98e2SPeter Wemm	Don't assume that IDENT servers close the connection after a query;
6544c2aa98e2SPeter Wemm		responses can be newline terminated.  From Terry Kennedy of
6545c2aa98e2SPeter Wemm		St. Peter's College.
6546c2aa98e2SPeter Wemm	Avoid core dumps on erroneous configuration files that have
6547c2aa98e2SPeter Wemm		$#mailer with nothing following.  From Bryan Costales.
6548c2aa98e2SPeter Wemm	Avoid null pointer dereference with high debug values in unlockqueue.
6549c2aa98e2SPeter Wemm		Fix from Randy Martin of Clemson University.
6550c2aa98e2SPeter Wemm	Fix possible buffer overrun when expanding very large macros.  Fix
6551c2aa98e2SPeter Wemm		from Kyle Jones of UUNET.
6552c2aa98e2SPeter Wemm	After 25 EXPN or VRFY commands, start pausing for a second before
6553c2aa98e2SPeter Wemm		processing each one.  This avoids a certain form of denial
6554c2aa98e2SPeter Wemm		of service attack.  Potential attack pointed out by Bryan
6555c2aa98e2SPeter Wemm		Costales.
6556c2aa98e2SPeter Wemm	Allow new named (not numbered!) config file rules to do validity
6557c2aa98e2SPeter Wemm		checking on SMTP arguments: check_mail for MAIL commands and
6558c2aa98e2SPeter Wemm		check_rcpt for RCPT commands.  These rulesets can do anything
6559c2aa98e2SPeter Wemm		they want; their result is ignored unless they resolve to the
6560c2aa98e2SPeter Wemm		$#error mailer, in which case the indicated message is printed
6561c2aa98e2SPeter Wemm		and the command is rejected.  Similarly, the check_compat
6562c2aa98e2SPeter Wemm		ruleset is called before delivery with "from_addr $| to_addr"
6563c2aa98e2SPeter Wemm		(the $| is a meta-symbol used to separate the two addresses);
6564c2aa98e2SPeter Wemm		it can give a "this sender can't send to this recipient"
6565c2aa98e2SPeter Wemm		notification.  Note that this patch allows $| to stand alone
6566c2aa98e2SPeter Wemm		in rulesets.
6567c2aa98e2SPeter Wemm	Define new macros ${client_name}, ${client_addr}, and ${client_port}
6568c2aa98e2SPeter Wemm		that have the name, IP address, and port number (respectively)
6569c2aa98e2SPeter Wemm		of the SMTP client (that is, the entity at the other end of
6570c2aa98e2SPeter Wemm		the connection.  These can be used in (e.g.) check_rcpt to
6571c2aa98e2SPeter Wemm		verify that someone isn't trying to relay mail through your
6572c2aa98e2SPeter Wemm		host inappropriately.  Be sure to use the deferred evaluation
6573c2aa98e2SPeter Wemm		form, for example $&{client_name}, to avoid having these bound
6574c2aa98e2SPeter Wemm		when sendmail reads the configuration file.
6575c2aa98e2SPeter Wemm	Add new config file rule check_relay to check the incoming connection
6576c2aa98e2SPeter Wemm		information.  Like check_compat, it is passed the host name
6577c2aa98e2SPeter Wemm		and host address separated by $| and can reject connections
6578c2aa98e2SPeter Wemm		on that basis.
6579c2aa98e2SPeter Wemm	Allow IDA-style recursive function calls.  Code contributed by Mark
6580c2aa98e2SPeter Wemm		Lovell and Paul Vixie.
6581c2aa98e2SPeter Wemm	Eliminate the "No ! in UUCP From address!" message" -- instead, create
6582c2aa98e2SPeter Wemm		a virtual UUCP address using either a domain address or the $k
6583c2aa98e2SPeter Wemm		macro.  Based on code contributed by Mark Lovell and Paul
6584c2aa98e2SPeter Wemm		Vixie.
6585c2aa98e2SPeter Wemm	Add Stanford LDAP map.  Requires special libraries that are not
6586c2aa98e2SPeter Wemm		included with sendmail.  Contributed by Booker C. Bense
6587c2aa98e2SPeter Wemm		<bbense@networking.stanford.edu>; contact him for support.
6588c2aa98e2SPeter Wemm		See also the src/READ_ME file.
6589c2aa98e2SPeter Wemm	Allow -dANSI to turn on ANSI escape sequences in debug output; this
6590c2aa98e2SPeter Wemm		puts metasymbols (e.g., $+) in reverse video.  Really useful
6591c2aa98e2SPeter Wemm		only for debugging deep bits of code where it is important to
6592c2aa98e2SPeter Wemm		distinguish between the single-character metasymbol $+ and the
6593c2aa98e2SPeter Wemm		two characters $, +.
6594c2aa98e2SPeter Wemm	Changed ruleset 89 (executed in dumpstate()) to a named ruleset,
6595c2aa98e2SPeter Wemm		debug_dumpstate.
6596c2aa98e2SPeter Wemm	Add new UnsafeGroupWrites option; if set, .forward and :include:
6597c2aa98e2SPeter Wemm		files that are group writable are considered "unsafe" -- that
6598c2aa98e2SPeter Wemm		is, programs and files referenced from such files are not
6599c2aa98e2SPeter Wemm		valid recipients.
6600c2aa98e2SPeter Wemm	Delete bogosity test for FallBackMX host; this prevented it to be a
6601c2aa98e2SPeter Wemm		name that was not in DNS or was a domain-literal.  Problem
6602c2aa98e2SPeter Wemm		noted by Tom May.
6603c2aa98e2SPeter Wemm	Change the introduction to error messages to more clearly delineate
6604c2aa98e2SPeter Wemm		permanent from temporary failures; if both existed in a
6605c2aa98e2SPeter Wemm		single message it could be confusing.  Suggested by John
6606c2aa98e2SPeter Wemm		Beck of InReference, Inc.
6607c2aa98e2SPeter Wemm	The IngoreDot (i) option didn't work for lines that were terminated
6608c2aa98e2SPeter Wemm		with CRLF.  Problem noted by Ted Stockwell of Secure
6609c2aa98e2SPeter Wemm		Computing Corporation.
6610c2aa98e2SPeter Wemm	Add a heuristic to improve the handling of unbalanced `<' signs in
6611c2aa98e2SPeter Wemm		message headers.  Problem reported by Matt Dillon of Best
6612c2aa98e2SPeter Wemm		Internet Communications.
6613c2aa98e2SPeter Wemm	Check for bogus characters in the 0200-0237 range; since these are
6614c2aa98e2SPeter Wemm		used internally, very strange errors can occur if those
6615c2aa98e2SPeter Wemm		characters appear in headers.  Problem noted by Anders Gertz
6616c2aa98e2SPeter Wemm		of Lysator.
6617c2aa98e2SPeter Wemm	Implement 7 -> 8 bit MIME conversions.  This only takes place if the
6618c2aa98e2SPeter Wemm		recipient mailer has the F=9 flag set, and only works on
6619c2aa98e2SPeter Wemm		text/plain body types.  Code contributed by Marius Olafsson
6620c2aa98e2SPeter Wemm		of the University of Iceland.
6621c2aa98e2SPeter Wemm	Special case "postmaster" name so that it is always treated as lower
6622c2aa98e2SPeter Wemm		case in alias files regardless of configuration settings;
6623c2aa98e2SPeter Wemm		this prevents some potential problems where "Postmaster" or
6624c2aa98e2SPeter Wemm		"POSTMASTER" might not match "postmaster".  In most cases
6625c2aa98e2SPeter Wemm		this change is a no-op.
6626c2aa98e2SPeter Wemm	The -o map flag was ignored for text maps.  Problem noted by Bryan
6627c2aa98e2SPeter Wemm		Costales.
6628c2aa98e2SPeter Wemm	The -a map flag was ignored for dequote maps.  Problem noted by
6629c2aa98e2SPeter Wemm		Bryan Costales.
6630c2aa98e2SPeter Wemm	Fix core dump when a lookup of a class "prog" map returns no
6631c2aa98e2SPeter Wemm		response.  Patch from Bryan Costales.
6632c2aa98e2SPeter Wemm	Log instances where sendmail is deferring or rejecting connections
6633c2aa98e2SPeter Wemm		on LogLevel 14.  Suggested by Kyle Jones of UUNET.
6634c2aa98e2SPeter Wemm	Include port number in process title for network daemons.  Suggested
6635c2aa98e2SPeter Wemm		by Kyle Jones of UUNET.
6636c2aa98e2SPeter Wemm	Send ``double bounces'' (errors that occur when sending an error
6637c2aa98e2SPeter Wemm		message) to the address indicated in the DoubleBounceAddress
6638c2aa98e2SPeter Wemm		option (default: postmaster).  Previously they were always
6639c2aa98e2SPeter Wemm		sent to postmaster.  Suggested by Kyle Jones of UUNET.
6640c2aa98e2SPeter Wemm	Add new mode, -bD, that acts like -bd in all respects except that
6641c2aa98e2SPeter Wemm		it runs in foreground.  This is useful for using with a
6642c2aa98e2SPeter Wemm		wrapper that "watches" system services.  Suggested by Kyle
6643c2aa98e2SPeter Wemm		Jones of UUNET.
6644c2aa98e2SPeter Wemm	Fix botch in spacing around (parenthesized) comments in addresses
6645c2aa98e2SPeter Wemm		when the comment comes before the address.  Patch from
6646c2aa98e2SPeter Wemm		Motonori Nakamura of Kyoto University.
6647c2aa98e2SPeter Wemm	Use the prefix "Postmaster notify" on the Subject: lines of messages
6648c2aa98e2SPeter Wemm		that are being bounced to postmaster, rather than "Returned
6649c2aa98e2SPeter Wemm		mail".  This permits the person who is postmaster more
6650c2aa98e2SPeter Wemm		easily determine what messages are to their role as
6651c2aa98e2SPeter Wemm		postmaster versus bounces to mail they actually sent.  Based
6652c2aa98e2SPeter Wemm		on a suggestion by Motonori Nakamura.
6653c2aa98e2SPeter Wemm	Add new value "time" for QueueSortOrder option; this causes the queue
6654c2aa98e2SPeter Wemm		to be sorted strictly by the time of submission.  Note that
66552e43090eSPeter Wemm		this can cause very bad behavior over slow lines (because
6656c2aa98e2SPeter Wemm		large jobs will tend to delay small jobs) and on nodes with
6657c2aa98e2SPeter Wemm		heavy traffic (because old things in the queue for hosts that
6658c2aa98e2SPeter Wemm		are down delay processing of new jobs).  Also, this does not
6659c2aa98e2SPeter Wemm		guarantee that jobs will be delivered in submission order
6660c2aa98e2SPeter Wemm		unless you also set DeliveryMode=queue.  In general, it should
6661c2aa98e2SPeter Wemm		probably only be used on the command line, and only in
6662c2aa98e2SPeter Wemm		conjunction with -qRhost.domain.  In fact, there are very few
6663c2aa98e2SPeter Wemm		cases where it should be used at all.  Based on an
6664c2aa98e2SPeter Wemm		implementation by Motonori Nakamura.
6665c2aa98e2SPeter Wemm	If a map lookup in ruleset 5 returns tempfail, queue the message in
6666c2aa98e2SPeter Wemm		the same manner as other rulesets.  Previously a temporary
6667c2aa98e2SPeter Wemm		failure in ruleset 5 was ignored.  Patch from Booker Bense
6668c2aa98e2SPeter Wemm		of Stanford University.
6669c2aa98e2SPeter Wemm	Don't proceed to the next MX host if an SMTP MAIL command returns a
6670c2aa98e2SPeter Wemm		5yz (permanent failure) code.  The next MX host will still be
6671c2aa98e2SPeter Wemm		tried if the connection cannot be opened in the first place
6672c2aa98e2SPeter Wemm		or if the MAIL command returns a 4yz (temporary failure) code.
6673c2aa98e2SPeter Wemm		(It's hard to know what to do here, since neither RFC 974 nor
6674c2aa98e2SPeter Wemm		RFC 1123 specify when to proceed to the next MX host.)
6675c2aa98e2SPeter Wemm		Suggested by Jonathan Kamens of OpenVision, Inc.
6676c2aa98e2SPeter Wemm	Add new "-t" flag for map definitions (the "K" line in the .cf file).
6677c2aa98e2SPeter Wemm		This causes map lookups that get a temporary failure (e.g.,
6678c2aa98e2SPeter Wemm		name server failure) to _not_ defer the delivery of the
6679c2aa98e2SPeter Wemm		message.  This should only be used if your configuration file
6680c2aa98e2SPeter Wemm		is prepared to do something sensible in this case.  Based on
6681c2aa98e2SPeter Wemm		an idea by Gregory Shapiro of WPI.
6682c2aa98e2SPeter Wemm	Fix problem finding network interface addresses.  Patch from
6683c2aa98e2SPeter Wemm		Motonori Nakamura.
6684c2aa98e2SPeter Wemm	Don't reject qf entries that are not owned by your effective uid if
668540266059SGregory Neil Shapiro		you are not running set-user-ID; this makes management of
668613058a91SGregory Neil Shapiro		certain kinds of firewall setups difficult.  Patch
668713058a91SGregory Neil Shapiro		suggested by Eamonn Coleman of Qualcomm.
6688c2aa98e2SPeter Wemm	Add persistent host status.  This keeps the information normally
6689c2aa98e2SPeter Wemm		maintained within a single queue run in disk files that are
6690c2aa98e2SPeter Wemm		shared between sendmail instances.  The HostStatusDirectory
6691c2aa98e2SPeter Wemm		is the directory in which the information is maintained.  If
6692c2aa98e2SPeter Wemm		not set, persistent host status is turned off.  If not a full
6693c2aa98e2SPeter Wemm		pathname, it is relative to the queue directory.  A common
6694c2aa98e2SPeter Wemm		value is ".hoststat".
6695c2aa98e2SPeter Wemm		There are also two new operation modes:
6696c2aa98e2SPeter Wemm		  * -bh prints the status of hosts that have had recent
6697c2aa98e2SPeter Wemm		    connections.
6698c2aa98e2SPeter Wemm		  * -bH purges the host statuses.  No attempt is made to save
6699c2aa98e2SPeter Wemm		    recent status information.
6700c2aa98e2SPeter Wemm		This feature was originally written by Paul Vixie of Vixie
6701c2aa98e2SPeter Wemm		Enterprises for KJS and adapted for V8 by Mark Lovell of
6702c2aa98e2SPeter Wemm		Bigrock Consulting.  Paul's funding of Mark and Mark's patience
6703c2aa98e2SPeter Wemm		with my insistence that things fit cleanly into the V8
6704c2aa98e2SPeter Wemm		framework is gratefully appreciated.
6705c2aa98e2SPeter Wemm	New SingleThreadDelivery option (requires HostStatusDirectory to
6706c2aa98e2SPeter Wemm		operate).  Avoids letting two sendmails on the local machine
6707c2aa98e2SPeter Wemm		open connections to the same remote host at the same time.
6708c2aa98e2SPeter Wemm		This reduces load on the other machine, but can cause mail to
6709c2aa98e2SPeter Wemm		be delayed (for example, if one sendmail is delivering a huge
6710c2aa98e2SPeter Wemm		message, other sendmails won't be able to send even small
6711c2aa98e2SPeter Wemm		messages).  Also, it requires another file descriptor (for the
6712c2aa98e2SPeter Wemm		lock file) per connection, so you may have to reduce
6713c2aa98e2SPeter Wemm		ConnectionCacheSize to avoid running out of per-process
6714c2aa98e2SPeter Wemm		file descriptors.  Based on the persistent host status code
6715c2aa98e2SPeter Wemm		contributed by Paul Vixie and Mark Lovell.
6716c2aa98e2SPeter Wemm	Allow sending to non-simple files (e.g., /dev/null) even if the
6717c2aa98e2SPeter Wemm		SafeFileEnvironment option is set.  Problem noted by Bryan
6718c2aa98e2SPeter Wemm		Costales.
6719c2aa98e2SPeter Wemm	The -qR flag mistakenly matched flags in the "R" line of the queue
6720c2aa98e2SPeter Wemm		file.  Problem noted by Bryan Costales.
6721c2aa98e2SPeter Wemm	If a job was aborted using the interrupt signal (e.g., control-C from
6722c2aa98e2SPeter Wemm		the keyboard), on some occasions an empty df file would be
6723c2aa98e2SPeter Wemm		left around; these would collect in the queue directory.
6724c2aa98e2SPeter Wemm		Problem noted by Bryan Costales.
6725c2aa98e2SPeter Wemm	Change the makesendmail script to enhance the search for Makefiles
6726c2aa98e2SPeter Wemm		based on release number.  For example, on SunOS 5.5.1, it will
6727c2aa98e2SPeter Wemm		search for Makefile.SunOS.5.5.1, Makefile.SunOS.5.5, and then
6728c2aa98e2SPeter Wemm		Makefile.SunOS.5.x (in addition to the other rules, e.g.,
6729c2aa98e2SPeter Wemm		adding $arch).  Problem noted by Jason Mastaler of Atlanta
6730c2aa98e2SPeter Wemm		Webmasters.
6731c2aa98e2SPeter Wemm	When creating maps using "newaliases", always map the keys to lower
6732c2aa98e2SPeter Wemm		case when creating the map unless the -f flag is specified on
6733c2aa98e2SPeter Wemm		the map itself.  Previously this was done based on the F=u
6734c2aa98e2SPeter Wemm		flag in the local mailer, which meant you could create aliases
6735c2aa98e2SPeter Wemm		that you could never access.  Problem noted by Bob Wu of DEC.
6736c2aa98e2SPeter Wemm	When a job was read from the queue, the bits causing notification on
6737c2aa98e2SPeter Wemm		failure or delay were always set.  This caused those
6738c2aa98e2SPeter Wemm		notifications to be sent even if NOTIFY=NEVER had been
6739c2aa98e2SPeter Wemm		specified.  Problem noted by Steve Hubert of the University
6740c2aa98e2SPeter Wemm		of Washington, Seattle.
6741c2aa98e2SPeter Wemm	Add new configurable routine validate_connection (in conf.c).  This
6742c2aa98e2SPeter Wemm		lets you decide if you are willing to accept traffic from
6743c2aa98e2SPeter Wemm		this host.  If it returns FALSE, all SMTP commands will return
6744c2aa98e2SPeter Wemm		"550 Access denied".  -DTCPWRAPPERS will include support for
6745c2aa98e2SPeter Wemm		TCP wrappers; you will need to add -lwrap to the link line.
6746c2aa98e2SPeter Wemm		(See src/READ_ME for details.)
6747c2aa98e2SPeter Wemm	Don't include the "THIS IS A WARNING MESSAGE ONLY" banner on postmaster
6748c2aa98e2SPeter Wemm		bounces.  Some people seemed to think that this could be
6749c2aa98e2SPeter Wemm		confusing (even though it is true).  Suggested by Motonori
6750c2aa98e2SPeter Wemm		Nakamura.
6751c2aa98e2SPeter Wemm	Add new RunAsUser option; this causes sendmail to do a setuid to that
6752c2aa98e2SPeter Wemm		user early in processing to avoid potential security problems.
6753c2aa98e2SPeter Wemm		However, this means that all .forward and :include: files must
6754c2aa98e2SPeter Wemm		be readable by that user, and all files to be written must be
6755c2aa98e2SPeter Wemm		writable by that user and all programs will be executed by that
6756c2aa98e2SPeter Wemm		user.  It is also incompatible with the SafeFileEnvironment
6757c2aa98e2SPeter Wemm		option.  In other words, it may not actually add much to
6758c2aa98e2SPeter Wemm		security.  However, it should be useful on firewalls and other
6759c2aa98e2SPeter Wemm		places where users don't have accounts and the aliases file is
6760c2aa98e2SPeter Wemm		well constrained.
6761c2aa98e2SPeter Wemm	Add Timeout.iconnect.  This is like Timeout.connect except it is used
6762c2aa98e2SPeter Wemm		only on the first attempt to delivery to an address.  It could
6763c2aa98e2SPeter Wemm		be set to be lower than Timeout.connect on the principle that
6764c2aa98e2SPeter Wemm		the mail should go through quickly to responsive hosts; less
6765c2aa98e2SPeter Wemm		responsive hosts get to wait for the next queue run.
6766c2aa98e2SPeter Wemm	Fix a problem on Solaris that occasionally causes programs
6767c2aa98e2SPeter Wemm		(such as vacation) to hang with their standard input connected
6768c2aa98e2SPeter Wemm		to a UDP port.  It also created some signal handling problems.
6769c2aa98e2SPeter Wemm		The problems turned out to be an interaction between vfork(2)
6770c2aa98e2SPeter Wemm		and some of the libraries, particularly NIS/NIS+.  I am
6771c2aa98e2SPeter Wemm		indebted to Tor Egge <tegge@idt.ntnu.no> for this fix.
6772c2aa98e2SPeter Wemm	Change user class map to do the same matching that actual delivery
6773c2aa98e2SPeter Wemm		will do instead of just a /etc/passwd lookup.  This adds
6774c2aa98e2SPeter Wemm		fuzzy matching to the user map.  Patch from Dan Oscarsson.
6775c2aa98e2SPeter Wemm	The Timeout.* options are not safe -- they can be used to create a
6776c2aa98e2SPeter Wemm		denial-of-service attack.  Problem noted by Christophe
6777c2aa98e2SPeter Wemm		Wolfhugel.
67782e43090eSPeter Wemm	Don't send PostmasterCopy messages in the event of a "delayed"
6779c2aa98e2SPeter Wemm		notification.  Suggested by Barry Bouwsma.
6780c2aa98e2SPeter Wemm	Don't advertise "VERB" ESMTP extension if the "noexpn" privacy
6781c2aa98e2SPeter Wemm		option is set, since this disables VERB mode.  Suggested
6782c2aa98e2SPeter Wemm		by John Hawkinson of MIT.
6783c2aa98e2SPeter Wemm	Complain if the QueueDirectory (Q) option is not set.  Problem noted
6784c2aa98e2SPeter Wemm		by Motonori Nakamura of Kyoto University.
6785c2aa98e2SPeter Wemm	Only queue messages on transient .forward open failures if there
67862e43090eSPeter Wemm		were no successful opens.  The previous behavior caused it
6787c2aa98e2SPeter Wemm		to queue even if a "fall back" .forward was found.  Problem
6788c2aa98e2SPeter Wemm		noted by Ann-Kian Yeo of the Dept. of Information Systems
6789c2aa98e2SPeter Wemm		and Computer Science (DISCS), NUS, Singapore.
6790c2aa98e2SPeter Wemm	Don't do 8->7 bit conversions when bouncing a MIME message that
6791c2aa98e2SPeter Wemm		is bouncing because of a MIME error during 8->7 bit conversion;
6792c2aa98e2SPeter Wemm		the encapsulated message will bounce again, causing a loop.
6793c2aa98e2SPeter Wemm		Problem noted by Steve Hubert of the University of Washington.
6794c2aa98e2SPeter Wemm	Create xf (transcript) files using the TempFileMode option value
6795c2aa98e2SPeter Wemm		instead of 0644.  Suggested by Ann-Kian Yeo of the
6796c2aa98e2SPeter Wemm		National University of Singapore.
6797c2aa98e2SPeter Wemm	Print errors if setgid/setuid/etc. fail during delivery.  This helps
6798c2aa98e2SPeter Wemm		detect cases where DefaultUid is set to something that the
6799c2aa98e2SPeter Wemm		system can't cope with.
6800c2aa98e2SPeter Wemm	PORTABILITY FIXES:
6801c2aa98e2SPeter Wemm		Support for AIX/RS 2.2.1 from Mark Whetzel of Western
6802c2aa98e2SPeter Wemm			Atlas International.
6803c2aa98e2SPeter Wemm		Patches for Intel Paragon OSF/1 1.3 from Leo Bicknell
6804c2aa98e2SPeter Wemm			<bicknell@ufp.org>.
6805c2aa98e2SPeter Wemm		On DEC OSF/1 3.2 and earlier, the MatchGECOS code would only
6806c2aa98e2SPeter Wemm			work on the first recipient of a message due to a
6807c2aa98e2SPeter Wemm			bug in the getpwent family.  If this is something you
6808c2aa98e2SPeter Wemm			use, you can define DEC_OSF_BROKEN_GETPWENT=1 for a
6809c2aa98e2SPeter Wemm			workaround.  From Maximum Entropy of Sanford C.
6810c2aa98e2SPeter Wemm			Bernstein and Associates.
6811c2aa98e2SPeter Wemm		FreeBSD 1.1.5.1 uname -r returns a string containing
6812c2aa98e2SPeter Wemm			parentheses, which breaks makesendmail.  Reported
6813c2aa98e2SPeter Wemm			by Piero Serini <piero@strider.ibenet.it>.
6814c2aa98e2SPeter Wemm		Sequent DYNIX/ptx 4.0.2 patches from Jack Woolley of
6815c2aa98e2SPeter Wemm			Systems and Computer Technology Corporation.
6816c2aa98e2SPeter Wemm		Solaris 2.x: omit the UUCP grade parameter (-g flag) because
6817c2aa98e2SPeter Wemm			it is system-dependent.  Problem noted by J.J. Bailey
6818c2aa98e2SPeter Wemm			of Bailey Computer Consulting.
6819c2aa98e2SPeter Wemm		Pyramid NILE running DC/OSx support from Earle F. Ake of
6820c2aa98e2SPeter Wemm			Hassler Communication Systems Technology, Inc.
6821c2aa98e2SPeter Wemm		HP-UX 10.x compile glitches, reported by Anne Brink of the
6822c2aa98e2SPeter Wemm			U.S. Army and James Byrne of Harte & Lyne Limited.
6823c2aa98e2SPeter Wemm		NetBSD from Matthew Green of the NetBSD crew.
6824c2aa98e2SPeter Wemm		SCO 5.x from Keith Reynolds of SCO.
6825c2aa98e2SPeter Wemm		IRIX 6.2 from Robert Tarrall of the University of
6826c2aa98e2SPeter Wemm			Colorado and Kari Hurtta of the Finnish Meteorological
6827c2aa98e2SPeter Wemm			Institute.
6828c2aa98e2SPeter Wemm		UXP/DS (Fujitsu/ICL DS/90 series) support from Diego R.
6829c2aa98e2SPeter Wemm			Lopez, CICA (Seville).
6830c2aa98e2SPeter Wemm		NCR SVR4 MP-RAS 3.x support from Tom Moore of NCR.
6831c2aa98e2SPeter Wemm		PTX 3.2.0 from Kenneth Stailey of the US Department of Labor
6832c2aa98e2SPeter Wemm			Employment Standards Administration.
6833c2aa98e2SPeter Wemm		Altos System V (5.3.1) from Tim Rice of Multitalents.
6834c2aa98e2SPeter Wemm		Concurrent Systems Corporation Maxion from Donald R. Laster
6835c2aa98e2SPeter Wemm			Jr.
6836c2aa98e2SPeter Wemm		NetInfo maps (improved debugging and multi-valued aliases)
6837c2aa98e2SPeter Wemm			from Adrian Steinmann of Steinmann Consulting.
6838c2aa98e2SPeter Wemm		ConvexOS 11.5 (including SecureWare C2 and the Share Scheduler)
6839c2aa98e2SPeter Wemm			from Eric Schnoebelen of Convex.
6840c2aa98e2SPeter Wemm		Linux 2.0 mail.local patches from Horst von Brand.
6841c2aa98e2SPeter Wemm		NEXTSTEP 3.x compilation from Robert La Ferla.
6842c2aa98e2SPeter Wemm		NEXTSTEP 3.x code changes from Allan J. Nathanson of NeXT.
6843c2aa98e2SPeter Wemm		Solaris 2.5 configuration fixes for mail.local by Jim Davis
6844c2aa98e2SPeter Wemm			of the University of Arizona.
6845c2aa98e2SPeter Wemm		Solaris 2.5 has a working setreuid.  Noted by David Linn of
6846c2aa98e2SPeter Wemm			Vanderbilt University.
6847c2aa98e2SPeter Wemm		Solaris changes for praliases, makemap, mailstats, and smrsh.
6848c2aa98e2SPeter Wemm			Previously you had to add -DSOLARIS in Makefile.dist;
6849c2aa98e2SPeter Wemm			this auto-detects.  Based on a patch from Randall
6850c2aa98e2SPeter Wemm			Winchester of the University of Maryland.
6851c2aa98e2SPeter Wemm	CONFIG: add generic-nextstep3.3.mc file.  Contributed by
6852c2aa98e2SPeter Wemm		Robert La Ferla of Hot Software.
6853c2aa98e2SPeter Wemm	CONFIG: allow mailertables to resolve to ``error:code message''
6854c2aa98e2SPeter Wemm		(where "code" is an exit status) on domains (previously
6855c2aa98e2SPeter Wemm		worked only on hosts).  Patch from Cor Bosman of Xs4all
6856c2aa98e2SPeter Wemm		Foundation.
6857c2aa98e2SPeter Wemm	CONFIG: hooks for IPv6-style domain literals.
6858c2aa98e2SPeter Wemm	CONFIG: predefine ALIAS_FILE and change the prototype file so that
6859c2aa98e2SPeter Wemm		if it is undefined the AliasFile option is never set; this
6860c2aa98e2SPeter Wemm		should be transparent for most everyone.  Suggested by John
6861c2aa98e2SPeter Wemm		Myers of CMU.
6862c2aa98e2SPeter Wemm	CONFIG: add FEATURE(limited_masquerade).  Without this feature, any
6863c2aa98e2SPeter Wemm		domain listed in $=w is masqueraded.  With it, only those
6864c2aa98e2SPeter Wemm		domains listed in a MASQUERADE_DOMAIN macro are masqueraded.
6865c2aa98e2SPeter Wemm	CONFIG: add FEATURE(masquerade_entire_domain).  This causes
6866c2aa98e2SPeter Wemm		masquerading specified by MASQUERADE_DOMAIN to apply to all
6867c2aa98e2SPeter Wemm		hosts under those domains as well as the domain headers
6868c2aa98e2SPeter Wemm		themselves.  For example, if a configuration had
6869c2aa98e2SPeter Wemm		MASQUERADE_DOMAIN(foo.com), then without this feature only
6870c2aa98e2SPeter Wemm		foo.com would be masqueraded; with it, *.foo.com would be
6871c2aa98e2SPeter Wemm		masqueraded as well.  Based on an implementation by Richard
6872c2aa98e2SPeter Wemm		(Pug) Bainter of U. Texas.
6873c2aa98e2SPeter Wemm	CONFIG: add FEATURE(genericstable) to do a more general rewriting of
6874c2aa98e2SPeter Wemm		outgoing addresses.  Defaults to ``hash -o /etc/genericstable''.
6875c2aa98e2SPeter Wemm		Keys are user names; values are outgoing mail addresses.  Yes,
6876c2aa98e2SPeter Wemm		this does overlap with the user database, and figuring out
6877c2aa98e2SPeter Wemm		just when to use which one may be tricky.  Based on code
6878c2aa98e2SPeter Wemm		contributed by Richard (Pug) Bainter of U. Texas with updates
6879c2aa98e2SPeter Wemm		from Per Hedeland of Ericsson.
6880c2aa98e2SPeter Wemm	CONFIG: add FEATURE(virtusertable) to do generalized rewriting of
6881c2aa98e2SPeter Wemm		incoming addresses.  Defaults to ``hash -o /etc/virtusertable''.
6882c2aa98e2SPeter Wemm		Keys are either fully qualified addresses or just the host
6883c2aa98e2SPeter Wemm		part (with the @ sign).  For example, a table containing:
6884c2aa98e2SPeter Wemm			info@foo.com	foo-info
6885c2aa98e2SPeter Wemm			info@bar.com	bar-info
6886c2aa98e2SPeter Wemm			@baz.org	jane@elsewhere.net
6887c2aa98e2SPeter Wemm		would send all mail destined for info@foo.com to foo-info
6888c2aa98e2SPeter Wemm		(which is presumably an alias), mail addressed to info@bar.com
6889c2aa98e2SPeter Wemm		to bar-info, and anything addressed to anyone at baz.org will
6890c2aa98e2SPeter Wemm		be sent to jane@elsewhere.net.  The names foo.com, bar.com,
6891c2aa98e2SPeter Wemm		and baz.org must all be in $=w.  Based on discussions with
6892c2aa98e2SPeter Wemm		a great many people.
6893c2aa98e2SPeter Wemm	CONFIG: add nullclient configurations to define SMTP_MAILER_FLAGS.
6894c2aa98e2SPeter Wemm		Suggested by Richard Bainter.
6895c2aa98e2SPeter Wemm	CONFIG: add FAX_MAILER_ARGS to tweak the arguments passed to the
6896c2aa98e2SPeter Wemm		"fax" mailer.
6897c2aa98e2SPeter Wemm	CONFIG: allow mailertable entries to resolve to local:user; this
6898c2aa98e2SPeter Wemm		passes the original user@host in to procmail-style local
6899c2aa98e2SPeter Wemm		mailers as the "detail" information to allow them to do
6900c2aa98e2SPeter Wemm		additional clever processing.  From Joe Pruett of
6901c2aa98e2SPeter Wemm		Teleport Corporation.  Delivery to the original user can
6902c2aa98e2SPeter Wemm		be done by specifying "local:" (with nothing after the colon).
6903c2aa98e2SPeter Wemm	CONFIG: allow any context that takes "mailer:domain" to also take
6904c2aa98e2SPeter Wemm		"mailer:user@domain" to force mailing to the given user;
6905c2aa98e2SPeter Wemm		"local:user" can also be used to do local delivery.  This
6906c2aa98e2SPeter Wemm		applies on *_RELAY and in the mailertable entries.  Based
6907c2aa98e2SPeter Wemm		on a suggestion by Ribert Kiessling of Easynet.
6908c2aa98e2SPeter Wemm	CONFIG: Allow FEATURE(bestmx_is_local) to take an argument that
6909c2aa98e2SPeter Wemm		limits the possible domains; this reduces the number of DNS
6910c2aa98e2SPeter Wemm		lookups required to support this feature.  For example,
6911c2aa98e2SPeter Wemm		FEATURE(bestmx_is_local, my.site.com) limits the lookups
6912c2aa98e2SPeter Wemm		to domains under my.site.com.  Code contributed by Anthony
6913c2aa98e2SPeter Wemm		Thyssen <anthony@cit.gu.edu.au>.
6914c2aa98e2SPeter Wemm	CONFIG: LOCAL_RULESETS introduces any locally defined rulesets,
6915c2aa98e2SPeter Wemm		such as the check_rcpt ruleset.  Suggested by Gregory Shapiro
6916c2aa98e2SPeter Wemm		of WPI.
6917c2aa98e2SPeter Wemm	CONFIG: MAILER_DEFINITIONS introduces any mailer definitions, in the
6918c2aa98e2SPeter Wemm		event you have to define local mailers.  Suggested by
6919c2aa98e2SPeter Wemm		Gregory Shapiro of WPI.
6920c2aa98e2SPeter Wemm	CONFIG: fix cases where a three- (or more-) stage route-addr could
6921c2aa98e2SPeter Wemm		be misinterpreted as a list:...; syntax.  Based on a patch by
6922c2aa98e2SPeter Wemm		Vlado Potisk <Vlado_Potisk@tempest.sk>.
6923c2aa98e2SPeter Wemm	CONFIG: Fix masquerading of UUCP addresses when the UUCP relay is
6924c2aa98e2SPeter Wemm		remotely connected.  The address host!user was being
6925c2aa98e2SPeter Wemm		converted to host!user@thishost instead of host!user@uurelay.
6926c2aa98e2SPeter Wemm		Problem noted by William Gianopoulos of Raytheon Company.
6927c2aa98e2SPeter Wemm	CONFIG: add confTO_ICONNECT to set Timeout.iconnect.
6928c2aa98e2SPeter Wemm	CONFIG: change FEATURE(redirect) message from "User not local" to
6929c2aa98e2SPeter Wemm		"User has moved"; the former wording was confusing if the
6930c2aa98e2SPeter Wemm		new address is still on the local host.  Based on a suggestion
6931c2aa98e2SPeter Wemm		by Andreas Luik.
6932c2aa98e2SPeter Wemm	CONFIG: add support in FEATURE(nullclient) for $=E (exposed users).
6933c2aa98e2SPeter Wemm		However, the class is not pre-initialized to contain root.
6934c2aa98e2SPeter Wemm		Suggested by Gregory Neil Shapiro.
6935c2aa98e2SPeter Wemm	CONTRIB: Remove XLA code at the request of the author, Christophe
6936c2aa98e2SPeter Wemm		Wolfhugel.
6937c2aa98e2SPeter Wemm	CONTRIB: Add re-mqueue.pl, contributed by Paul Pomes of Qualcomm.
6938c2aa98e2SPeter Wemm	MAIL.LOCAL: make it possible to compile mail.local on Solaris.  Note
6939c2aa98e2SPeter Wemm		well: this produces a slightly different mailbox format (no
6940c2aa98e2SPeter Wemm		Content-Length: headers), file ownerships and modes are
6941c2aa98e2SPeter Wemm		different (not owned by group mail; mode 600 instead of 660),
6942c2aa98e2SPeter Wemm		and the local mailer flags will have to be tweaked (make them
6943c2aa98e2SPeter Wemm		match bsd4.4) in order to use this mailer.  Patches from Paul
6944c2aa98e2SPeter Wemm		Hammann of the Missouri Research and Education Network.
6945c2aa98e2SPeter Wemm	MAIL.LOCAL: in some cases it could return EX_OK even though there
6946c2aa98e2SPeter Wemm		was a delivery error, such as if the ownership on the file
6947c2aa98e2SPeter Wemm		was wrong or the mode changed between the initial stat and
6948c2aa98e2SPeter Wemm		the open.  Problem reported by William Colburn of the New
6949c2aa98e2SPeter Wemm		Mexico Institute of Mining and Technology.
6950c2aa98e2SPeter Wemm	MAILSTATS: handle zero length files more reliably.  Patch from Bryan
6951c2aa98e2SPeter Wemm		Costales.
6952c2aa98e2SPeter Wemm	MAILSTATS: add man page contributed by Keith Bostic of BSDI.
6953c2aa98e2SPeter Wemm	MAKEMAP: The -d flag (to allow duplicate keys) to a btree map wasn't
6954c2aa98e2SPeter Wemm		honored.  Fix from Michael Scott Shappe.
6955c2aa98e2SPeter Wemm	PRALIASES: add man page contributed by Keith Bostic of BSDI.
6956c2aa98e2SPeter Wemm	NEW FILES:
6957c2aa98e2SPeter Wemm		src/Makefiles/Makefile.AIX.2
6958c2aa98e2SPeter Wemm		src/Makefiles/Makefile.IRIX.6.2
6959c2aa98e2SPeter Wemm		src/Makefiles/Makefile.maxion
6960c2aa98e2SPeter Wemm		src/Makefiles/Makefile.NCR.MP-RAS.3.x
6961c2aa98e2SPeter Wemm		src/Makefiles/Makefile.SCO.5.x
6962c2aa98e2SPeter Wemm		src/Makefiles/Makefile.UXPDSV20
6963c2aa98e2SPeter Wemm		mailstats/mailstats.8
6964c2aa98e2SPeter Wemm		praliases/praliases.8
6965c2aa98e2SPeter Wemm		cf/cf/generic-nextstep3.3.mc
6966c2aa98e2SPeter Wemm		cf/feature/genericstable.m4
6967c2aa98e2SPeter Wemm		cf/feature/limited_masquerade.m4
6968c2aa98e2SPeter Wemm		cf/feature/masquerade_entire_domain.m4
6969c2aa98e2SPeter Wemm		cf/feature/virtusertable.m4
6970c2aa98e2SPeter Wemm		cf/ostype/aix2.m4
6971c2aa98e2SPeter Wemm		cf/ostype/altos.m4
6972c2aa98e2SPeter Wemm		cf/ostype/maxion.m4
6973c2aa98e2SPeter Wemm		cf/ostype/solaris2.ml.m4
6974c2aa98e2SPeter Wemm		cf/ostype/uxpds.m4
6975c2aa98e2SPeter Wemm		contrib/re-mqueue.pl
6976c2aa98e2SPeter Wemm	DELETED FILES:
6977c2aa98e2SPeter Wemm		src/Makefiles/Makefile.Solaris
6978c2aa98e2SPeter Wemm		contrib/xla/README
6979c2aa98e2SPeter Wemm		contrib/xla/xla.c
6980c2aa98e2SPeter Wemm	RENAMED FILES:
6981c2aa98e2SPeter Wemm		src/Makefiles/Makefile.NCR3000 =>	Makefile.NCR.MP-RAS.2.x
6982c2aa98e2SPeter Wemm		src/Makefiles/Makefile.SCO.3.2v4.2 =>	Makefile.SCO.4.2
6983c2aa98e2SPeter Wemm		src/Makefiles/Makefile.UXPDS =>		Makefile.UXPDSV10
6984c2aa98e2SPeter Wemm		src/Makefiles/Makefile.NeXT =>		Makefile.NeXT.2.x
6985c2aa98e2SPeter Wemm		src/Makefiles/Makefile.NEXTSTEP =>	Makefile.NeXT.3.x
6986c2aa98e2SPeter Wemm
698706f25ae9SGregory Neil Shapiro8.7.6/8.7.3	1996/09/17
6988c2aa98e2SPeter Wemm	SECURITY: It is possible to force getpwuid to fail when writing the
6989c2aa98e2SPeter Wemm		queue file, causing sendmail to fall back to running programs
6990c2aa98e2SPeter Wemm		as the default user.  This is not exploitable from off-site.
6991c2aa98e2SPeter Wemm		Workarounds include using a unique user for the DefaultUser
6992c2aa98e2SPeter Wemm		(old u & g options) and using smrsh as the local shell.
6993c2aa98e2SPeter Wemm	SECURITY: fix some buffer overruns; in at least one case this allows
6994c2aa98e2SPeter Wemm		a local user to get root.  This is not known to be exploitable
6995c2aa98e2SPeter Wemm		from off-site.  The workaround is to disable chfn(1) commands.
6996c2aa98e2SPeter Wemm
699706f25ae9SGregory Neil Shapiro8.7.5/8.7.3	1996/03/04
6998c2aa98e2SPeter Wemm	Fix glitch in 8.7.4 when putting certain internal lines; this can
6999c2aa98e2SPeter Wemm		in some case cause connections to hang or messages to have
7000c2aa98e2SPeter Wemm		extra spaces in odd places.  Patch from Eric Wassenaar;
7001c2aa98e2SPeter Wemm		reports from Eric Hall of Chiron Corporation, Stephen
7002c2aa98e2SPeter Wemm		Hansen of Stanford University, Dean Gaudet of HotWired,
7003c2aa98e2SPeter Wemm		and others.
7004c2aa98e2SPeter Wemm
700506f25ae9SGregory Neil Shapiro8.7.4/8.7.3	1996/02/18
7006c2aa98e2SPeter Wemm	SECURITY: In some cases it was still possible for an attacker to
7007c2aa98e2SPeter Wemm		insert newlines into a queue file, thus allowing access to
7008c2aa98e2SPeter Wemm		any user (except root).
7009c2aa98e2SPeter Wemm	CONFIG: no changes -- it is not a bug that the configuration
7010c2aa98e2SPeter Wemm		version number is unchanged.
7011c2aa98e2SPeter Wemm
701206f25ae9SGregory Neil Shapiro8.7.3/8.7.3	1995/12/03
7013c2aa98e2SPeter Wemm	Fix botch in name server timeout in RCPT code; this problem caused
7014c2aa98e2SPeter Wemm		two responses in SMTP, which breaks things horribly.  Fix
7015c2aa98e2SPeter Wemm		from Gregory Neil Shapiro of WPI.
7016c2aa98e2SPeter Wemm	Verify that L= value on M lines cannot be negative, which could cause
7017c2aa98e2SPeter Wemm		negative array subscripting.  Not a security problem since
7018c2aa98e2SPeter Wemm		this has to be in the config file, but it could have caused
7019c2aa98e2SPeter Wemm		core dumps.  Pointed out by Bryan Costales.
7020c2aa98e2SPeter Wemm	Fix -d21 debug output for long macro names.  Pointed out by Bryan
7021c2aa98e2SPeter Wemm		Costales.
7022c2aa98e2SPeter Wemm	PORTABILITY FIXES:
7023c2aa98e2SPeter Wemm		SCO doesn't have ftruncate.  From Bill Aten of Computerizers.
7024c2aa98e2SPeter Wemm		IBM's version of arpa/nameser.h defaults to the wrong byte
7025c2aa98e2SPeter Wemm			order.  Tweak it to work properly.  Based on fixes
7026c2aa98e2SPeter Wemm			from Fletcher Mattox of UTexas and Betty Lee of
7027c2aa98e2SPeter Wemm			Stanford University.
7028c2aa98e2SPeter Wemm	CONFIG: add confHOSTS_FILE m4 variable to set HostsFile option.
7029c2aa98e2SPeter Wemm		Deficiency pointed out by Bryan Costales of ICSI.
7030c2aa98e2SPeter Wemm
703106f25ae9SGregory Neil Shapiro8.7.2/8.7.2	1995/11/19
7032c2aa98e2SPeter Wemm	REALLY fix the backslash escapes in SmtpGreetingMessage,
7033c2aa98e2SPeter Wemm		OperatorChars, and UnixFromLine options.  They were not
7034c2aa98e2SPeter Wemm		properly repaired in 8.7.1.
7035c2aa98e2SPeter Wemm	Completely delete the Bcc: header if and only if there are other
7036c2aa98e2SPeter Wemm		valid recipient headers (To:, Cc: or Apparently-To:, the
7037c2aa98e2SPeter Wemm		last being a historic botch, of course).  If Bcc: is the
7038c2aa98e2SPeter Wemm		only recipient header in the message, its value is tossed,
70392e43090eSPeter Wemm		but the header name is kept.  The old behavior (always keep
7040c2aa98e2SPeter Wemm		the header name and toss the value) allowed primary recipients
7041c2aa98e2SPeter Wemm		to see that a Bcc: went to _someone_.
7042c2aa98e2SPeter Wemm	Include queue id on ``Authentication-Warning: <host>: <user> set
7043c2aa98e2SPeter Wemm		sender to <address> using -f'' syslog messages.  Suggested
7044c2aa98e2SPeter Wemm		by Kari Hurtta.
7045c2aa98e2SPeter Wemm	If a sequence or switch map lookup entry gets a tempfail but then
7046c2aa98e2SPeter Wemm		continues on to another map type, but the name is not found,
7047c2aa98e2SPeter Wemm		return a temporary failure from the sequence or switch map.
7048c2aa98e2SPeter Wemm		For example, if hosts search ``dns files'' and DNS fails
7049c2aa98e2SPeter Wemm		with a tempfail, the hosts map will go on and search files,
7050c2aa98e2SPeter Wemm		but if it fails the whole thing should be a tempfail, not
7051c2aa98e2SPeter Wemm		a permanent (host unknown) failure, even though that is the
7052c2aa98e2SPeter Wemm		failure in the hosts.files map.  This error caused hard
7053c2aa98e2SPeter Wemm		bounces when it should have requeued.
7054c2aa98e2SPeter Wemm	Aliases to files such as /users/bar/foo/inbox, with /users/bar/foo
705540266059SGregory Neil Shapiro		owned by bar mode 700 and inbox being set-user-ID bar stopped
7056c2aa98e2SPeter Wemm		working properly due to excessive paranoia.  Pointed out by
7057c2aa98e2SPeter Wemm		John Hawkinson of Panix.
7058c2aa98e2SPeter Wemm	An SMTP RCPT command referencing a host that gave a nameserver
7059c2aa98e2SPeter Wemm		timeout would return a 451 command (8.6 accepted it and
70602e43090eSPeter Wemm		queued it locally).  Revert to the 8.6 behavior in order
7061c2aa98e2SPeter Wemm		to simplify queue management for clustered systems.  Suggested
7062c2aa98e2SPeter Wemm		by Gregory Neil Shapiro of WPI.  The same problem could break
7063c2aa98e2SPeter Wemm		MH, which assumes that the SMTP session will succeed (tsk, tsk
7064c2aa98e2SPeter Wemm		-- mail gets lost!); this was pointed out by Stuart Pook of
7065c2aa98e2SPeter Wemm		Infobiogen.
7066c2aa98e2SPeter Wemm	Fix possible buffer overflow in munchstring().  This was not a security
7067c2aa98e2SPeter Wemm		problem because you couldn't specify any argument to this
7068c2aa98e2SPeter Wemm		without first giving up root privileges, but it is still a
7069c2aa98e2SPeter Wemm		good idea to avoid future problems.  Problem noted by John
7070c2aa98e2SPeter Wemm		Hawkinson and Sam Hartman of MIT.
7071c2aa98e2SPeter Wemm	``452 Out of disk space for temp file'' messages weren't being
7072c2aa98e2SPeter Wemm		printed.  Fix from David Perlin of Nanosoft.
70732e43090eSPeter Wemm	Don't advertise the ESMTP DSN extension if the SendMimeErrors option
7074c2aa98e2SPeter Wemm		is not set, since this is required to get the actual DSNs
7075c2aa98e2SPeter Wemm		created.  Problem pointed out by John Gardiner Myers of CMU.
7076c2aa98e2SPeter Wemm	Log permission problems that cause .forward and :include: files to
7077c2aa98e2SPeter Wemm		be untrusted or ignored on log level 12 and higher.  Suggested
7078c2aa98e2SPeter Wemm		by Randy Martin of Clemson University.
7079c2aa98e2SPeter Wemm	Allow user ids in U= clauses of M lines to have hyphens and
7080c2aa98e2SPeter Wemm		underscores.
7081c2aa98e2SPeter Wemm	Fix overcounting of recipients -- only happened when sending to an
7082c2aa98e2SPeter Wemm		alias.  Pointed out by Mark Andrews of SGI and Jack Woolley
7083c2aa98e2SPeter Wemm		of Systems and Computer Technology Corporation.
7084c2aa98e2SPeter Wemm	If a message is sent to an address that fails, the error message that
7085c2aa98e2SPeter Wemm		is returned could show some extraneous "success" information
7086c2aa98e2SPeter Wemm		included even if the user did not request success notification,
7087c2aa98e2SPeter Wemm		which was confusing.  Pointed out by Allan Johannesen of WPI.
7088c2aa98e2SPeter Wemm	Config files that had no AliasFile definition were defaulting to
7089c2aa98e2SPeter Wemm		using /etc/aliases; this caused problems with nullclient
7090c2aa98e2SPeter Wemm		configurations.  Change it back to the 8.6 semantics of
7091c2aa98e2SPeter Wemm		having no local alias file unless it is declared.  Problem
7092c2aa98e2SPeter Wemm		noted by Charles Karney of Princeton University.
7093c2aa98e2SPeter Wemm	Fix compile problem if NOTUNIX is defined.  Pointed out by Bryan
7094c2aa98e2SPeter Wemm		Costales of ICSI.
7095c2aa98e2SPeter Wemm	Map lookups of class "userdb" maps were always case sensitive; they
7096c2aa98e2SPeter Wemm		should be controlled by the -f flag like other maps.  Pointed
7097c2aa98e2SPeter Wemm		out by Bjart Kvarme <bjart.kvarme@usit.uio.no>.
7098c2aa98e2SPeter Wemm	Fix problem that caused some addresses to be passed through ruleset 5
7099c2aa98e2SPeter Wemm		even when they were tagged as "sticky" by prefixing the
7100c2aa98e2SPeter Wemm		address with an "@".  Patch from Thomas Dwyer III of Michigan
7101c2aa98e2SPeter Wemm		Technological University.
7102c2aa98e2SPeter Wemm	When converting a message to Quoted-Printable, prevent any lines with
7103c2aa98e2SPeter Wemm		dots alone on a line by themselves.  This is because of the
7104c2aa98e2SPeter Wemm		preponderance of broken mailers that still get this wrong.
7105c2aa98e2SPeter Wemm		Code contributed by Per Hedeland of Ericsson.
7106c2aa98e2SPeter Wemm	Fix F{macro}/file construct -- it previously did nothing.  Pointed
7107c2aa98e2SPeter Wemm		out by Bjart Kvarme of USIT/UiO (Norway).
7108c2aa98e2SPeter Wemm	Announce whether a cached connection is SMTP or ESMTP (in -v mode).
7109c2aa98e2SPeter Wemm		Requested by Allan Johannesen.
7110c2aa98e2SPeter Wemm	Delete check for text format of alias files -- it should be legal
7111c2aa98e2SPeter Wemm		to have the database format of the alias files without the
7112c2aa98e2SPeter Wemm		text version.  Problem pointed out by Joe Rhett of Navigist,
7113c2aa98e2SPeter Wemm		Inc.
7114c2aa98e2SPeter Wemm	If "Ot" was specified with no value, the TZ variable was not properly
7115c2aa98e2SPeter Wemm		imported from the environment.  Pointed out by Frank Crawford
7116c2aa98e2SPeter Wemm		<frank@ansto.gov.au>.
7117c2aa98e2SPeter Wemm	Some architectures core dumped on "program" maps that didn't have
7118c2aa98e2SPeter Wemm		extra arguments.  Patch from Booker C. Bense of Stanford
7119c2aa98e2SPeter Wemm		University.
7120c2aa98e2SPeter Wemm	Queue run processes would re-spawn daemons when given a SIGHUP; only
7121c2aa98e2SPeter Wemm		the parent should do this.  Fix from Brian Coan of the
7122c2aa98e2SPeter Wemm		Association for Progressive Communications.
7123c2aa98e2SPeter Wemm	If MinQueueAge was set and a message was considered but not run
7124c2aa98e2SPeter Wemm		during a queue run and the Timeout.queuereturn interval was
7125c2aa98e2SPeter Wemm		reached, a "timed out" error message would be returned that
7126c2aa98e2SPeter Wemm		didn't include the failed address (and claimed to be a warning
7127c2aa98e2SPeter Wemm		even though it was fatal).  The fix is to not return such
7128c2aa98e2SPeter Wemm		messages until they are actually tried, i.e., in the next
7129c2aa98e2SPeter Wemm		MinQueueAge interval.  Problem noted by Rein Tollevik of
7130c2aa98e2SPeter Wemm		SINTEF RUNIT, Oslo.
7131c2aa98e2SPeter Wemm	Add HES_GETMAILHOST compile flag to support MIT Hesiod distributions
7132c2aa98e2SPeter Wemm		that have the hes_getmailhost() routine.  DEC Hesiod
7133c2aa98e2SPeter Wemm		distributions do not have this routine.  Based on a patch
7134c2aa98e2SPeter Wemm		from Betty Lee of Stanford University.
7135c2aa98e2SPeter Wemm	Extensive cleanups to map open code to handle a locking race condition
7136c2aa98e2SPeter Wemm		in ndbm, hash, and btree format database files on some (most
7137c2aa98e2SPeter Wemm		non-4.4-BSD based) OS architectures.  This should solve the
7138c2aa98e2SPeter Wemm		occasional "user unknown" problem during alias rebuilds that
7139c2aa98e2SPeter Wemm		has plagued me for quite some time.  Based on a patch from
7140c2aa98e2SPeter Wemm		Thomas Dwyer III of Michigan Technological University.
7141c2aa98e2SPeter Wemm	PORTABILITY FIXES:
7142c2aa98e2SPeter Wemm		Solaris: Change location of newaliases and mailq from
7143c2aa98e2SPeter Wemm			/usr/ucb to /usr/bin to match Sun settings.  From
7144c2aa98e2SPeter Wemm			James B. Davis of TCI.
7145c2aa98e2SPeter Wemm		DomainOS: Makefile.DomainOS doesn't require -ldbm.  From
7146c2aa98e2SPeter Wemm			Don Lewis of Silicon Systems.
7147c2aa98e2SPeter Wemm		HP-UX 10: rename Makefile.HP-UX.10 => Makefile.HP-UX.10.x
7148c2aa98e2SPeter Wemm			so that the makesendmail script will find it.  Pointed
7149c2aa98e2SPeter Wemm			out by Richard Allen of the University of Iceland.
7150c2aa98e2SPeter Wemm			Also, use -Aa -D_HPUX_SOURCE instead of -Ae, which
7151c2aa98e2SPeter Wemm			isn't supported on all compilers.
7152c2aa98e2SPeter Wemm		UXPDS: compilation fixes from Diego R. Lopez.
7153c2aa98e2SPeter Wemm	CONFIG: FAX mailer wasn't setting .FAX as a pseudo-domain unless
7154c2aa98e2SPeter Wemm		you also had a FAX_RELAY.  From Thomas.Tornblom@Hax.SE.
7155c2aa98e2SPeter Wemm	CONFIG: Minor glitch in S21 -- attachment of local domain name
7156c2aa98e2SPeter Wemm		didn't have trailing dot.  From Jim Hickstein of Teradyne.
7157c2aa98e2SPeter Wemm	CONFIG: Fix best_mx_is_local feature to allow nested addresses such as
7158c2aa98e2SPeter Wemm		user%host@thishost.  From Claude Scarpelli of Infobiogen
7159c2aa98e2SPeter Wemm		(France).
7160c2aa98e2SPeter Wemm	CONFIG: OSTYPE(hpux10) failed to define the location of the help file.
7161c2aa98e2SPeter Wemm		Pointed out by Hannu Martikka of Nokia Telecommunications.
7162c2aa98e2SPeter Wemm	CONFIG: Diagnose some inappropriate ordering in configuration files,
7163c2aa98e2SPeter Wemm		such as FEATURE(smrsh) listed after MAILER(local).  Based on
7164c2aa98e2SPeter Wemm		a bug report submitted by Paul Hoffman of Proper Publishing.
7165c2aa98e2SPeter Wemm	CONFIG: Make OSTYPE files consistently not override settings that
7166c2aa98e2SPeter Wemm		have already been set.  Previously it worked differently
7167c2aa98e2SPeter Wemm		for different files.
7168c2aa98e2SPeter Wemm	CONFIG: Change relay mailer to do masquerading like 8.6 did.  My take
7169c2aa98e2SPeter Wemm		is that this is wrong, but the change was causing problems
7170c2aa98e2SPeter Wemm		for some people.  From Per Hedeland of Ericsson.
7171c2aa98e2SPeter Wemm	CONTRIB: bitdomain.c patch from John Gardiner Myers <jgm+@CMU.EDU>;
7172c2aa98e2SPeter Wemm		portability changes for Posix environments (no functional
7173c2aa98e2SPeter Wemm		changes).
7174c2aa98e2SPeter Wemm
717506f25ae9SGregory Neil Shapiro8.7.1/8.7.1	1995/10/01
7176c2aa98e2SPeter Wemm	Old macros that have become options (SmtpGreetingMessage,
7177c2aa98e2SPeter Wemm		OperatorChars, and UnixFromLine) didn't allow backslash
7178c2aa98e2SPeter Wemm		escapes in the options, where they previously had.  Bug
7179c2aa98e2SPeter Wemm		pointed out by John Hawkinson of MIT.
7180c2aa98e2SPeter Wemm	Fix strange case of an executable called by a program map that
7181c2aa98e2SPeter Wemm		returns a value but also a non-zero exit status; this
7182c2aa98e2SPeter Wemm		would give contradictory results in the higher level; in
7183c2aa98e2SPeter Wemm		particular, the default clause in the map lookup would be
7184c2aa98e2SPeter Wemm		ignored.  Change to ignore the value if the program returns
7185c2aa98e2SPeter Wemm		non-zero exit status.  From Tom Moore of AT&T GIS.
7186c2aa98e2SPeter Wemm	Shorten parameters passed to syslog() in some contexts to avoid a
7187c2aa98e2SPeter Wemm		bug in many vendors' implementations of that routine.  Although
7188c2aa98e2SPeter Wemm		this isn't really a bug in sendmail per se, and my solution
7189c2aa98e2SPeter Wemm		has to assume that syslog() has at least a 1K buffer size
7190c2aa98e2SPeter Wemm		internally (I know some vendors have shortened this
7191c2aa98e2SPeter Wemm		dramatically -- they're on their own), sendmail is a popular
7192c2aa98e2SPeter Wemm		target.  Also, limit the size of %s arguments in sprintf.
7193c2aa98e2SPeter Wemm		These both have possible security implications.  Solutions
7194c2aa98e2SPeter Wemm		suggested by Casper Dik of Sun's Network Security Group
7195c2aa98e2SPeter Wemm		(Holland), Mark Seiden, and others.
7196c2aa98e2SPeter Wemm	Fix a problem that might cause a non-standard -B (body type)
7197c2aa98e2SPeter Wemm		parameter to be passed to the next server with undefined
7198c2aa98e2SPeter Wemm		results.  This could have security implications.
7199c2aa98e2SPeter Wemm	If a filesystem was at > 100% utilization, the freediskspace()
7200c2aa98e2SPeter Wemm		routine incorrectly returned an error rather than zero.
7201c2aa98e2SPeter Wemm		Problem noted by G. Paul Ziemba of Alantec.
7202c2aa98e2SPeter Wemm	Change MX sort order so that local hostnames (those in $=w) always
7203c2aa98e2SPeter Wemm		sort first within a given preference.  This forces the bestmx
7204c2aa98e2SPeter Wemm		map to always return the local host first, if it is included
7205c2aa98e2SPeter Wemm		in the list of highest priority MX records.  From K. Robert
7206c2aa98e2SPeter Wemm		Elz.
7207c2aa98e2SPeter Wemm	Avoid some possible null pointer dereferences.  Fixes from Randy
7208c2aa98e2SPeter Wemm		Martin <WOLF@CLEMSON.EDU>
7209c2aa98e2SPeter Wemm	When sendmail starts up on systems that have no fully qualified
7210c2aa98e2SPeter Wemm		domain name (FQDN) anywhere in the first matching host map
7211c2aa98e2SPeter Wemm		(e.g., /etc/hosts if the hosts service searches "files dns"),
7212c2aa98e2SPeter Wemm		sendmail would sleep to try to find a FQDN, which it really
7213c2aa98e2SPeter Wemm		really needs.  This has been changed to fall through to the
7214c2aa98e2SPeter Wemm		next map type if it can't find a FQDN -- i.e., if the hosts
7215c2aa98e2SPeter Wemm		file doesn't have a FQDN, it will try dns even though the
7216c2aa98e2SPeter Wemm		short name was found in /etc/hosts.  This is probably a crock,
7217c2aa98e2SPeter Wemm		but many people have hosts files without FQDNs.  Remember:
7218c2aa98e2SPeter Wemm		domain names are your friends.
7219c2aa98e2SPeter Wemm	Log a high-priority message if you can't find your FQDN during startup.
7220c2aa98e2SPeter Wemm		Suggested by Simon Barnes of Schlumberger Limited.
7221c2aa98e2SPeter Wemm	When using Hesiod, initialize it early to improve error reporting.
7222c2aa98e2SPeter Wemm		Patch from Don Lewis of Silicon Systems, Inc.
7223c2aa98e2SPeter Wemm	Apparently at least some versions of Linux have a 90 !minute! TCP
7224c2aa98e2SPeter Wemm		connection timeout in the kernel.  Add a new "connect" timeout
7225c2aa98e2SPeter Wemm		to limit this time.  Defaults to zero (use whatever the
7226c2aa98e2SPeter Wemm		kernel provides).  Based on code contributed by J.R. Oldroyd
7227c2aa98e2SPeter Wemm		of TerraNet.
7228c2aa98e2SPeter Wemm	Under some circumstances, a failed message would not be properly
7229c2aa98e2SPeter Wemm		removed from the queue, causing tons of bogus error messages.
7230c2aa98e2SPeter Wemm		(This fix eliminates the problematic EF_KEEPQUEUE flag.)
7231c2aa98e2SPeter Wemm		Problem noted by Allan E Johannesen and Gregory Neil Shapiro
7232c2aa98e2SPeter Wemm		of WPI.
7233c2aa98e2SPeter Wemm	PORTABILITY FIXES:
7234c2aa98e2SPeter Wemm		On IRIX 5.x, there was an inconsistency in the setting
7235c2aa98e2SPeter Wemm			of sendmail.st location.  Change the Makefile to
7236c2aa98e2SPeter Wemm			install it in /var/sendmail.st to match the OSTYPE
7237c2aa98e2SPeter Wemm			file and SGI standards.  From Andre
7238c2aa98e2SPeter Wemm			<andre@curry.zfe.siemens.de>.
7239c2aa98e2SPeter Wemm		Support for Fujitsu/ICL UXP/DS (For the DS/90 Series)
7240c2aa98e2SPeter Wemm			from Diego R. Lopez <drlopez@cica.es>.
7241c2aa98e2SPeter Wemm		Linux compilation patches from J.R. Oldroyd of TerraNet, Inc.
7242c2aa98e2SPeter Wemm		LUNA 2 Mach patches from Motonori Nakamura.
7243c2aa98e2SPeter Wemm		SunOS Makefile was including -ldbm, which is for the old
7244c2aa98e2SPeter Wemm			dbm library.  The ndbm library is part of libc.
7245c2aa98e2SPeter Wemm	CONFIG: avoid bouncing ``user@host.'' (note trailing dot) with
7246c2aa98e2SPeter Wemm		``local configuration error'' in nullclient configuration.
7247c2aa98e2SPeter Wemm		Patch from Gregory Neil Shapiro of WPI.
7248c2aa98e2SPeter Wemm	CONFIG: don't allow an alias file in nullclient configurations --
7249c2aa98e2SPeter Wemm		since all addresses are relayed, they give errors during
7250c2aa98e2SPeter Wemm		rebuild.  Suggested by Per Hedeland of Ericsson.
7251c2aa98e2SPeter Wemm	CONFIG: local mailer on Solaris 2 should always get a -f flag because
7252c2aa98e2SPeter Wemm		otherwise the F=S causes the From_ line to imply that root is
7253c2aa98e2SPeter Wemm		the sender.  Problem pointed out by Claude Scarpelli of
7254c2aa98e2SPeter Wemm		Infobiogen (France).
7255c2aa98e2SPeter Wemm	NEW FILES:
7256c2aa98e2SPeter Wemm		cf/feature/use_ct_file.m4 (omitted from 8.7 by mistake)
7257c2aa98e2SPeter Wemm		src/Makefiles/Makefile.KSR (omitted from 8.7 by mistake)
7258c2aa98e2SPeter Wemm		src/Makefiles/Makefile.UXPDS
7259c2aa98e2SPeter Wemm
726006f25ae9SGregory Neil Shapiro8.7/8.7		1995/09/16
7261c2aa98e2SPeter Wemm	Fix a problem that could cause sendmail to run out of file
7262c2aa98e2SPeter Wemm		descriptors due to a trashed data structure after a
7263c2aa98e2SPeter Wemm		vfork.  Fix from Brian Coan of the Institute for
7264c2aa98e2SPeter Wemm		Global Communications.
7265c2aa98e2SPeter Wemm	Change the VRFY response if you have disabled VRFY -- some
7266c2aa98e2SPeter Wemm		people seemed to think that it was too rude.
7267c2aa98e2SPeter Wemm	Avoid reference to uninitialized file descriptor if HASFLOCK
7268c2aa98e2SPeter Wemm		was not defined.  This was used "safely" in the sense
7269c2aa98e2SPeter Wemm		that it only did a stat, but it would have set the
7270c2aa98e2SPeter Wemm		map modification time improperly.  Problem pointed out
7271c2aa98e2SPeter Wemm		by Roy Mongiovi of Georgia Tech.
7272c2aa98e2SPeter Wemm	Clean up the Subject: line on warning messages and return
7273c2aa98e2SPeter Wemm		receipts so that they don't say "Returned mail:"; this
7274c2aa98e2SPeter Wemm		can be confusing.
7275c2aa98e2SPeter Wemm	Move ruleset entry/exit debugging from 21.2 to 21.1 -- this is
7276c2aa98e2SPeter Wemm		useful enough to make it worthwhile printing on "-d".
7277c2aa98e2SPeter Wemm	Avoid logging alias statistics every time you read the alias
7278c2aa98e2SPeter Wemm		file on systems with no database method compiled in.
7279c2aa98e2SPeter Wemm	If you have a name with a trailing dot, and you try looking it
7280c2aa98e2SPeter Wemm		up using gethostbyname without the dot (for /etc/hosts
7281c2aa98e2SPeter Wemm		compatibility), be sure to turn off RES_DEFNAMES and
7282c2aa98e2SPeter Wemm		RES_DNSRCH to avoid finding the wrong name accidentally.
7283c2aa98e2SPeter Wemm		Problem noted by Charles Amos of the University of
7284c2aa98e2SPeter Wemm		Maryland.
7285c2aa98e2SPeter Wemm	Don't do timeouts in collect if you are not running SMTP.
7286c2aa98e2SPeter Wemm		There is nothing that says you can't have a long
7287c2aa98e2SPeter Wemm		running program piped into sendmail (possibly via
7288c2aa98e2SPeter Wemm		/bin/mail, which just execs sendmail).  Problem reported
7289c2aa98e2SPeter Wemm		by Don "Truck" Lewis of Silicon Systems.
7290c2aa98e2SPeter Wemm	Try gethostbyname() even if the DNS lookup fails iff option I
7291c2aa98e2SPeter Wemm		is not set.  This allows you to have hosts listed in
7292c2aa98e2SPeter Wemm		NIS or /etc/hosts that are not known to DNS.  It's normally
7293c2aa98e2SPeter Wemm		a bad idea, but can be useful on firewall machines.  This
7294c2aa98e2SPeter Wemm		should really be broken out on a separate flag, I suppose.
7295c2aa98e2SPeter Wemm	Avoid compile warnings against BIND 4.9.3, which uses function
7296c2aa98e2SPeter Wemm		prototypes.  From Don Lewis of Silicon Systems.
7297c2aa98e2SPeter Wemm	Avoid possible incorrect diagnosis of DNS-related errors caused
7298c2aa98e2SPeter Wemm		by things like attempts to resolve uucp names using
7299c2aa98e2SPeter Wemm		$[ ... $] -- the fix is to clear h_errno at appropriate
7300c2aa98e2SPeter Wemm		times.  From Kyle Jones of UUNET.
7301c2aa98e2SPeter Wemm	SECURITY: avoid denial-of-service attacks possible by destroying
7302c2aa98e2SPeter Wemm		the alias database file by setting resource limits low.
7303c2aa98e2SPeter Wemm		This involves adding two new compile-time options:
7304c2aa98e2SPeter Wemm		HASSETRLIMIT (indicating that setrlimit(2) support is
7305c2aa98e2SPeter Wemm		available) and HASULIMIT (indicating that ulimit(2) support
7306c2aa98e2SPeter Wemm		is available -- the Release 3 form is used).  The former
7307c2aa98e2SPeter Wemm		is assumed on BSD-based systems, the latter on System
7308c2aa98e2SPeter Wemm		V-based systems.  Attack noted by Phil Brandenberger of
7309c2aa98e2SPeter Wemm		Swarthmore University.
7310c2aa98e2SPeter Wemm	New syntaxes in test (-bt) mode:
7311c2aa98e2SPeter Wemm		``.Dmvalue'' will define macro "m" to "value".
7312c2aa98e2SPeter Wemm		``.Ccvalue'' will add "value" to class "c".
7313c2aa98e2SPeter Wemm		``=Sruleset'' will dump the contents of the indicated
7314c2aa98e2SPeter Wemm			ruleset.
7315c2aa98e2SPeter Wemm		``=M'' will display the known mailers.
7316c2aa98e2SPeter Wemm		``-ddebug-spec'' is equivalent to the command-line
7317c2aa98e2SPeter Wemm			-d debug flag.
7318c2aa98e2SPeter Wemm		``$m'' will print the value of macro $m.
7319c2aa98e2SPeter Wemm		``$=c'' will print the contents of class $=c.
7320c2aa98e2SPeter Wemm		``/mx host'' returns the MX records for ``host''.
7321c2aa98e2SPeter Wemm		``/parse address'' will parse address, returning the value of
7322c2aa98e2SPeter Wemm			crackaddr (essentially, the comment information)
7323c2aa98e2SPeter Wemm			and the parsed address.
7324c2aa98e2SPeter Wemm		``/try mailer address'' will rewrite address into the form
7325c2aa98e2SPeter Wemm			it will have when presented to the indicated mailer.
7326c2aa98e2SPeter Wemm		``/tryflags flags'' will set flags used by parsing.  The
7327c2aa98e2SPeter Wemm			flags can be `H' for header or `E' for envelope,
7328c2aa98e2SPeter Wemm			and `S' for sender or `R' for recipient.  These
7329c2aa98e2SPeter Wemm			can be combined, so `HR' sets flags for header
7330c2aa98e2SPeter Wemm			recipients.
7331c2aa98e2SPeter Wemm		``/canon hostname'' will try to canonify hostname and
7332c2aa98e2SPeter Wemm			return the result.
7333c2aa98e2SPeter Wemm		``/map mapname key'' will look up `key' in the indicated
7334c2aa98e2SPeter Wemm			`mapname' and return the result.
7335c2aa98e2SPeter Wemm	Somewhat better handling of UNIX-domain socket addresses -- it
7336c2aa98e2SPeter Wemm		should show the pathname rather than hex bytes.
7337c2aa98e2SPeter Wemm	Restore ``-ba'' mode -- this reads a file from stdin and parses
7338c2aa98e2SPeter Wemm		the header for envelope sender information and uses
7339c2aa98e2SPeter Wemm		CR-LF as message terminators.  It was thought to be
7340c2aa98e2SPeter Wemm		obsolete (used only for Arpanet NCP protocols), but it
7341c2aa98e2SPeter Wemm		turns out that the UK ``Grey Book'' protocols require
7342c2aa98e2SPeter Wemm		that functionality.
7343c2aa98e2SPeter Wemm	Fix a fix in previous release -- if gethostname and gethostbyname
7344c2aa98e2SPeter Wemm		return a name without dots, and if an attempt to canonify
7345c2aa98e2SPeter Wemm		that name fails, wait one minute and try again.  This can
7346c2aa98e2SPeter Wemm		result in an extra 60 second delay on startup if your system
7347c2aa98e2SPeter Wemm		hostname (as returned by hostname(1)) has no dot and no names
7348c2aa98e2SPeter Wemm		listed in /etc/hosts or your NIS map have a dot.
7349c2aa98e2SPeter Wemm	Check for proper domain name on HELO and EHLO commands per
7350c2aa98e2SPeter Wemm		RFC 1123 section 5.2.5.  Problem noted by Thomas Dwyer III
7351c2aa98e2SPeter Wemm		of Michigan Technological University.
7352c2aa98e2SPeter Wemm	Relax chownsafe rules slightly -- old version said that if you
7353c2aa98e2SPeter Wemm		can't tell if _POSIX_CHOWN_RESTRICTED is set (that is,
7354c2aa98e2SPeter Wemm		if fpathconf returned EINVAL or ENOSYS), assume that
7355c2aa98e2SPeter Wemm		chown is not safe.  The new version falls back to whether
7356c2aa98e2SPeter Wemm		you are on a BSD system or not.  This is important for
7357c2aa98e2SPeter Wemm		SunOS, which apparently always returns one of those
7358c2aa98e2SPeter Wemm		error codes.  This impacts whether you can mail to files
7359c2aa98e2SPeter Wemm		or not.
7360c2aa98e2SPeter Wemm	Syntax errors such as unbalanced parentheses in the configuration
7361c2aa98e2SPeter Wemm		file could be omitted if you had "Oem" prior to the
7362c2aa98e2SPeter Wemm		syntax error in the config file.  Change to always print
7363c2aa98e2SPeter Wemm		the error message.  It was especially weird because it
7364c2aa98e2SPeter Wemm		would cause a "warning" message to be sent to the Postmaster
7365c2aa98e2SPeter Wemm		for every message sent (but with no transcript).  Problem
7366c2aa98e2SPeter Wemm		noted by Gregory Paris of Motorola.
7367c2aa98e2SPeter Wemm	Rewrite collect and putbody to handle full 8-bit data, including
7368c2aa98e2SPeter Wemm		zero bytes.  These changes are internally extensive, but
7369c2aa98e2SPeter Wemm		should have minimal impact on external function.
7370c2aa98e2SPeter Wemm	Allow full words for option names -- if the option letter is
7371c2aa98e2SPeter Wemm		(apparently) a space, then take the word following -- e.g.,
7372c2aa98e2SPeter Wemm			O MatchGECOS=TRUE
7373c2aa98e2SPeter Wemm		The full list of old and new names is as follows:
7374c2aa98e2SPeter Wemm			7	SevenBitInput
7375c2aa98e2SPeter Wemm			8	EightBitMode
7376c2aa98e2SPeter Wemm			A	AliasFile
7377c2aa98e2SPeter Wemm			a	AliasWait
7378c2aa98e2SPeter Wemm			B	BlankSub
7379c2aa98e2SPeter Wemm			b	MinFreeBlocks/MaxMessageSize
7380c2aa98e2SPeter Wemm			C	CheckpointInterval
7381c2aa98e2SPeter Wemm			c	HoldExpensive
7382c2aa98e2SPeter Wemm			D	AutoRebuildAliases
7383c2aa98e2SPeter Wemm			d	DeliveryMode
7384c2aa98e2SPeter Wemm			E	ErrorHeader
7385c2aa98e2SPeter Wemm			e	ErrorMode
7386c2aa98e2SPeter Wemm			f	SaveFromLine
7387c2aa98e2SPeter Wemm			F	TempFileMode
7388c2aa98e2SPeter Wemm			G	MatchGECOS
7389c2aa98e2SPeter Wemm			H	HelpFile
7390c2aa98e2SPeter Wemm			h	MaxHopCount
7391c2aa98e2SPeter Wemm			i	IgnoreDots
7392c2aa98e2SPeter Wemm			I	ResolverOptions
7393c2aa98e2SPeter Wemm			J	ForwardPath
7394c2aa98e2SPeter Wemm			j	SendMimeErrors
7395c2aa98e2SPeter Wemm			k	ConnectionCacheSize
7396c2aa98e2SPeter Wemm			K	ConnectionCacheTimeout
7397c2aa98e2SPeter Wemm			L	LogLevel
7398c2aa98e2SPeter Wemm			l	UseErrorsTo
7399c2aa98e2SPeter Wemm			m	MeToo
7400c2aa98e2SPeter Wemm			n	CheckAliases
7401c2aa98e2SPeter Wemm			O	DaemonPortOptions
7402c2aa98e2SPeter Wemm			o	OldStyleHeaders
7403c2aa98e2SPeter Wemm			P	PostmasterCopy
7404c2aa98e2SPeter Wemm			p	PrivacyOptions
7405c2aa98e2SPeter Wemm			Q	QueueDirectory
7406c2aa98e2SPeter Wemm			q	QueueFactor
7407c2aa98e2SPeter Wemm			R	DontPruneRoutes
7408c2aa98e2SPeter Wemm			r, T	Timeout
7409c2aa98e2SPeter Wemm			S	StatusFile
7410c2aa98e2SPeter Wemm			s	SuperSafe
7411c2aa98e2SPeter Wemm			t	TimeZoneSpec
7412c2aa98e2SPeter Wemm			u	DefaultUser
7413c2aa98e2SPeter Wemm			U	UserDatabaseSpec
74142e43090eSPeter Wemm			V	FallbackMXHost
7415c2aa98e2SPeter Wemm			v	Verbose
7416c2aa98e2SPeter Wemm			w	TryNullMXList
7417c2aa98e2SPeter Wemm			x	QueueLA
7418c2aa98e2SPeter Wemm			X	RefuseLA
7419c2aa98e2SPeter Wemm			Y	ForkEachJob
7420c2aa98e2SPeter Wemm			y	RecipientFactor
7421c2aa98e2SPeter Wemm			z	ClassFactor
7422c2aa98e2SPeter Wemm			Z	RetryFactor
7423c2aa98e2SPeter Wemm		The old macros that passed information into sendmail have
7424c2aa98e2SPeter Wemm		been changed to options; those correspondences are:
7425c2aa98e2SPeter Wemm			$e	SmtpGreetingMessage
7426c2aa98e2SPeter Wemm			$l	UnixFromLine
7427c2aa98e2SPeter Wemm			$o	OperatorChars
7428c2aa98e2SPeter Wemm			$q	(deleted -- not necessary)
7429c2aa98e2SPeter Wemm		To avoid possible problems with an older sendmail,
7430c2aa98e2SPeter Wemm		configuration level 6 is accepted by this version of
7431c2aa98e2SPeter Wemm		sendmail; any config file using the new names should
7432c2aa98e2SPeter Wemm		specify "V6" in the configuration.
7433c2aa98e2SPeter Wemm	Change address parsing to properly note that a phrase before a
7434c2aa98e2SPeter Wemm		colon and a trailing semicolon are essentially the same
7435c2aa98e2SPeter Wemm		as text outside of angle brackets (i.e., sendmail should
7436c2aa98e2SPeter Wemm		treat them as comments).  This is to handle the
7437c2aa98e2SPeter Wemm		``group name: addr1, addr2, ..., addrN;'' syntax (it will
7438c2aa98e2SPeter Wemm		assume that ``group name:'' is a comment on the first
7439c2aa98e2SPeter Wemm		address and the ``;'' is a comment on the last address).
7440c2aa98e2SPeter Wemm		This requires config file support to get right.  It does
7441c2aa98e2SPeter Wemm		understand that :: is NOT this syntax, and can be turned
7442c2aa98e2SPeter Wemm		off completely by setting the ColonOkInAddresses option.
7443c2aa98e2SPeter Wemm	Level 6 config files added with new mailer flags:
7444c2aa98e2SPeter Wemm		    A	Addresses are aliasable.
7445c2aa98e2SPeter Wemm		    i	Do udb rewriting on envelope as well as header
7446c2aa98e2SPeter Wemm			sender lines.  Applies to the from address mailer
7447c2aa98e2SPeter Wemm			flags rather than the recipient mailer flags.
7448c2aa98e2SPeter Wemm		    j	Do udb rewriting on header recipient addresses.
7449c2aa98e2SPeter Wemm			Applies to the sender mailer flags rather than the
7450c2aa98e2SPeter Wemm			recipient mailer flags.
7451c2aa98e2SPeter Wemm		    k	Disable check for loops when doing HELO command.
7452c2aa98e2SPeter Wemm		    o	Always run as the mail recipient, even on local
7453c2aa98e2SPeter Wemm			delivery.
7454c2aa98e2SPeter Wemm		    w	Check for an /etc/passwd entry for this user.
7455c2aa98e2SPeter Wemm		    5	Pass addresses through ruleset 5.
7456c2aa98e2SPeter Wemm		    :	Check for :include: on this address.
7457c2aa98e2SPeter Wemm		    |	Check for |program on this address.
7458c2aa98e2SPeter Wemm		    /	Check for /file on this address.
7459c2aa98e2SPeter Wemm		    @	Look up sender header addresses in the user
7460c2aa98e2SPeter Wemm			database.  Applies to the mailer flags for the
7461c2aa98e2SPeter Wemm			mailer corresponding to the envelope sender
7462c2aa98e2SPeter Wemm			address, rather than to recipient mailer flags.
7463c2aa98e2SPeter Wemm		Pre-level 6 configuration files set A, w, 5, :, |, /, and @
7464c2aa98e2SPeter Wemm		on the "local" mailer, the o flag on the "prog" and "*file*"
7465c2aa98e2SPeter Wemm		mailers, and the ColonOkInAddresses option.
7466c2aa98e2SPeter Wemm	Eight-to-seven bit MIME conversions.  This borrows ideas from
7467c2aa98e2SPeter Wemm		John Beck of Hewlett-Packard, who generously contributed
7468c2aa98e2SPeter Wemm		their implementation to me, which I then didn't use (see
7469c2aa98e2SPeter Wemm		mime.c for an explanation of why).  This adds the
7470c2aa98e2SPeter Wemm		EightBitMode option (a.k.a. `8') and an F=8 mailer flag
7471c2aa98e2SPeter Wemm		to control handling of 8-bit data.  These have to cope with
7472c2aa98e2SPeter Wemm		two types of 8-bit data: unlabelled 8-bit data (that is,
7473c2aa98e2SPeter Wemm		8-bit data that is entered without declaring it as 8-bit
7474c2aa98e2SPeter Wemm		MIME -- technically this is illegal according to the
7475c2aa98e2SPeter Wemm		specs) and labelled 8-bit data (that is, it was declared
7476c2aa98e2SPeter Wemm		as 8BITMIME in the ESMTP session or by using the
7477c2aa98e2SPeter Wemm		-B8BITMIME command line flag).  If the F=8 mailer flag is
7478c2aa98e2SPeter Wemm		set then 8-bit data is sent to non-8BITMIME machines
7479c2aa98e2SPeter Wemm		instead of converting to 7 bit (essentially using
7480c2aa98e2SPeter Wemm		just-send-8 semantics).  The values for EightBitMode are:
7481c2aa98e2SPeter Wemm		    m	convert unlabelled 8-bit input to 8BITMIME, and do
7482c2aa98e2SPeter Wemm			any necessary conversion of 8BITMIME to 7BIT
7483c2aa98e2SPeter Wemm			(essentially, the full MIME option).
7484c2aa98e2SPeter Wemm		    p	pass unlabelled 8-bit input, but convert labelled
7485c2aa98e2SPeter Wemm			8BITMIME input to 7BIT as required (default).
7486c2aa98e2SPeter Wemm		    s	strict adherence: reject unlabelled 8-bit input,
7487c2aa98e2SPeter Wemm			convert 8BITMIME to 7BIT as required.  The F=8
7488c2aa98e2SPeter Wemm			flag is ignored.
7489c2aa98e2SPeter Wemm		Unlabelled 8-bit data is rejected in mode `s' regardless of
7490c2aa98e2SPeter Wemm			the setting of F=8.
7491c2aa98e2SPeter Wemm	Add new internal class 'n', which is the set of MIME Content-Types
7492c2aa98e2SPeter Wemm		which can not be 8 to 7 bit encoded because of other
7493c2aa98e2SPeter Wemm		considerations.  Types "multipart/*" and "message/*" are
7494c2aa98e2SPeter Wemm		never directly encoded (although their components can be).
7495c2aa98e2SPeter Wemm	Add new internal class 's', which is the set of subtypes of the
7496c2aa98e2SPeter Wemm		MIME message/* content type that can be treated as though
7497c2aa98e2SPeter Wemm		they are an RFC822 message.  It is predefined to have
7498c2aa98e2SPeter Wemm		"rfc822".  Suggested By Kari Hurtta.
7499c2aa98e2SPeter Wemm	Add new internal class 'e'.  This is the set of MIME
7500c2aa98e2SPeter Wemm		Content-Transfer-Encodings that can be converted to
7501c2aa98e2SPeter Wemm		a seven bit format (Quoted-Printable or Base64).  It is
7502c2aa98e2SPeter Wemm		preinitialized to contain "7bit", "8bit", and "binary".
7503c2aa98e2SPeter Wemm	Add C=charset mailer parameter and the the DefaultCharSet option (no
7504c2aa98e2SPeter Wemm		short name) to set the default character set to use in the
7505c2aa98e2SPeter Wemm		Content-Type: header when doing encoding of an 8-bit message
7506c2aa98e2SPeter Wemm		which isn't marked as MIME into MIME format.  If the C=
7507c2aa98e2SPeter Wemm		parameter is set on the Envelope From address, use that as
7508c2aa98e2SPeter Wemm		the default encoding; else use the DefaultCharSet option.
7509c2aa98e2SPeter Wemm		If neither is set, it defaults to "unknown-8bit" as
7510c2aa98e2SPeter Wemm		suggested by RFC 1428 section 3.
7511c2aa98e2SPeter Wemm	Allow ``U=user:group'' field in mailer definition to set a default
7512c2aa98e2SPeter Wemm		user and group that a mailer will be executed as.  This
7513c2aa98e2SPeter Wemm		overrides the 'u' and 'g' options, and if the `F=S' flag is
7514c2aa98e2SPeter Wemm		also set, it is the uid/gid that will always be used (that
7515c2aa98e2SPeter Wemm		is, the controlling address is ignored).  The values may be
7516c2aa98e2SPeter Wemm		numeric or symbolic; if only a symbolic user is given (no
7517c2aa98e2SPeter Wemm		group) that user's default group in the passwd file is used
7518c2aa98e2SPeter Wemm		as the group.  Based on code donated by Chip Rosenthal of
7519c2aa98e2SPeter Wemm		Unicom.
7520c2aa98e2SPeter Wemm	Allow `u' option to also accept user:group as a value, in the same
7521c2aa98e2SPeter Wemm		fashion as the U= mailer option.
7522c2aa98e2SPeter Wemm	Add the symbolic time zone name in the Arpanet format dates (as
7523c2aa98e2SPeter Wemm		a comment).  This adds a new compile-time configuration
7524c2aa98e2SPeter Wemm		flag: TZ_TYPE can be set to TZ_TM_NAME (use the value
7525c2aa98e2SPeter Wemm		of (struct tm *)->tm_name), TZ_TM_ZONE (use the value
7526c2aa98e2SPeter Wemm		of (struct tm *)->tm_zone), TZ_TZNAME (use extern char
7527c2aa98e2SPeter Wemm		*tzname[(struct tm *)->tm_isdst]), TZ_TIMEZONE (use
7528c2aa98e2SPeter Wemm		timezone()), or TZ_NONE (don't include the comment).  Code
7529c2aa98e2SPeter Wemm		from Chip Rosenthal.
7530c2aa98e2SPeter Wemm	The "Timeout" option (formerly "r") is extended to allow suboptions.
7531c2aa98e2SPeter Wemm		For example,
7532c2aa98e2SPeter Wemm		    O Timeout.helo = 2m
7533c2aa98e2SPeter Wemm		There are also two new suboptions "queuereturn" and
7534c2aa98e2SPeter Wemm		"queuewarn"; these subsume the old T option.  Thus, to
7535c2aa98e2SPeter Wemm		set them both the preferred new syntax is
7536c2aa98e2SPeter Wemm		    O Timeout.queuereturn = 5d
7537c2aa98e2SPeter Wemm		    O Timeout.queuewarn = 4h
7538c2aa98e2SPeter Wemm	Sort queue by host name instead of by message priority if the
7539c2aa98e2SPeter Wemm		QueueSortOrder option (no short name) is set is set to
7540c2aa98e2SPeter Wemm		``host''.  This makes better use of the connection cache,
7541c2aa98e2SPeter Wemm		but may delay more ``interactive'' messages behind large
7542c2aa98e2SPeter Wemm		backlogs under some circumstances.  This is probably a
7543c2aa98e2SPeter Wemm		good option if you have high speed links or don't do lots
7544c2aa98e2SPeter Wemm		of ``batch'' messages, but less good if you are using
7545c2aa98e2SPeter Wemm		something like PPP on a 14.4 modem.  Based on code
7546c2aa98e2SPeter Wemm		contributed by Roy Mongiovi of Georgia Tech (my main
7547c2aa98e2SPeter Wemm		contribution was to make it configurable).
7548c2aa98e2SPeter Wemm	Save i-number of df file in qf file to simplify rebuilding of queue
7549c2aa98e2SPeter Wemm		after disastrous disk crash.  Suggested by Kyle Jones of
7550c2aa98e2SPeter Wemm		UUNET; closely based on code from KJS DECWRL code written
7551c2aa98e2SPeter Wemm		by Paul Vixie.  NOTA BENE: The qf files produced by 8.7
7552c2aa98e2SPeter Wemm		are NOT back compatible with 8.6 -- that is, you can convert
7553c2aa98e2SPeter Wemm		from 8.6 to 8.7, but not the other direction.
7554c2aa98e2SPeter Wemm	Add ``F=d'' mailer flag to disable all use of angle brackets in
7555c2aa98e2SPeter Wemm		route-addrs in envelopes; this is because in some cases
7556c2aa98e2SPeter Wemm		they can be sent to the shell, which interprets them as
7557c2aa98e2SPeter Wemm		I/O redirection.
7558c2aa98e2SPeter Wemm	Don't include error file (option E) with return-receipts; this
7559c2aa98e2SPeter Wemm		can be confusing.
7560c2aa98e2SPeter Wemm	Don't send "Warning: cannot send" messages to owner-* or
7561c2aa98e2SPeter Wemm		*-request addresses.  Suggested by Christophe Wolfhugel
7562c2aa98e2SPeter Wemm		of the Institut Pasteur, Paris.
7563c2aa98e2SPeter Wemm	Allow -O command line flag to set long form options.
7564c2aa98e2SPeter Wemm	Add "MinQueueAge" option to set the minimum time between attempts
7565c2aa98e2SPeter Wemm		to run the queue.  For example, if the queue interval
7566c2aa98e2SPeter Wemm		(-q value) is five minutes, but the minimum queue age
7567c2aa98e2SPeter Wemm		is fifteen minutes, jobs won't be tried more often than
7568c2aa98e2SPeter Wemm		once every fifteen minutes.  This can be used to give
7569c2aa98e2SPeter Wemm		you more responsiveness if your delivery mode is set to
7570c2aa98e2SPeter Wemm		queue-only.
7571c2aa98e2SPeter Wemm	Allow "fileopen" timeout (default: 60 seconds) for opening
7572c2aa98e2SPeter Wemm		:include: and .forward files.
7573c2aa98e2SPeter Wemm	Add "-k", "-v", and "-z" flags to map definitions; these set the
7574c2aa98e2SPeter Wemm		key field name, the value field name, and the field
7575c2aa98e2SPeter Wemm		delimiter.  The field delimiter can be a single character
7576c2aa98e2SPeter Wemm		or the sequence "\t" or "\n" for tab or newline.
7577c2aa98e2SPeter Wemm		These are for use by NIS+ and similar access methods.
7578c2aa98e2SPeter Wemm	Change maps to always strip quotes before lookups; the -q flag
75792e43090eSPeter Wemm		turns off this behavior.  Suggested by Motonori Nakamura.
7580c2aa98e2SPeter Wemm	Add "nisplus" map class.  Takes -k and -v flags to choose the
7581c2aa98e2SPeter Wemm		key and value field names respectively.  Code donated by
7582c2aa98e2SPeter Wemm		Sun Microsystems.
7583c2aa98e2SPeter Wemm	Add "hesiod" map class.  The "file name" is used as the
7584c2aa98e2SPeter Wemm		"HesiodNameType" parameter to hes_resolve(3).  Returns the
7585c2aa98e2SPeter Wemm		first value found for the match.  Code donated by Scott
7586c2aa98e2SPeter Wemm		Hutton of Indiana University.
7587c2aa98e2SPeter Wemm	Add "netinfo" (NeXT NetInfo) map class.  Maps can have a -k flag to
7588c2aa98e2SPeter Wemm		specify the name of the property that is searched as the
7589c2aa98e2SPeter Wemm		key and a -v flag to specify the name of the property that
7590c2aa98e2SPeter Wemm		is returned as the value (defaults to "members").  The
7591c2aa98e2SPeter Wemm		default map is "/aliases".  Some code based on code
7592c2aa98e2SPeter Wemm		contributed by Robert La Ferla of Hot Software.
7593c2aa98e2SPeter Wemm	Add "text" map class.  This does slow, linear searches through
7594c2aa98e2SPeter Wemm		text files.  The -z flag specifies a column delimiter
7595c2aa98e2SPeter Wemm		(defaults to any sequence of white space), the -k flag
7596c2aa98e2SPeter Wemm		sets the key column number, and the -v flag sets the
7597c2aa98e2SPeter Wemm		value column number.  Lines beginning with `#' are treated
7598c2aa98e2SPeter Wemm		as comments.
7599c2aa98e2SPeter Wemm	Add "program" map class to execute arbitrary programs.  The search
7600c2aa98e2SPeter Wemm		key is presented as the last argument; the output is one
7601c2aa98e2SPeter Wemm		line read from the programs standard output.  Exit statuses
7602c2aa98e2SPeter Wemm		are from sysexits.h.
7603c2aa98e2SPeter Wemm	Add "sequence" map class -- searches maps in sequence until it
7604c2aa98e2SPeter Wemm		finds a match.  For example, the declarations:
7605c2aa98e2SPeter Wemm		    Kmap1 ...
7606c2aa98e2SPeter Wemm		    Kmap2 ...
7607c2aa98e2SPeter Wemm		    Kmapseq sequence map1 map2
7608c2aa98e2SPeter Wemm		defines a map "mapseq" that first searches map1; if the
7609c2aa98e2SPeter Wemm		value is found it is returned immediately, otherwise
7610c2aa98e2SPeter Wemm		map2 is searched and the value returned.
7611c2aa98e2SPeter Wemm	Add "switch" map class.  This is much like "sequence" except that
7612c2aa98e2SPeter Wemm		the ordering is fetched from an external file, usually
7613c2aa98e2SPeter Wemm		the system service switch.  The parameter is the name of
7614c2aa98e2SPeter Wemm		the service to switch on, and the maps that it will use
7615c2aa98e2SPeter Wemm		are the name of the switch map followed by ".service_type".
7616c2aa98e2SPeter Wemm		For example, if the declaration of the map is
7617c2aa98e2SPeter Wemm		    Ksample switch hosts
7618c2aa98e2SPeter Wemm		and the system service switch specifies that hosts are
7619c2aa98e2SPeter Wemm		looked up using dns and nis in that order, then this is
7620c2aa98e2SPeter Wemm		equivalent to
7621c2aa98e2SPeter Wemm		    Ksample sequence sample.dns sample.nis
7622c2aa98e2SPeter Wemm		The subordinate maps (sample.*) must already be defined.
7623c2aa98e2SPeter Wemm	Add "user" map class -- looks up users using getpwnam.  Takes a
7624c2aa98e2SPeter Wemm		"-v field" flag on the definition that tells what passwd
7625c2aa98e2SPeter Wemm		entry to return -- legal values are name, passwd, uid, gid,
7626c2aa98e2SPeter Wemm		gecos, dir, and shell.  Generally expected to be used with
7627c2aa98e2SPeter Wemm		the -m (matchonly) flag.
7628c2aa98e2SPeter Wemm	Add "bestmx" map class -- returns the best MX value for the host
7629c2aa98e2SPeter Wemm		listed as the value.  If there are several "best" MX records
7630c2aa98e2SPeter Wemm		for this host, one will be chosen at random.
7631c2aa98e2SPeter Wemm	Add "userdb" map class -- looks up entries in the user database.
7632c2aa98e2SPeter Wemm		The "file name" is actually the tag that will be used,
7633c2aa98e2SPeter Wemm		typically "mailname".  If there are multiple entries
7634c2aa98e2SPeter Wemm		matching the name, the one chosen is undefined.
7635c2aa98e2SPeter Wemm	Add multiple queue timeouts (both return and warning).  These are
7636c2aa98e2SPeter Wemm		set by the Precedence: or Priority: header fields to one of
7637c2aa98e2SPeter Wemm		three values.  If a Priority: is set and has value "normal",
7638c2aa98e2SPeter Wemm		"urgent", or "non-urgent" the corresponding timeouts are
7639c2aa98e2SPeter Wemm		used.  If no priority is set, the Precedence: is consulted;
7640c2aa98e2SPeter Wemm		if negative, non-urgent timeouts are used; if greater than
7641c2aa98e2SPeter Wemm		zero, urgent timeouts are used.  Otherwise, normal timeouts
7642c2aa98e2SPeter Wemm		are used.  The timeouts are set by setting the six timeouts
7643c2aa98e2SPeter Wemm		queue{warn,return}.{urgent,normal,non-urgent}.
7644c2aa98e2SPeter Wemm	Fix problem when a mail address is resolved to a $#error mailer
7645c2aa98e2SPeter Wemm		with a temporary failure indication; it works in SMTP,
7646c2aa98e2SPeter Wemm		but when delivering locally the mail is silently discarded.
7647c2aa98e2SPeter Wemm		This patch, from Kyle Jones of UUNET, bounces it instead
7648c2aa98e2SPeter Wemm		of queueing it (queueing is very hard).
7649c2aa98e2SPeter Wemm	When using /etc/hosts or NIS-style lookups, don't assume that
7650c2aa98e2SPeter Wemm		the first name in the list is the best one -- instead,
7651c2aa98e2SPeter Wemm		search for the first one with a dot.  For example, if
7652c2aa98e2SPeter Wemm		an /etc/hosts entry reads
7653c2aa98e2SPeter Wemm		    128.32.149.68	mammoth mammoth.CS.Berkeley.EDU
7654c2aa98e2SPeter Wemm		this change will use the second name as the canonical
7655c2aa98e2SPeter Wemm		machine name instead of the initial, unqualified name.
7656c2aa98e2SPeter Wemm	Change dequote map to replace spaces in quoted text with a value
7657c2aa98e2SPeter Wemm		indicated by the -s flag on the dequote map definition.
7658c2aa98e2SPeter Wemm		For example, ``Mdequote dequote -s_'' will change
7659c2aa98e2SPeter Wemm		"Foo Bar" into an unquoted Foo_Bar instead of leaving it
7660c2aa98e2SPeter Wemm		quoted (because of the space character).  Suggested by Dan
7661c2aa98e2SPeter Wemm		Oscarsson for use in X.400 addresses.
7662c2aa98e2SPeter Wemm	Implement long macro names as ${name}; long class names can
7663c2aa98e2SPeter Wemm		be similarly referenced as $={name} and $~{name}.
7664c2aa98e2SPeter Wemm		Definitions are (e.g.) ``D{name}value''.  Names that have
7665c2aa98e2SPeter Wemm		a leading lower case letter or punctuation characters are
7666c2aa98e2SPeter Wemm		reserved for internal use by sendmail; i.e., config files
7667c2aa98e2SPeter Wemm		should use names that begin with a capital letter.  Based
7668c2aa98e2SPeter Wemm		on code contributed by Dan Oscarsson.
7669c2aa98e2SPeter Wemm	Fix core dump if getgrgid returns a null group list (as opposed
7670c2aa98e2SPeter Wemm		to an empty group list, that is, a pointer to a list
7671c2aa98e2SPeter Wemm		with no members).  Fix from Andrew Chang of Sun Microsystems.
7672c2aa98e2SPeter Wemm	Fix possible core dump if malloc fails -- if the malloc in xalloc
7673c2aa98e2SPeter Wemm		failed, it called syserr which called newstr which called
7674c2aa98e2SPeter Wemm		xalloc....  The newstr is now avoided for "panic" messages.
7675c2aa98e2SPeter Wemm		Reported by Stuart Kemp of James Cook University.
7676c2aa98e2SPeter Wemm	Improve connection cache timeouts; previously, they were not even
7677c2aa98e2SPeter Wemm		checked if you were delivering to anything other than an
7678c2aa98e2SPeter Wemm		IPC-connected host, so a series of (say) local mail
7679c2aa98e2SPeter Wemm		deliveries could cause cached connections to be open
7680c2aa98e2SPeter Wemm		much longer than the specified timeout.
7681c2aa98e2SPeter Wemm	If an incoming message exceeds the maximum message size, stop
7682c2aa98e2SPeter Wemm		writing the incoming bytes to the queue data file, since
7683c2aa98e2SPeter Wemm		this can fill your mqueue partition -- this is a possible
7684c2aa98e2SPeter Wemm		denial-of-service attack.
7685c2aa98e2SPeter Wemm	Don't reject all numeric local user names unless HESIOD is
7686c2aa98e2SPeter Wemm		defined.  It turns out that Posix allows all-numeric
7687c2aa98e2SPeter Wemm		user names.  Fix from Tony Sanders of BSDI.
7688c2aa98e2SPeter Wemm	Add service switch support.  If the local OS has a service
7689c2aa98e2SPeter Wemm		switch (e.g., /etc/nsswitch.conf on Solaris or /etc/svc.conf
7690c2aa98e2SPeter Wemm		on DEC systems) that will be used; otherwise, it falls back
7691c2aa98e2SPeter Wemm		to using a local mechanism based on the ServiceSwitchFile
7692c2aa98e2SPeter Wemm		option (default: /etc/service.switch).  For example, if the
7693c2aa98e2SPeter Wemm		service switch lists "files" and "nis" for the aliases
7694c2aa98e2SPeter Wemm		service, that will be the default lookup order.  the "files"
7695c2aa98e2SPeter Wemm		("local" on DEC) service type expands to any alias files
7696c2aa98e2SPeter Wemm		you listed in the configuration file, even if they aren't
7697c2aa98e2SPeter Wemm		actually file lookups.
7698c2aa98e2SPeter Wemm	Option I (NameServerOptions) no longer sets the "UseNameServer"
7699c2aa98e2SPeter Wemm		variable which tells whether or not DNS should be considered
7700c2aa98e2SPeter Wemm		canonical.  This is now determined based on whether or not
7701c2aa98e2SPeter Wemm		"dns" is in the service list for "hosts".
7702c2aa98e2SPeter Wemm	Add preliminary support for the ESMTP "DSN" extension (Delivery
7703c2aa98e2SPeter Wemm		Status Notifications).  DSN notifications override
7704c2aa98e2SPeter Wemm		Return-Receipt-To: headers, which are bogus anyhow --
7705c2aa98e2SPeter Wemm		support for them has been removed.
7706c2aa98e2SPeter Wemm	Add T=mts-name-type/address-type/diagnostic-type keyletter to mailer
7707c2aa98e2SPeter Wemm		definitions to define the types used in DSN returns for
7708c2aa98e2SPeter Wemm		MTA names, addresses, and diagnostics respectively.
7709c2aa98e2SPeter Wemm	Extend heuristic to force running in ESMTP mode to look for the
7710c2aa98e2SPeter Wemm		five-character string "ESMTP" anywhere in the 220 greeting
7711c2aa98e2SPeter Wemm		message (not just the second line).  This is to provide
7712c2aa98e2SPeter Wemm		better compatibility with other ESMTP servers.
7713c2aa98e2SPeter Wemm	Print sequence number of job when running the queue so you can
7714c2aa98e2SPeter Wemm		easily see how much progress you have made.  Suggested
7715c2aa98e2SPeter Wemm		by Peter Wemm of DIALix.
7716c2aa98e2SPeter Wemm	Map newlines to spaces in logged message-ids; some versions of
7717c2aa98e2SPeter Wemm		syslog truncate the rest of the line after newlines.
7718c2aa98e2SPeter Wemm		Suggested by Fletcher Mattox of U. Texas.
7719c2aa98e2SPeter Wemm	Move up forking for job runs so that if a message is split into
7720c2aa98e2SPeter Wemm		multiple envelopes you don't get "fork storms" -- this
7721c2aa98e2SPeter Wemm		also improves the connection cache utilization.
7722c2aa98e2SPeter Wemm	Accept "<<>>", "<<<>>>", and so forth as equivalent to "<>" for
7723c2aa98e2SPeter Wemm		the purposes of refusing to send error returns.  Suggested
7724c2aa98e2SPeter Wemm		by Motonori Nakamura of Ritsumeikan University.
7725c2aa98e2SPeter Wemm	Relax rules on when a file can be written when referenced from
7726c2aa98e2SPeter Wemm		the aliases file: use the default uid/gid instead of the
7727c2aa98e2SPeter Wemm		real uid/gid.  This allows you to create a file owned by
7728c2aa98e2SPeter Wemm		and writable only by the default uid/gid that will work
772940266059SGregory Neil Shapiro		all the time (without having the set-user-ID bit set).  Change
7730c2aa98e2SPeter Wemm		suggested by Shau-Ping Lo and Andrew Cheng of Sun
7731c2aa98e2SPeter Wemm		Microsystems.
7732c2aa98e2SPeter Wemm	Add "DialDelay" option (no short name) to provide an "extra"
7733c2aa98e2SPeter Wemm		delay for dial on demand systems.  If this is non-zero
7734c2aa98e2SPeter Wemm		and a connect fails, sendmail will wait this long and
7735c2aa98e2SPeter Wemm		then try again.  If it takes longer than the kernel
7736c2aa98e2SPeter Wemm		timeout interval to establish the connection, this
7737c2aa98e2SPeter Wemm		option can give the network software time to establish
7738c2aa98e2SPeter Wemm		the link.  The default units are seconds.
7739c2aa98e2SPeter Wemm	Move logging of sender information to be as early as possible;
7740c2aa98e2SPeter Wemm		previously, it could be delayed a while for SMTP mail
7741c2aa98e2SPeter Wemm		sent to aliases.  Suggested by Brad Knowles of the
7742c2aa98e2SPeter Wemm		Defense Information Systems Agency.
7743c2aa98e2SPeter Wemm	Call res_init() before setting RES_DEBUG; this is required by
7744c2aa98e2SPeter Wemm		BIND 4.9.3, or so I'm told.  From Douglas Anderson of
7745c2aa98e2SPeter Wemm		the National Computer Security Center.
7746c2aa98e2SPeter Wemm	Add xdelay= field in logs -- this is a transaction delay, telling
7747c2aa98e2SPeter Wemm		you how long it took to deliver to this address on the
7748c2aa98e2SPeter Wemm		last try.  It is intended to be used for sorting mailing
7749c2aa98e2SPeter Wemm		lists to favor "quick" addresses.  Provided for use by
7750c2aa98e2SPeter Wemm		the mailprio scripts (see below).
7751c2aa98e2SPeter Wemm	If a map cannot be opened, and that map is non-optional, and
7752c2aa98e2SPeter Wemm		an address requires that map for resolution, queue the
7753c2aa98e2SPeter Wemm		map instead of bouncing it.  This involves creating a
7754c2aa98e2SPeter Wemm		pseudo-class of maps called "bogus-map" -- if a required
7755c2aa98e2SPeter Wemm		map cannot be opened, the class is changed to bogus-map;
7756c2aa98e2SPeter Wemm		all queries against bogus-map return "tempfail".  The
7757c2aa98e2SPeter Wemm		bogus-map class is not directly accessible.  A sample
7758c2aa98e2SPeter Wemm		implementation was donated by Jem Taylor of Glasgow
7759c2aa98e2SPeter Wemm		University Computing Service.
7760c2aa98e2SPeter Wemm	Fix a possible core dump when mailing to a program that talks
7761c2aa98e2SPeter Wemm		SMTP on its standard input.  Fix from Keith Moore of
7762c2aa98e2SPeter Wemm		the University of Kentucky.
7763c2aa98e2SPeter Wemm	Make it possible to resolve filenames to $#local $: @ /filename;
7764c2aa98e2SPeter Wemm		previously, the "@" would cause it to not be recognized
7765c2aa98e2SPeter Wemm		as a file.  Problem noted by Brian Hill of U.C. Davis.
7766c2aa98e2SPeter Wemm	Accept a -1 signal to re-exec the daemon.  This only works if
7767c2aa98e2SPeter Wemm		argv[0] is a full path to sendmail.
7768c2aa98e2SPeter Wemm	Fix bug in "addr=..." field in O option on little-endian machines
7769c2aa98e2SPeter Wemm		-- the network number wasn't being converted to network
7770c2aa98e2SPeter Wemm		byte order.  Patch from Kurt Lidl of Pix Technologies
7771c2aa98e2SPeter Wemm		Corporation.
7772c2aa98e2SPeter Wemm	Pre-initialize the resolver early on; this is to avoid a bug with
7773c2aa98e2SPeter Wemm		BIND 4.9.3 that can cause the _res.retry field to get
7774c2aa98e2SPeter Wemm		reset to zero, causing all name server lookups to time
7775c2aa98e2SPeter Wemm		out.  Fix from Matt Day of Artisoft.
7776c2aa98e2SPeter Wemm	Restore T line (trusted users) in config file -- but instead of
7777c2aa98e2SPeter Wemm		locking out the -f flag, they just tell whether or not
7778c2aa98e2SPeter Wemm		an X-Authentication-Warning: will be added.  This really
7779c2aa98e2SPeter Wemm		just creates new entries in class 't', so "Ft/file/name"
7780c2aa98e2SPeter Wemm		can be used to read trusted user names from a file.
7781c2aa98e2SPeter Wemm		Trusted users are also allowed to execute programs even
7782c2aa98e2SPeter Wemm		if they have a shell that isn't in /etc/shells.
7783c2aa98e2SPeter Wemm	Improve NEWDB alias file rebuilding so it will create them
7784c2aa98e2SPeter Wemm		properly if they do not already exist.  This had been
7785c2aa98e2SPeter Wemm		a MAYBENEXTRELEASE feature in 8.6.9.
7786c2aa98e2SPeter Wemm	Check for @:@ entry in NIS maps before starting up to avoid
7787c2aa98e2SPeter Wemm		(but not prevent, sigh) race conditions.  This ought to
7788c2aa98e2SPeter Wemm		be handled properly in ypserv, but isn't.  Suggested by
7789c2aa98e2SPeter Wemm		Michael Beirne of Motorola.
7790c2aa98e2SPeter Wemm	Refuse connections if there isn't enough space on the filesystem
7791c2aa98e2SPeter Wemm		holding the queue.  Contributed by Robert Dana of Wolf
7792c2aa98e2SPeter Wemm		Communications.
7793c2aa98e2SPeter Wemm	Skip checking for directory permissions in the path to a file
7794c2aa98e2SPeter Wemm		when checking for file permissions iff setreuid()
7795c2aa98e2SPeter Wemm		succeeded -- it is unnecessary in that case.  This avoids
7796c2aa98e2SPeter Wemm		significant performance problems when looking for .forward
7797c2aa98e2SPeter Wemm		files.  Based on a suggestion by Win Bent of USC.
7798c2aa98e2SPeter Wemm	Allow symbolic ruleset names.  Syntax can be "Sname" to get an
7799c2aa98e2SPeter Wemm		arbitrary ruleset number assigned or "Sname = integer"
7800c2aa98e2SPeter Wemm		to assign a specific ruleset number.  Reference is
7801c2aa98e2SPeter Wemm		$>name_or_number.  Names can be composed of alphas, digits,
7802c2aa98e2SPeter Wemm		underscore, or hyphen (first character must be non-numeric).
7803c2aa98e2SPeter Wemm	Allow -o flag on AliasFile lines to make the alias file optional.
7804c2aa98e2SPeter Wemm		From Bryan Costales of ICSI.
7805c2aa98e2SPeter Wemm	Add NoRecipientAction option to handle the case where there is
7806c2aa98e2SPeter Wemm		no legal recipient header in the message.  It can take
7807c2aa98e2SPeter Wemm		on values:
7808c2aa98e2SPeter Wemm		  None			Leave the message as is.  The
7809c2aa98e2SPeter Wemm					message will be passed on even
7810c2aa98e2SPeter Wemm					though it is in technically
7811c2aa98e2SPeter Wemm					illegal syntax.
7812c2aa98e2SPeter Wemm		  Add-To		Add a To: header with any
7813c2aa98e2SPeter Wemm					recipients that it can find from
7814c2aa98e2SPeter Wemm					the envelope.  This risks exposing
7815c2aa98e2SPeter Wemm					Bcc: recipients.
7816c2aa98e2SPeter Wemm		  Add-Apparently-To	Add an Apparently-To: header.  This
7817c2aa98e2SPeter Wemm					has almost no redeeming social value,
7818c2aa98e2SPeter Wemm					and is provided only for back
7819c2aa98e2SPeter Wemm					compatibility.
7820c2aa98e2SPeter Wemm		  Add-To-Undisclosed	Add a header reading
7821c2aa98e2SPeter Wemm					To: undisclosed-recipients:;
7822c2aa98e2SPeter Wemm					which will have the effect of
7823c2aa98e2SPeter Wemm					making the message legal without
7824c2aa98e2SPeter Wemm					exposing Bcc: recipients.
7825c2aa98e2SPeter Wemm		  Add-Bcc		To add an empty Bcc: header.
7826c2aa98e2SPeter Wemm					There is a chance that mailers down
7827c2aa98e2SPeter Wemm					the line will delete this header,
7828c2aa98e2SPeter Wemm					which could cause exposure of Bcc:
7829c2aa98e2SPeter Wemm					recipients.
7830c2aa98e2SPeter Wemm		The default is NoRecipientAction=None.
7831c2aa98e2SPeter Wemm	Truncate (rather than delete) Bcc: lines in the header.  This
7832c2aa98e2SPeter Wemm		should prevent later sendmails (at least, those that don't
7833c2aa98e2SPeter Wemm		themselves delete Bcc:) from considering this message to
7834c2aa98e2SPeter Wemm		be non-conforming -- although it does imply that non-blind
7835c2aa98e2SPeter Wemm		recipients can see that a Bcc: was sent, albeit not to whom.
7836c2aa98e2SPeter Wemm	Add SafeFileEnvironment option.  If declared, files named as delivery
7837c2aa98e2SPeter Wemm		targets must be regular files in addition to the regular
7838c2aa98e2SPeter Wemm		checks.  Also, if the option is non-null then it is used as
7839c2aa98e2SPeter Wemm		the name of a directory that is used as a chroot(2)
7840c2aa98e2SPeter Wemm		environment for the delivery; the file names listed in an
7841c2aa98e2SPeter Wemm		alias or forward should include the name of this root.
7842c2aa98e2SPeter Wemm		For example, if you run with
7843c2aa98e2SPeter Wemm			O SafeFileEnvironment=/arch
7844c2aa98e2SPeter Wemm		then aliases should reference "/arch/rest/of/path".  If a
7845c2aa98e2SPeter Wemm		value is given, sendmail also won't try to save to
7846c2aa98e2SPeter Wemm		/usr/tmp/dead.letter (instead it just leaves the job in the
7847c2aa98e2SPeter Wemm		queue as Qfxxxxxx).  Inspired by *Hobbit*'s sendmail patch kit.
7848c2aa98e2SPeter Wemm	Support -A flag for alias files; this will comma concatenate like
7849c2aa98e2SPeter Wemm		entries.  For example, given the aliases:
7850c2aa98e2SPeter Wemm			list: member1
7851c2aa98e2SPeter Wemm			list: member2
7852c2aa98e2SPeter Wemm		and an alias file declared as:
7853c2aa98e2SPeter Wemm			OAhash:-A /etc/aliases
7854c2aa98e2SPeter Wemm		the final alias inserted will be "list: member1,member2";
7855c2aa98e2SPeter Wemm		without -A you will get an error on the second and subsequent
7856c2aa98e2SPeter Wemm		alias for "list".  Contributed by Bryan Costales of ICSI.
7857c2aa98e2SPeter Wemm	Line-buffer transcript file.  Suggested by Liudvikas Bukys.
7858c2aa98e2SPeter Wemm	Fix a problem that could cause very long addresses to core dump in
7859c2aa98e2SPeter Wemm		some special circumstances.  Problem pointed out by Allan
7860c2aa98e2SPeter Wemm		Johannesen.
7861c2aa98e2SPeter Wemm	(Internal change.)  Change interface to expand() (macro expansion)
7862c2aa98e2SPeter Wemm		to be simpler and more consistent.
7863c2aa98e2SPeter Wemm	Delete check for funny qf file names.  This didn't really give
7864c2aa98e2SPeter Wemm		any extra security and caused some people some problems.
7865c2aa98e2SPeter Wemm		(If you -really- want this, define PICKY_QF_NAME_CHECK
7866c2aa98e2SPeter Wemm		at compile time.)  Suggested by Kyle Jones of UUNET.
7867c2aa98e2SPeter Wemm	(Internal change.)  Change EF_NORETURN to EF_NO_BODY_RETN and
7868c2aa98e2SPeter Wemm		merge with DSN code; this is simpler and more consistent.
7869c2aa98e2SPeter Wemm		This may affect some people who have written their own
7870c2aa98e2SPeter Wemm		checkcompat() routine.
7871c2aa98e2SPeter Wemm	(Internal change.)  Eliminate `D' line in qf file.  The df file
7872c2aa98e2SPeter Wemm		is now assumed to be the same name as the qf file (with
7873c2aa98e2SPeter Wemm		the `q' changed to a `d', of course).
7874c2aa98e2SPeter Wemm	Avoid forking for delivery if all recipient mailers are marked as
7875c2aa98e2SPeter Wemm		"expensive" -- this can be a major cost on some systems.
7876c2aa98e2SPeter Wemm		Essentially, this forces sendmail into "queue only" mode
7877c2aa98e2SPeter Wemm		if all it is going to do is queue anyway.
7878c2aa98e2SPeter Wemm	Avoid sending a null message in some rather unusual circumstances
7879c2aa98e2SPeter Wemm		(specifically, the RCPT command returns a temporary
7880c2aa98e2SPeter Wemm		failure but the connection is lost before the DATA
7881c2aa98e2SPeter Wemm		command).  Fix from Scott Hammond of Secure Computing
7882c2aa98e2SPeter Wemm		Corporation.
7883c2aa98e2SPeter Wemm	Change makesendmail to use a somewhat more rational naming scheme:
7884c2aa98e2SPeter Wemm		Makefiles and obj directories are named $os.$rel.$arch,
7885c2aa98e2SPeter Wemm		where $os is the operating system (e.g., SunOS), $rel is
7886c2aa98e2SPeter Wemm		the release number (e.g., 5.3), and $arch is the machine
7887c2aa98e2SPeter Wemm		architecture (e.g., sun4).  Any of these can be omitted,
7888c2aa98e2SPeter Wemm		and anything after the first dot in a release number can
7889c2aa98e2SPeter Wemm		be replaced with "x" (e.g., SunOS.4.x.sun4).  The previous
7890c2aa98e2SPeter Wemm		version used $os.$arch.$rel and was rather less general.
7891c2aa98e2SPeter Wemm	Change makesendmail to do a "make depend" in the target directory
7892c2aa98e2SPeter Wemm		when it is being created.  This involves adding an empty
7893c2aa98e2SPeter Wemm		"depend:" entry in most Makefiles.
7894c2aa98e2SPeter Wemm	Ignore IDENT return value if the OSTYPE field returns "OTHER",
7895c2aa98e2SPeter Wemm		as indicated by RFC 1413.  Pointed out by Kari Hurtta
7896c2aa98e2SPeter Wemm		of the Finnish Meteorological Institute.
7897c2aa98e2SPeter Wemm	Fix problem that could cause multiple responses to DATA command
7898c2aa98e2SPeter Wemm		on header syntax errors (e.g., lines beginning with colons).
7899c2aa98e2SPeter Wemm		Problem noted by Jens Thomassen of the University of Oslo.
7900c2aa98e2SPeter Wemm	Don't let null bytes in headers cause truncation of the rest of
7901c2aa98e2SPeter Wemm		the header.
7902c2aa98e2SPeter Wemm	Log Authentication-Warning:s.  Suggested by Motonori Nakamura.
7903c2aa98e2SPeter Wemm	Increase timeouts on message data puts to allow time for receivers
7904c2aa98e2SPeter Wemm		to canonify addresses in headers on the fly.  This is still
7905c2aa98e2SPeter Wemm		a rather ugly heuristic.  From Motonori Nakamura.
7906c2aa98e2SPeter Wemm	Add "HasWildcardMX" suboption to ResolverOptions; if set, MX
7907c2aa98e2SPeter Wemm		records are not used when canonifying names, and when MX
7908c2aa98e2SPeter Wemm		lookups are done for addressing they must be fully
7909c2aa98e2SPeter Wemm		qualified.  This is useful if you have a wildcard MX record,
7910c2aa98e2SPeter Wemm		although it may cause other problems.  In general, don't use
7911c2aa98e2SPeter Wemm		wildcard MX records.  Patch from Motonori Nakamura.
7912c2aa98e2SPeter Wemm	Eliminate default two-line SMTP greeting message.  Instead of
7913c2aa98e2SPeter Wemm		adding an extra "ESMTP spoken here" line, the word "ESMTP"
7914c2aa98e2SPeter Wemm		is added between the first and second word of the first
7915c2aa98e2SPeter Wemm		line of the greeting message (i.e., immediately after the
7916c2aa98e2SPeter Wemm		host name).  This eliminates the need for the BROKEN_SMTP_PEERS
7917c2aa98e2SPeter Wemm		compile flag.  Old sendmails won't see the ESMTP, but that's
7918c2aa98e2SPeter Wemm		acceptable because SIZE was the only useful extension that
7919c2aa98e2SPeter Wemm		old sendmails understand.
7920c2aa98e2SPeter Wemm	Avoid gethostbyname calls on UNIX domain sockets during SIGUSR1
7921c2aa98e2SPeter Wemm		invoked state dumps.  From Masaharu Onishi.
7922c2aa98e2SPeter Wemm	Allow on-line comments in .forward and :include: files; they are
7923c2aa98e2SPeter Wemm		introduced by the string "<LWSP>#@#<LWSP>", where <LWSP>
7924c2aa98e2SPeter Wemm		is a space or a tab.  This is intended for native
7925c2aa98e2SPeter Wemm		representation of non-ASCII sets such as Japanese, where
7926c2aa98e2SPeter Wemm		existing encodings would be unreadable or would lose
7927c2aa98e2SPeter Wemm		data -- for example,
7928c2aa98e2SPeter Wemm		 <motonori@cs.ritsumei.ac.jp> NAKAMURA Motonori
7929c2aa98e2SPeter Wemm					(romanized/less information)
7930c2aa98e2SPeter Wemm		 <motonori@cs.ritsumei.ac.jp> =?ISO-2022-JP?B?GyRCQ2ZCPBsoQg==?=
7931c2aa98e2SPeter Wemm					      =?ISO-2022-JP?B?GyRCQUdFNRsoQg==?=
7932c2aa98e2SPeter Wemm					(with MIME encoding, not human readable)
7933c2aa98e2SPeter Wemm		 <motonori@cs.ritsumei.ac.jp> #@# ^[$BCfB<^[(B ^[$BAGE5^[(B
7934c2aa98e2SPeter Wemm					(native encoding with ISO-2022-JP)
7935c2aa98e2SPeter Wemm		The last form is human readable in the Japanese environment.
7936c2aa98e2SPeter Wemm		Based on a fix from (surprise!) Motonori Nakamura.
7937c2aa98e2SPeter Wemm	Don't make SMTP error returns on MAIL FROM: line be "sticky" for all
7938c2aa98e2SPeter Wemm		messages to that host; these are most frequently associated
7939c2aa98e2SPeter Wemm		with addresses rather than the host, with the exception of
7940c2aa98e2SPeter Wemm		421 (service shutting down).  The effect was to cause queues
7941c2aa98e2SPeter Wemm		to sometimes take an excessive time to flush.  Reported by
7942c2aa98e2SPeter Wemm		Robert Sargent of Southern Geographics Technologies and
7943c2aa98e2SPeter Wemm		Eric Prestemon of American University.
7944c2aa98e2SPeter Wemm	Add Nice=N mailer option to set the niceness at which a mailer will
7945c2aa98e2SPeter Wemm		run.  This is actually a relative niceness (that is, an
7946c2aa98e2SPeter Wemm		increment on the background value).
7947c2aa98e2SPeter Wemm	Log queue runs that are skipped due to high loads.  They are logged
7948c2aa98e2SPeter Wemm		at LOG_INFO priority iff the log level is > 8.  Contributed
7949c2aa98e2SPeter Wemm		by Bruce Nagel of Data General.
7950c2aa98e2SPeter Wemm	Allow the error mailer to accept a DSN-style error status code
7951c2aa98e2SPeter Wemm		instead of an sysexits status code in the host part.
7952c2aa98e2SPeter Wemm		Anything with a dot will be interpreted as a DSN-style code.
7953c2aa98e2SPeter Wemm	Add new mailer flag: F=3 will tell translations to Quoted-Printable
7954c2aa98e2SPeter Wemm		to encode characters that might be munged by an EBCDIC system
7955c2aa98e2SPeter Wemm		in addition to the set required by RFC 1521.  The additional
7956c2aa98e2SPeter Wemm		characters are !, ", #, $, @, [, \, ], ^, `, {, |, }, and ~.
7957c2aa98e2SPeter Wemm		(Think of "IBM 360" as the mnemonic for this flag.)
7958c2aa98e2SPeter Wemm	Change check for mailing to files to look for a pathname of [FILE]
7959c2aa98e2SPeter Wemm		rather than looking for the mailer named *file*.  The mapping
7960c2aa98e2SPeter Wemm		of leading slashes still goes to the *file* mailer.  This
7961c2aa98e2SPeter Wemm		allows you to implement the *file* mailer as a separate
7962c2aa98e2SPeter Wemm		program, for example, to insert a Content-Length: header
7963c2aa98e2SPeter Wemm		or do special security policy.  However, note that the usual
7964c2aa98e2SPeter Wemm		initial checking for the file permissions is still done, and
7965c2aa98e2SPeter Wemm		the program in question needs to be very careful about how
7966c2aa98e2SPeter Wemm		it does the file write to avoid security problems.
7967c2aa98e2SPeter Wemm	Be able to read ~root/.forward even if the path isn't accessible to
7968c2aa98e2SPeter Wemm		regular users.  This is disrecommended because sendmail
7969c2aa98e2SPeter Wemm		sometimes does not run as root (e.g., when an unsafe option
7970c2aa98e2SPeter Wemm		is specified on the command line), but should otherwise be
7971c2aa98e2SPeter Wemm		safe because .forward files must be owned by the user for
7972c2aa98e2SPeter Wemm		whom mail is being forwarded, and cannot be a symbolic link.
7973c2aa98e2SPeter Wemm		Suggested by Forrest Aldrich of Wang Laboratories.
7974c2aa98e2SPeter Wemm	Add new "HostsFile" option that is the pathname to the /etc/hosts
7975c2aa98e2SPeter Wemm		file.  This is used for canonifying hostnames when the
7976c2aa98e2SPeter Wemm		service type is "files".
7977c2aa98e2SPeter Wemm	Implement programs on F (read class from file) line.  The syntax is
7978c2aa98e2SPeter Wemm		Fc|/path/to/program to read the output from the program
7979c2aa98e2SPeter Wemm		into class "c".
7980c2aa98e2SPeter Wemm	Probe the network interfaces to find alternate names for this
7981c2aa98e2SPeter Wemm		host.  Requires the SIOCGIFCONF ioctl call.  Code
7982c2aa98e2SPeter Wemm		contributed by SunSoft.
7983c2aa98e2SPeter Wemm	Add "E" configuration line to set or propagate environment
7984c2aa98e2SPeter Wemm		variables into children.  "E<envar>" will propagate
7985c2aa98e2SPeter Wemm		the named variable from the environment when sendmail
7986c2aa98e2SPeter Wemm		was invoked into any children it calls; "E<envar>=<value>"
7987c2aa98e2SPeter Wemm		sets the named variable to the indicated value.  Any
7988c2aa98e2SPeter Wemm		variables not explicitly named will not be in the child
7989c2aa98e2SPeter Wemm		environment.  However, sendmail still forces an
7990c2aa98e2SPeter Wemm		"AGENT=sendmail" environment variable, in part to enforce
7991c2aa98e2SPeter Wemm		at least one environment variable, since many programs and
7992c2aa98e2SPeter Wemm		libraries die horribly if this is not guaranteed.
7993c2aa98e2SPeter Wemm	Change heuristic for rebuilding both NEWDB and NDBM versions of
7994c2aa98e2SPeter Wemm		alias databases -- new algorithm looks for the substring
7995c2aa98e2SPeter Wemm		"/yp/" in the file name.  This is more portable and involves
7996c2aa98e2SPeter Wemm		less overhead.  Suggested by Motonori Nakamura.
7997c2aa98e2SPeter Wemm	Dynamically allocate the queue work list so that you don't lose
7998c2aa98e2SPeter Wemm		jobs in large queue runs.  The old QUEUESIZE compile parameter
7999c2aa98e2SPeter Wemm		is replaced by QUEUESEGSIZE (the unit of allocation, which
8000c2aa98e2SPeter Wemm		should not need to be changed) and the MaxQueueRunSize option,
8001c2aa98e2SPeter Wemm		which is the absolute maximum number of jobs that will ever
8002c2aa98e2SPeter Wemm		be handled in a single queue run.  Based on code contributed
8003c2aa98e2SPeter Wemm		by Brian Coan of the Institute for Global Communications.
8004c2aa98e2SPeter Wemm	Log message when a message is dropped because it exceeds the maximum
8005c2aa98e2SPeter Wemm		message size.  Suggested by Leo Bicknell of Virginia Tech.
8006c2aa98e2SPeter Wemm	Allow trusted users (those on a T line or in $=t) to use -bs without
8007c2aa98e2SPeter Wemm		an X-Authentication-Warning: added.  Suggested by Mark Thomas
8008c2aa98e2SPeter Wemm		of Mark G. Thomas Consulting.
8009c2aa98e2SPeter Wemm	Announce state of compile flags on -d0.1 (-d0.10 throws in the
8010c2aa98e2SPeter Wemm		OS-dependent defines).  The old semantic of -d0.1 to not
8011c2aa98e2SPeter Wemm		run the daemon in background has been moved to -d99.100,
8012c2aa98e2SPeter Wemm		and the old 52.5 flag (to avoid disconnect() from closing
8013c2aa98e2SPeter Wemm		all output files) has been moved to 52.100.  This makes
8014c2aa98e2SPeter Wemm		things more consistent (flags below .100 don't change
8015c2aa98e2SPeter Wemm		semantics) and separates out the backgrounding so that
8016c2aa98e2SPeter Wemm		it doesn't happen automatically on other unrelated debugging
8017c2aa98e2SPeter Wemm		flags.
8018c2aa98e2SPeter Wemm	If -t is used but no addresses are found in the header, give an
8019c2aa98e2SPeter Wemm		error message rather than just doing nothing.  Fix from
8020c2aa98e2SPeter Wemm		Motonori Nakamura.
8021c2aa98e2SPeter Wemm	On systems (like SunOS) where the effective gid is not necessarily
8022c2aa98e2SPeter Wemm		included in the group list returned by getgroups(), the
8023c2aa98e2SPeter Wemm		`restrictmailq' option could sometimes cause an authorized
8024c2aa98e2SPeter Wemm		user to not be able to use `mailq'.  Fix from Charles Hannum
8025c2aa98e2SPeter Wemm		of MIT.
8026c2aa98e2SPeter Wemm	Allow symbolic service names for [IPC] mailers.  Suggested by
8027c2aa98e2SPeter Wemm		Gerry Magennis of Logica International.
8028c2aa98e2SPeter Wemm	Add DontExpandCnames option to prevent $[ ... $] from expanding CNAMEs
8029c2aa98e2SPeter Wemm		when running DNS.  For example, if the name FTP.Foo.ORG is
8030c2aa98e2SPeter Wemm		a CNAME for Cruft.Foo.ORG, then when sitting on a machine in
8031c2aa98e2SPeter Wemm		the Foo.ORG domain a lookup of "FTP" returns "Cruft.Foo.ORG"
8032c2aa98e2SPeter Wemm		if this option is not set, or "FTP.Foo.ORG" if it is set.
8033c2aa98e2SPeter Wemm		This is technically illegal under RFC 822 and 1123, but the
8034c2aa98e2SPeter Wemm		IETF is moving toward legalizing it.  Note that turning on
8035c2aa98e2SPeter Wemm		this option is not sufficient to guarantee that a downstream
8036c2aa98e2SPeter Wemm		neighbor won't rewrite the address for you.
8037c2aa98e2SPeter Wemm	Add "-m" flag to makesendmail script -- this tells you what object
8038c2aa98e2SPeter Wemm		directory and Makefile it will use, but doesn't actually do
8039c2aa98e2SPeter Wemm		the make.
8040c2aa98e2SPeter Wemm	Do some additional checking on the contents of the qf file to try
8041c2aa98e2SPeter Wemm		to detect attacks against the qf file.  In particular,
8042c2aa98e2SPeter Wemm		abort on any line beginning "From ", and add an "end of
8043c2aa98e2SPeter Wemm		file" line -- any data after that line is prohibited.
8044c2aa98e2SPeter Wemm	Always use /etc/sendmail.cf, regardless of the arbitrary vendor
8045c2aa98e2SPeter Wemm		choices.  This can be overridden in the Makefile by using
8046c2aa98e2SPeter Wemm		either -DUSE_VENDOR_CF_PATH to get the vendor location
8047c2aa98e2SPeter Wemm		(to the extent that we know it) or by defining
8048c2aa98e2SPeter Wemm		_PATH_SENDMAILCF (which is a "hard override").  This allows
8049c2aa98e2SPeter Wemm		sendmail 8 to have more consistent installation instructions.
8050c2aa98e2SPeter Wemm	Allow macros on `K' line in config file.  Suggested by Andrew Chang
8051c2aa98e2SPeter Wemm		of Sun Microsystems.
8052c2aa98e2SPeter Wemm	Improved symbol table hash function from Eric Wassenaar.  This one
8053c2aa98e2SPeter Wemm		is at least 50% faster.
8054c2aa98e2SPeter Wemm	Fix problem that didn't notice that timeout on file open was a
8055c2aa98e2SPeter Wemm		transient error.  Fix from Larry Parmelee of Cornell
8056c2aa98e2SPeter Wemm		University.
8057c2aa98e2SPeter Wemm	Allow comments (lines beginning with a `#') in files read for
8058c2aa98e2SPeter Wemm		classes.  Suggested by Motonori Nakamura.
8059c2aa98e2SPeter Wemm	Make SIGINT (usually ^C) in test mode return to the prompt instead
8060c2aa98e2SPeter Wemm		of dropping out entirely.  This makes testing some of the
8061c2aa98e2SPeter Wemm		name server lookups easier to deal with when there are
8062c2aa98e2SPeter Wemm		hung servers.  From Motonori Nakamura.
8063c2aa98e2SPeter Wemm	Add new ${opMode} macro that is set to the current operation mode
8064c2aa98e2SPeter Wemm		(e.g., `s' for -bs, `t' for -bt, etc.).  Suggested by
8065c2aa98e2SPeter Wemm		Claude Marinier <MARINIER@emp.ewd.dreo.dnd.ca>.
8066c2aa98e2SPeter Wemm	Add new delivery mode (Odd) that defers all map lookups to queue runs.
8067c2aa98e2SPeter Wemm		Kind of like queue-only mode (Odq) except it tries to avoid
8068c2aa98e2SPeter Wemm		any external service requests; for dial-on-demand hosts that
8069c2aa98e2SPeter Wemm		want to minimize DNS lookups when mail is being queued.  For
8070c2aa98e2SPeter Wemm		this to work you will also have to make sure that gethostbyname
8071c2aa98e2SPeter Wemm		of your local host name does not do a DNS lookup.
8072c2aa98e2SPeter Wemm	Improved handling of "out of space" conditions from John Myers of
8073c2aa98e2SPeter Wemm		Carnegie Mellon.
8074c2aa98e2SPeter Wemm	Improved security for mailing to files on systems that have fchmod(2)
8075c2aa98e2SPeter Wemm		support.
8076c2aa98e2SPeter Wemm	Improve "cannot send message for N days" message -- now says "could
8077c2aa98e2SPeter Wemm		not send for past N days".  Suggested by Tom Moore of AT&T
8078c2aa98e2SPeter Wemm		Global Information Solutions.
8079c2aa98e2SPeter Wemm	Less misleading Subject: line on messages sent to postmaster only.
8080c2aa98e2SPeter Wemm		From Motonori Nakamura.
8081c2aa98e2SPeter Wemm	Avoid duplicate error messages on bad command line flags.  From
8082c2aa98e2SPeter Wemm		Motonori Nakamura.
8083c2aa98e2SPeter Wemm	Better error message for case where ruleset 0 falls off the end
8084c2aa98e2SPeter Wemm		or otherwise does not resolve to a canonical triple.
8085c2aa98e2SPeter Wemm	Fix a problem that could cause multiple bounce messages if a bad
8086c2aa98e2SPeter Wemm		address was sent along with a good address to an SMTP
8087c2aa98e2SPeter Wemm		site where that SMTP site returned a 4yz code in response
8088c2aa98e2SPeter Wemm		to the final dot of the data.  Problem reported by David
8089c2aa98e2SPeter Wemm		James of British Telecom.
8090c2aa98e2SPeter Wemm	Add "volatile" declarations so that gcc -O2 will work.  Patches
8091c2aa98e2SPeter Wemm		from Alexander Dupuy of System Management ARTS.
8092c2aa98e2SPeter Wemm	Delete duplicates in MX lists -- believe it or not, there are sites
8093c2aa98e2SPeter Wemm		that list the same host twice in an MX list.  This deletion
8094c2aa98e2SPeter Wemm		only works on adjacent preferences, so an MX list that
8095c2aa98e2SPeter Wemm		had A=5, B=10, A=15 would leave both As, but one that had
8096c2aa98e2SPeter Wemm		A=5, A=10, B=15 would reduce to A, B.  This is intentional,
8097c2aa98e2SPeter Wemm		just in case there is something weird I haven't thought of.
8098c2aa98e2SPeter Wemm		Suggested by Barry Shein of Software Tool & Die.
8099c2aa98e2SPeter Wemm	SECURITY: .forward files cannot be symbolic links.  If they are,
8100c2aa98e2SPeter Wemm		a bad guy can read your private files.
8101c2aa98e2SPeter Wemm	PORTABILITY FIXES:
8102c2aa98e2SPeter Wemm		Solaris 2 from Rob McMahon <cudcv@csv.warwick.ac.uk>.
8103c2aa98e2SPeter Wemm		System V Release 4 from Motonori Nakamura of Ritsumeikan
8104c2aa98e2SPeter Wemm			University.  This expands the disk size
8105c2aa98e2SPeter Wemm			checking to include all (?) SVR4 configurations.
8106c2aa98e2SPeter Wemm		System V Release 4 from Kimmo Suominen -- initgroups(3)
8107c2aa98e2SPeter Wemm			and setrlimit(2) are both available.
8108c2aa98e2SPeter Wemm		System V Release 4 from sob@sculley.ffg.com -- some versions
8109c2aa98e2SPeter Wemm			apparently "have EX_OK defined in other headerfiles."
8110c2aa98e2SPeter Wemm		Linux Makefile typo.
8111c2aa98e2SPeter Wemm		Linux getusershell(3) is broken in Slackware 2.0 --
8112c2aa98e2SPeter Wemm			from Andrew Pam of Xanadu Australia.
8113c2aa98e2SPeter Wemm		More Linux tweaking from John Kennedy of California State
8114c2aa98e2SPeter Wemm			University, Chico.
8115c2aa98e2SPeter Wemm		Cray changes from Eric Wassenaar:  ``On Cray, shorts,
8116c2aa98e2SPeter Wemm			ints, and longs are all 64 bits, and all structs
8117c2aa98e2SPeter Wemm			are multiples of 64 bits.  This means that the
8118c2aa98e2SPeter Wemm			sizeof operator returns only multiples of 8.
8119c2aa98e2SPeter Wemm			This requires adaptation of code that really
8120c2aa98e2SPeter Wemm			deals with 32 bit or 16 bit fields, such as IP
8121c2aa98e2SPeter Wemm			addresses or nameserver fields.''
8122c2aa98e2SPeter Wemm		DG/UX 5.4.3 from Mark T. Robinson <mtr@ornl.gov>.  To
81232e43090eSPeter Wemm			get the old behavior, use -DDGUX_5_4_2.
8124c2aa98e2SPeter Wemm		DG/UX hack: add _FORCE_MAIL_LOCAL_=yes environment
81252e43090eSPeter Wemm			variable to fix bogus /bin/mail behavior.
8126c2aa98e2SPeter Wemm		Tandem NonStop-UX from Rick McCarty <mccarty@mpd.tandem.com>.
8127c2aa98e2SPeter Wemm			This also cleans up some System V Release 4 compile
8128c2aa98e2SPeter Wemm			problems.
8129c2aa98e2SPeter Wemm		Solaris 2: sendmail.cw file should be in /etc/mail to
8130c2aa98e2SPeter Wemm			match all the other configuration files.  Fix
8131c2aa98e2SPeter Wemm			from Glenn Barry of Emory University.
8132c2aa98e2SPeter Wemm		Solaris 2.3: compile problem in conf.c.  Fix from Alain
8133c2aa98e2SPeter Wemm			Nissen of the University of Liege, Belgium.
8134c2aa98e2SPeter Wemm		Ultrix: freespace calculation was incorrect.  Fix from
8135c2aa98e2SPeter Wemm			Takashi Kizu of Osaka University.
8136c2aa98e2SPeter Wemm		SVR4: running in background gets a SIGTTOU because the
8137c2aa98e2SPeter Wemm			emulation code doesn't realize that "getpeername"
8138c2aa98e2SPeter Wemm			doesn't require reading the file.  Fix from Peter
8139c2aa98e2SPeter Wemm			Wemm of DIALix.
8140c2aa98e2SPeter Wemm		Solaris 2.3: due to an apparent bug in the socket emulation
8141c2aa98e2SPeter Wemm			library, sockets can get into a "wedged" state where
8142c2aa98e2SPeter Wemm			they just return EPROTO; closing and re-opening the
8143c2aa98e2SPeter Wemm			socket clears the problem.  Fix from Bob Manson
8144c2aa98e2SPeter Wemm			of Ohio State University.
8145c2aa98e2SPeter Wemm		Hitachi 3050R & 3050RX running HI-UX/WE2: portability
8146c2aa98e2SPeter Wemm			fixes from Akihiro Hashimoto ("Hash") of Chiba
8147c2aa98e2SPeter Wemm			University.
8148c2aa98e2SPeter Wemm		AIX changes to allow setproctitle to work from Rainer Sch�pf
8149c2aa98e2SPeter Wemm			of Zentrum f�r Datenverarbeitung der Universit�t
8150c2aa98e2SPeter Wemm			Mainz.
8151c2aa98e2SPeter Wemm		AIX changes for load average from Ed Ravin of NASA/Goddard.
8152c2aa98e2SPeter Wemm		SCO Unix from Chip Rosenthal of Unicom (code was using the
8153c2aa98e2SPeter Wemm			wrong statfs call).
8154c2aa98e2SPeter Wemm		ANSI C fixes from Adam Glass (NetBSD project).
8155c2aa98e2SPeter Wemm		Stardent Titan/ANSI C fixes from Kate Hedstrom of Rutgers
8156c2aa98e2SPeter Wemm			University.
8157c2aa98e2SPeter Wemm		DG-UX fixes from Bruce Nagel of Data General.
8158c2aa98e2SPeter Wemm		IRIX64 updates from Mark Levinson of the University of
8159c2aa98e2SPeter Wemm			Rochester Medical Center.
8160c2aa98e2SPeter Wemm		Altos System V (``the first UNIX/XENIX merge the Altos
8161c2aa98e2SPeter Wemm			did for their Series 1000 & Series 2000 line;
8162c2aa98e2SPeter Wemm			their merged code was licensed back to AT&T and
8163c2aa98e2SPeter Wemm			Microsoft and became System V release 3.2'') from
8164c2aa98e2SPeter Wemm			Tim Rice <timr@crl.com>.
8165c2aa98e2SPeter Wemm		OSF/1 running on Intel Paragon from Jeff A. Earickson
8166c2aa98e2SPeter Wemm			<jeff@ssd.intel.com> of Intel Scalable Systems
8167c2aa98e2SPeter Wemm			Division.
8168c2aa98e2SPeter Wemm		Amdahl UTS System V 2.1.5 (SVr3-based) from Janet Jackson
8169c2aa98e2SPeter Wemm			<janet@dialix.oz.au>.
8170c2aa98e2SPeter Wemm		System V Release 4 (statvfs semantic fix) from Alain
8171c2aa98e2SPeter Wemm			Durand of I.M.A.G.
8172c2aa98e2SPeter Wemm		HP-UX 10.x multiprocessor load average changes from
8173c2aa98e2SPeter Wemm			Scott Hutton and Jeff Sumler of Indiana University.
8174c2aa98e2SPeter Wemm		Cray CSOS from Scott Bolte of Cray Computer Corporation.
8175c2aa98e2SPeter Wemm		Unicos 8.0 from Douglas K. Rand of the University of North
8176c2aa98e2SPeter Wemm			Dakota, Scientific Computing Center.
8177c2aa98e2SPeter Wemm		Solaris 2.4 fixes from Sanjay Dani of Dani Communications.
8178c2aa98e2SPeter Wemm		ConvexOS 11.0 from Christophe Wolfhugel.
8179c2aa98e2SPeter Wemm		IRIX 4.0.5 from David Ashton-Reader of CADcentre.
8180c2aa98e2SPeter Wemm		ISC UNIX from J. J. Bailey.
8181c2aa98e2SPeter Wemm		HP-UX 9.xx on the 8xx series machines from Remy Giraud
8182c2aa98e2SPeter Wemm			of Meteo France.
8183c2aa98e2SPeter Wemm		HP-UX configuration from Tom Lane <tgl@sss.pgh.pa.us>.
8184c2aa98e2SPeter Wemm		IRIX 5.2 and 5.3 from Kari E. Hurtta.
8185c2aa98e2SPeter Wemm		FreeBSD 2.0 from Mike Hickey of Federal Data Corporation.
8186c2aa98e2SPeter Wemm		Sony NEWS-OS 4.2.1R and 6.0.3 from Motonori Nakamura.
8187c2aa98e2SPeter Wemm		Omron LUNA unios-b, mach from Motonori Nakamura.
8188c2aa98e2SPeter Wemm		NEC EWS-UX/V 4.2 from Motonori Nakamura.
8189c2aa98e2SPeter Wemm		NeXT 2.1 from Bryan Costales.
8190c2aa98e2SPeter Wemm		AUX patch thanks to Mike Erwin of Apple Computer.
8191c2aa98e2SPeter Wemm		HP-UX 10.0 from John Beck of Hewlett-Packard.
8192c2aa98e2SPeter Wemm		Ultrix: allow -DBROKEN_RES_SEARCH=0 if you are using a
8193c2aa98e2SPeter Wemm			non-DEC resolver.  Suggested by Allan Johannesen.
8194c2aa98e2SPeter Wemm		UnixWare 2.0 fixes from Petr Lampa of the Technical
8195c2aa98e2SPeter Wemm			University of Brno (Czech Republic).
8196c2aa98e2SPeter Wemm		KSR OS 1.2.2 support from Todd Miller of the University
8197c2aa98e2SPeter Wemm			of Colorado.
8198c2aa98e2SPeter Wemm		UX4800 support from Kazuhisa Shimizu of NEC.
8199c2aa98e2SPeter Wemm	MAKEMAP: allow -d flag to allow insertion of duplicate aliases
8200c2aa98e2SPeter Wemm		in type ``btree'' maps.  The semantics of this are undefined
8201c2aa98e2SPeter Wemm		for regular maps, but it can be useful for the user database.
8202c2aa98e2SPeter Wemm	MAKEMAP: lock database file while rebuilding to avoid sendmail
8203c2aa98e2SPeter Wemm		lookups while the rebuild is going on.  There is a race
8204c2aa98e2SPeter Wemm		condition between the open(... O_TRUNC ...) and the lock
8205c2aa98e2SPeter Wemm		on the file, but it should be quite small.
8206c2aa98e2SPeter Wemm	SMRSH: sendmail restricted shell added to the release.  This can
8207c2aa98e2SPeter Wemm		be used as an alternative to /bin/sh for the "prog" mailer,
8208c2aa98e2SPeter Wemm		giving the local administrator more control over what
8209c2aa98e2SPeter Wemm		programs can be run from sendmail.
8210c2aa98e2SPeter Wemm	MAIL.LOCAL: add this local mailer to the tape.  It is not really
8211c2aa98e2SPeter Wemm		part of the release proper, and isn't fully supported; in
8212c2aa98e2SPeter Wemm		particular, it does not run on System V based systems and
8213c2aa98e2SPeter Wemm		never will.
8214c2aa98e2SPeter Wemm	CONTRIB: a patch to rmail.c from Bill Gianopoulos of Raytheon
8215c2aa98e2SPeter Wemm		to allow rmail to compile on systems that don't have
8216c2aa98e2SPeter Wemm		function prototypes and systems that don't have snprintf.
8217c2aa98e2SPeter Wemm	CONTRIB: add the "mailprio" scripts that will help you sort mailing
8218c2aa98e2SPeter Wemm		lists by transaction delay times so that addresses that
8219c2aa98e2SPeter Wemm		respond quickly get sent first.  This is to prevent very
8220c2aa98e2SPeter Wemm		sluggish servers from delaying other peoples' mail.
8221c2aa98e2SPeter Wemm		Contributed by Tony Sanders of BSDI.
8222c2aa98e2SPeter Wemm	CONTRIB: add the "bsdi.mc" file as contributed by Tony Sanders
8223c2aa98e2SPeter Wemm		of BSDI.  This has a lot of comments to help people out.
8224c2aa98e2SPeter Wemm	CONFIG: Don't have .mc files include(../m4/cf.m4) -- instead,
8225c2aa98e2SPeter Wemm		put this on the m4 command line.  On GNU m4 (which
8226c2aa98e2SPeter Wemm		supports the __file__ primitive) you can run m4 in an
8227c2aa98e2SPeter Wemm		arbitrary directory -- use either:
8228c2aa98e2SPeter Wemm			m4 ${CFDIR}/m4/cf.m4 config.mc > config.cf
8229c2aa98e2SPeter Wemm		or
8230c2aa98e2SPeter Wemm			m4 -I${CFDIR} m4/cf.m4 config.mc > config.cf
8231c2aa98e2SPeter Wemm		On other versions of m4 that don't support __file__, you
8232c2aa98e2SPeter Wemm		can use:
8233c2aa98e2SPeter Wemm			m4 -D_CF_DIR_=${CFDIR}/ ${CFDIR}/m4/cf.m4 ...
8234c2aa98e2SPeter Wemm		(Note the trailing slash on the _CF_DIR_ definition.)
8235c2aa98e2SPeter Wemm		Old versions of m4 will default to _CF_DIR_=.. for back
8236c2aa98e2SPeter Wemm		compatibility.
8237c2aa98e2SPeter Wemm	CONFIG: fix mail from <> so it will properly convert to
8238c2aa98e2SPeter Wemm		MAILER-DAEMON on local addresses.
8239c2aa98e2SPeter Wemm	CONFIG: fix code that was supposed to catch colons in host
8240c2aa98e2SPeter Wemm		names.  Problem noted by John Gardiner Myers of CMU.
8241c2aa98e2SPeter Wemm	CONFIG: allow use of SMTP_MAILER_MAX in nullclient configuration.
8242c2aa98e2SPeter Wemm		From Paul Riddle of the University of Maryland, Baltimore
8243c2aa98e2SPeter Wemm		County.
8244c2aa98e2SPeter Wemm	CONFIG: Catch and reject "." as a host address.
8245c2aa98e2SPeter Wemm	CONFIG: Generalize domaintable to look up all domains, not
8246c2aa98e2SPeter Wemm		just unqualified ones.
8247c2aa98e2SPeter Wemm	CONFIG: Delete OLD_SENDMAIL support -- as near as I can tell, it
8248c2aa98e2SPeter Wemm		was never used and didn't work anyway.
8249c2aa98e2SPeter Wemm	CONFIG: Set flags A, w, 5, :, /, |, and @ on the "local" mailer
8250c2aa98e2SPeter Wemm		and d on all mailers in the UUCP class.
8251c2aa98e2SPeter Wemm	CONFIG: Allow "user+detail" to be aliased specially: it will first
8252c2aa98e2SPeter Wemm		look for an alias for "user+detail", then for "user+*", and
8253c2aa98e2SPeter Wemm		finally for "user".  This is intended for forwarding mail
8254c2aa98e2SPeter Wemm		for system aliases such as root and postmaster to a
8255c2aa98e2SPeter Wemm		centralized hub.
8256c2aa98e2SPeter Wemm	CONFIG: add confEIGHT_BIT_HANDLING to set option 8 (see above).
8257c2aa98e2SPeter Wemm	CONFIG: add smtp8 mailer; this has the F=8 (just-send-8) flag set.
8258c2aa98e2SPeter Wemm		The F=8 flag is also set on the "relay" mailer, since
8259c2aa98e2SPeter Wemm		this is expected to be another sendmail.
8260c2aa98e2SPeter Wemm	CONFIG: avoid qualifying all UUCP addresses sent via SMTP with
8261c2aa98e2SPeter Wemm		the name of the UUCP_RELAY -- in some cases, this is the
8262c2aa98e2SPeter Wemm		wrong value (e.g., when we have local UUCP connections),
8263c2aa98e2SPeter Wemm		and this can create unreplyable addresses.  From Chip
8264c2aa98e2SPeter Wemm		Rosenthal of Unicom.
8265c2aa98e2SPeter Wemm	CONFIG: add confRECEIVED_HEADER to change the format of the
8266c2aa98e2SPeter Wemm		Received: header inserted into all messages.  Suggested by
8267c2aa98e2SPeter Wemm		Gary Mills of the University of Manitoba.
8268c2aa98e2SPeter Wemm	CONFIG: Make "notsticky" the default; use FEATURE(stickyhost)
82692e43090eSPeter Wemm		to get the old behavior.  I did this upon observing
8270c2aa98e2SPeter Wemm		that almost everyone needed this feature, and that the
8271c2aa98e2SPeter Wemm		concept I was trying to make happen didn't work with
8272c2aa98e2SPeter Wemm		some user agents anyway.  FEATURE(notsticky) still works,
8273c2aa98e2SPeter Wemm		but it is a no-op.
8274c2aa98e2SPeter Wemm	CONFIG: Add LUSER_RELAY -- the host to which unrecognized user
8275c2aa98e2SPeter Wemm		names are sent, rather than immediately diagnosing them
8276c2aa98e2SPeter Wemm		as User Unknown.
8277c2aa98e2SPeter Wemm	CONFIG: Add SMTP_MAILER_ARGS, ESMTP_MAILER_ARGS, SMTP8_MAILER_ARGS,
8278c2aa98e2SPeter Wemm		and RELAY_MAILER_ARGS to set the arguments for the
8279c2aa98e2SPeter Wemm		indicated mailers.  All default to "IPC $h".  Patch from
8280c2aa98e2SPeter Wemm		Larry Parmelee of Cornell University.
8281c2aa98e2SPeter Wemm	CONFIG: pop mailer needs F=n flag to avoid "annoying side effects
8282c2aa98e2SPeter Wemm		on the client side" and F=P to get an appropriate
8283c2aa98e2SPeter Wemm		return-path.  From Kimmo Suominen.
8284c2aa98e2SPeter Wemm	CONFIG: add FEATURE(local_procmail) to use the procmail program
8285c2aa98e2SPeter Wemm		as the local mailer.  For addresses of the form "user+detail"
8286c2aa98e2SPeter Wemm		the "detail" part is passed to procmail via the -a flag.
8287c2aa98e2SPeter Wemm		Contributed by Kimmo Suominen.
8288c2aa98e2SPeter Wemm	CONFIG: add MAILER(procmail) to add an interface to procmail for
8289c2aa98e2SPeter Wemm		use from mailertables.  This lets you execute arbitrary
8290c2aa98e2SPeter Wemm		procmail scripts.  Contributed by Kimmo Suominen.
8291c2aa98e2SPeter Wemm	CONFIG: add T= fields (MTS type) to local, smtp, and uucp mailers.
8292c2aa98e2SPeter Wemm	CONFIG: add OSTYPE(ptx2) for DYNIX/ptx 2.x from Sequent.  From
8293c2aa98e2SPeter Wemm		Paul Southworth of CICNet Systems Support.
8294c2aa98e2SPeter Wemm	CONFIG: use -a$g as default to UUCP mailers, instead of -a$f.
8295c2aa98e2SPeter Wemm		This causes the null return path to be rewritten as
8296c2aa98e2SPeter Wemm		MAILER-DAEMON; otherwise UUCP gets horribly confused.
8297c2aa98e2SPeter Wemm		From Michael Hohmuth of Technische Universitat Dresden.
8298c2aa98e2SPeter Wemm	CONFIG: Add FEATURE(bestmx_is_local) to cause any hosts that
8299c2aa98e2SPeter Wemm		list us as the best possible MX record to be treated as
8300c2aa98e2SPeter Wemm		though they were local (essentially, assume that they
8301c2aa98e2SPeter Wemm		are included in $=w).  This can cause additional DNS
8302c2aa98e2SPeter Wemm		traffic, but is easier to administer if this fits your
8303c2aa98e2SPeter Wemm		local model.  It does not work reliably if there are
8304c2aa98e2SPeter Wemm		multiple hosts that share the best MX preference.
8305c2aa98e2SPeter Wemm		Code contributed by John Oleynick of Rutgers.
8306c2aa98e2SPeter Wemm	CONFIG: Add FEATURE(smrsh) to use smrsh (the SendMail Restricted
8307c2aa98e2SPeter Wemm		SHell) instead of /bin/sh as the program used for delivery
8308c2aa98e2SPeter Wemm		to programs.  If an argument is included, it is used as
8309c2aa98e2SPeter Wemm		the path to smrsh; otherwise, /usr/local/etc/smrsh is
8310c2aa98e2SPeter Wemm		assumed.
8311c2aa98e2SPeter Wemm	CONFIG: Add LOCAL_MAILER_MAX and PROCMAILER_MAILER_MAX to limit the
8312c2aa98e2SPeter Wemm		size of messages to the local and procmail mailers
8313c2aa98e2SPeter Wemm		respectively.  Contributed by Brad Knowles of the Defense
8314c2aa98e2SPeter Wemm		Information Systems Agency.
8315c2aa98e2SPeter Wemm	CONFIG: Handle leading ``phrase:'' and trailing ``;'' as comments
8316c2aa98e2SPeter Wemm		(just like text outside of angle brackets) in order to
8317c2aa98e2SPeter Wemm		properly deal with ``group: addr1, ... addrN;'' syntax.
8318c2aa98e2SPeter Wemm	CONFIG: Require OSTYPE macro (the defaults really don't apply to
8319c2aa98e2SPeter Wemm		any real systems any more) and tweak the DOMAIN macro
8320c2aa98e2SPeter Wemm		so that it is less likely that users will accidentally use
8321c2aa98e2SPeter Wemm		the Berkeley defaults.  Also, create some generic files
8322c2aa98e2SPeter Wemm		that really can be used in the real world.
8323c2aa98e2SPeter Wemm	CONFIG: Add new configuration macros to set character sets for
8324c2aa98e2SPeter Wemm		messages _arriving from_ various mailers: LOCAL_MAILER_CHARSET,
8325c2aa98e2SPeter Wemm		SMTP_MAILER_CHARSET, and UUCP_MAILER_CHARSET.
8326c2aa98e2SPeter Wemm	CONFIG: Change UUCP_MAX_SIZE to UUCP_MAILER_MAX for consistency.
8327c2aa98e2SPeter Wemm		The old name will still be accepted for a while at least.
8328c2aa98e2SPeter Wemm	CONFIG: Implement DECNET_RELAY as spec for host to which DECNET
8329c2aa98e2SPeter Wemm		mail (.DECNET pseudo-domain or node::user) will be sent.
8330c2aa98e2SPeter Wemm		As with all relays, it can be ``mailer:hostname''.  Suggested
8331c2aa98e2SPeter Wemm		by Scott Hutton.
8332c2aa98e2SPeter Wemm	CONFIG: Add MAILER(mail11) to get DECnet support.  Code contributed
8333c2aa98e2SPeter Wemm		by Barb Dijker of Labyrinth Computer Services.
8334c2aa98e2SPeter Wemm	CONFIG: change confCHECK_ALIASES to default to False -- it has poor
8335c2aa98e2SPeter Wemm		performance for large alias files, and this confused many
8336c2aa98e2SPeter Wemm		people.
8337c2aa98e2SPeter Wemm	CONFIG: Add confCF_VERSION to append local information to the
8338c2aa98e2SPeter Wemm		configuration version number displayed during SMTP startup.
8339c2aa98e2SPeter Wemm	CONFIG: fix some.newsgroup.usenet@local.host syntax (previously it
8340c2aa98e2SPeter Wemm		would only work when locally addressed.  Fix from
8341c2aa98e2SPeter Wemm		Edvard Tuinder of Cistron Internet Services.
8342c2aa98e2SPeter Wemm	CONFIG: use ${opMode} to avoid error on .REDIRECT addresses if option
83432e43090eSPeter Wemm		"n" (CheckAliases) is set when rebuilding alias database.
8344c2aa98e2SPeter Wemm		Based on code contributed by Claude Marinier.
8345c2aa98e2SPeter Wemm	CONFIG: Allow mailertable to have values of the form
8346c2aa98e2SPeter Wemm		``error:code message''.  The ``code'' is a status code
8347c2aa98e2SPeter Wemm		derived from the sysexits codes -- e.g., NOHOST or UNAVAILABLE.
8348c2aa98e2SPeter Wemm		Contributed by David James <dwj@agw.bt.co.uk>.
8349c2aa98e2SPeter Wemm	CONFIG: add MASQUERADE_DOMAIN(domain list) to extend the list of
8350c2aa98e2SPeter Wemm		sender domains that will be replaced with the masquerade name.
8351c2aa98e2SPeter Wemm		These domains will not be treated as local, but if mail passes
8352c2aa98e2SPeter Wemm		through with sender addresses in those domains they will be
8353c2aa98e2SPeter Wemm		replaced by the masquerade name.  These can also be specified
8354c2aa98e2SPeter Wemm		in a file using MASQUERADE_DOMAIN_FILE(filename).
8355c2aa98e2SPeter Wemm	CONFIG: add FEATURE(masquerade_envelope) to masquerade the envelope
8356c2aa98e2SPeter Wemm		as well as the header.  Substantial improvements to this
8357c2aa98e2SPeter Wemm		code were contributed by Per Hedeland.
8358c2aa98e2SPeter Wemm	CONFIG: add MAILER(phquery) to define a new "ph" mailer; this can be
8359c2aa98e2SPeter Wemm		accessed from a mailertable to do CCSO ph lookups.  Contributed
8360c2aa98e2SPeter Wemm		by Kimmo Suominen.
8361c2aa98e2SPeter Wemm	CONFIG: add MAILER(cyrus) to define a new Cyrus mailer; this can be
8362c2aa98e2SPeter Wemm		used to define cyrus and cyrusbb mailers (for IMAP support).
8363c2aa98e2SPeter Wemm		Contributed by John Gardiner Myers of Carnegie Mellon.
8364c2aa98e2SPeter Wemm	CONFIG: add confUUCP_MAILER to select default mailer to use for
8365c2aa98e2SPeter Wemm		UUCP addressing.  Suggested by Tom Moore of AT&T GIS.
8366c2aa98e2SPeter Wemm	NEW FILES:
8367c2aa98e2SPeter Wemm		cf/cf/cs-hpux10.mc
8368c2aa98e2SPeter Wemm		cf/cf/cs-solaris2.mc
8369c2aa98e2SPeter Wemm		cf/cf/cyrusproto.mc
8370c2aa98e2SPeter Wemm		cf/cf/generic-bsd4.4.mc
8371c2aa98e2SPeter Wemm		cf/cf/generic-hpux10.mc
8372c2aa98e2SPeter Wemm		cf/cf/generic-hpux9.mc
8373c2aa98e2SPeter Wemm		cf/cf/generic-osf1.mc
8374c2aa98e2SPeter Wemm		cf/cf/generic-solaris2.mc
8375c2aa98e2SPeter Wemm		cf/cf/generic-sunos4.1.mc
8376c2aa98e2SPeter Wemm		cf/cf/generic-ultrix4.mc
8377c2aa98e2SPeter Wemm		cf/cf/huginn.cs.mc
8378c2aa98e2SPeter Wemm		cf/domain/berkeley-only.m4
8379c2aa98e2SPeter Wemm		cf/domain/generic.m4
8380c2aa98e2SPeter Wemm		cf/feature/bestmx_is_local.m4
8381c2aa98e2SPeter Wemm		cf/feature/local_procmail.m4
8382c2aa98e2SPeter Wemm		cf/feature/masquerade_envelope.m4
8383c2aa98e2SPeter Wemm		cf/feature/smrsh.m4
8384c2aa98e2SPeter Wemm		cf/feature/stickyhost.m4
8385c2aa98e2SPeter Wemm		cf/feature/use_ct_file.m4
8386c2aa98e2SPeter Wemm		cf/m4/cfhead.m4
8387c2aa98e2SPeter Wemm		cf/mailer/cyrus.m4
8388c2aa98e2SPeter Wemm		cf/mailer/mail11.m4
8389c2aa98e2SPeter Wemm		cf/mailer/phquery.m4
8390c2aa98e2SPeter Wemm		cf/mailer/procmail.m4
8391c2aa98e2SPeter Wemm		cf/ostype/amdahl-uts.m4
8392c2aa98e2SPeter Wemm		cf/ostype/bsdi2.0.m4
8393c2aa98e2SPeter Wemm		cf/ostype/hpux10.m4
8394c2aa98e2SPeter Wemm		cf/ostype/irix5.m4
8395c2aa98e2SPeter Wemm		cf/ostype/isc4.1.m4
8396c2aa98e2SPeter Wemm		cf/ostype/ptx2.m4
8397c2aa98e2SPeter Wemm		cf/ostype/unknown.m4
8398c2aa98e2SPeter Wemm		contrib/bsdi.mc
8399c2aa98e2SPeter Wemm		contrib/mailprio
8400c2aa98e2SPeter Wemm		contrib/rmail.oldsys.patch
8401c2aa98e2SPeter Wemm		mail.local/mail.local.0
8402c2aa98e2SPeter Wemm		makemap/makemap.0
8403c2aa98e2SPeter Wemm		smrsh/README
8404c2aa98e2SPeter Wemm		smrsh/smrsh.0
8405c2aa98e2SPeter Wemm		smrsh/smrsh.8
8406c2aa98e2SPeter Wemm		smrsh/smrsh.c
8407c2aa98e2SPeter Wemm		src/Makefiles/Makefile.CSOS
8408c2aa98e2SPeter Wemm		src/Makefiles/Makefile.EWS-UX_V
8409c2aa98e2SPeter Wemm		src/Makefiles/Makefile.HP-UX.10
8410c2aa98e2SPeter Wemm		src/Makefiles/Makefile.IRIX.5.x
8411c2aa98e2SPeter Wemm		src/Makefiles/Makefile.IRIX64
8412c2aa98e2SPeter Wemm		src/Makefiles/Makefile.ISC
8413c2aa98e2SPeter Wemm		src/Makefiles/Makefile.KSR
8414c2aa98e2SPeter Wemm		src/Makefiles/Makefile.NEWS-OS.4.x
8415c2aa98e2SPeter Wemm		src/Makefiles/Makefile.NEWS-OS.6.x
8416c2aa98e2SPeter Wemm		src/Makefiles/Makefile.NEXTSTEP
8417c2aa98e2SPeter Wemm		src/Makefiles/Makefile.NonStop-UX
8418c2aa98e2SPeter Wemm		src/Makefiles/Makefile.Paragon
8419c2aa98e2SPeter Wemm		src/Makefiles/Makefile.SCO.3.2v4.2
8420c2aa98e2SPeter Wemm		src/Makefiles/Makefile.SunOS.5.3
8421c2aa98e2SPeter Wemm		src/Makefiles/Makefile.SunOS.5.4
8422c2aa98e2SPeter Wemm		src/Makefiles/Makefile.SunOS.5.5
8423c2aa98e2SPeter Wemm		src/Makefiles/Makefile.UNIX_SV.4.x.i386
8424c2aa98e2SPeter Wemm		src/Makefiles/Makefile.uts.systemV
8425c2aa98e2SPeter Wemm		src/Makefiles/Makefile.UX4800
8426c2aa98e2SPeter Wemm		src/aliases.0
8427c2aa98e2SPeter Wemm		src/mailq.0
8428c2aa98e2SPeter Wemm		src/mime.c
8429c2aa98e2SPeter Wemm		src/newaliases.0
8430c2aa98e2SPeter Wemm		src/sendmail.0
8431c2aa98e2SPeter Wemm		test/t_seteuid.c
8432c2aa98e2SPeter Wemm	RENAMED FILES:
8433c2aa98e2SPeter Wemm		cf/cf/alpha.mc =>		cf/cf/s2k-osf1.mc
8434c2aa98e2SPeter Wemm		cf/cf/chez.mc =>		cf/cf/chez.cs.mc
8435c2aa98e2SPeter Wemm		cf/cf/hpux-cs-exposed.mc =>	cf/cf/cs-hpux9.mc
8436c2aa98e2SPeter Wemm		cf/cf/osf1-cs-exposed.mc =>	cf/cf/cs-osf1.mc
8437c2aa98e2SPeter Wemm		cf/cf/s2k.mc =>			cf/cf/s2k-ultrix4.mc
8438c2aa98e2SPeter Wemm		cf/cf/sunos4.1-cs-exposed.mc =>	cf/cf/cs-sunos4.1.mc
8439c2aa98e2SPeter Wemm		cf/cf/ultrix4.1-cs-exposed.mc => cf/cf/cs-ultrix4.mc
8440c2aa98e2SPeter Wemm		cf/cf/vangogh.mc =>		cf/cf/vangogh.cs.mc
8441c2aa98e2SPeter Wemm		cf/domain/Berkeley.m4 =>	cf/domain/Berkeley.EDU.m4
8442c2aa98e2SPeter Wemm		cf/domain/cs-exposed.m4 =>	cf/domain/CS.Berkeley.EDU.m4
8443c2aa98e2SPeter Wemm		cf/domain/eecs-hidden.m4 =>	cf/domain/EECS.Berkeley.EDU.m4
8444c2aa98e2SPeter Wemm		cf/domain/s2k.m4 =>		cf/domain/S2K.Berkeley.EDU.m4
8445c2aa98e2SPeter Wemm		cf/ostype/hpux.m4 =>		cf/ostype/hpux9.m4
8446c2aa98e2SPeter Wemm		cf/ostype/irix.m4 =>		cf/ostype/irix4.m4
8447c2aa98e2SPeter Wemm		cf/ostype/ultrix4.1.m4 =>	cf/ostype/ultrix4.m4
8448c2aa98e2SPeter Wemm		src/Makefile.* =>		src/Makefiles/Makefile.*
8449c2aa98e2SPeter Wemm		src/Makefile.AUX =>		src/Makefiles/Makefile.A-UX
8450c2aa98e2SPeter Wemm		src/Makefile.BSDI =>		src/Makefiles/Makefile.BSD-OS
8451c2aa98e2SPeter Wemm		src/Makefile.DGUX =>		src/Makefiles/Makefile.dgux
8452c2aa98e2SPeter Wemm		src/Makefile.RISCos =>		src/Makefiles/Makefile.UMIPS
8453c2aa98e2SPeter Wemm		src/Makefile.SunOS.4.0.3 =>	src/Makefiles/Makefile.SunOS.4.0
8454c2aa98e2SPeter Wemm	OBSOLETED FILES:
8455c2aa98e2SPeter Wemm		cf/cf/cogsci.mc
8456c2aa98e2SPeter Wemm		cf/cf/cs-exposed.mc
8457c2aa98e2SPeter Wemm		cf/cf/cs-hidden.mc
8458c2aa98e2SPeter Wemm		cf/cf/hpux-cs-hidden.mc
8459c2aa98e2SPeter Wemm		cf/cf/knecht.mc
8460c2aa98e2SPeter Wemm		cf/cf/osf1-cs-hidden.mc
8461c2aa98e2SPeter Wemm		cf/cf/sunos3.5-cs-exposed.mc
8462c2aa98e2SPeter Wemm		cf/cf/sunos3.5-cs-hidden.mc
8463c2aa98e2SPeter Wemm		cf/cf/sunos4.1-cs-hidden.mc
8464c2aa98e2SPeter Wemm		cf/cf/ultrix4.1-cs-hidden.mc
8465c2aa98e2SPeter Wemm		cf/domain/cs-hidden.m4
8466c2aa98e2SPeter Wemm		contrib/rcpt-streaming
8467c2aa98e2SPeter Wemm		src/Makefiles/Makefile.SunOS.5.x
8468c2aa98e2SPeter Wemm
846906f25ae9SGregory Neil Shapiro8.6.13/8.6.12	1996/01/25
8470c2aa98e2SPeter Wemm	SECURITY: In some cases it was still possible for an attacker to
8471c2aa98e2SPeter Wemm		insert newlines into a queue file, thus allowing access to
8472c2aa98e2SPeter Wemm		any user (except root).
8473c2aa98e2SPeter Wemm	CONFIG: no changes -- it is not a bug that the configuration
8474c2aa98e2SPeter Wemm		version number is unchanged.
8475c2aa98e2SPeter Wemm
847606f25ae9SGregory Neil Shapiro8.6.12/8.6.12	1995/03/28
8477c2aa98e2SPeter Wemm	Fix to IDENT code (it was getting the size of the reply buffer
8478c2aa98e2SPeter Wemm		too small, so nothing was ever accepted).  Fix from several
8479c2aa98e2SPeter Wemm		people, including Allan Johannesen, Shane Castle of the
8480c2aa98e2SPeter Wemm		Boulder County Information Services, and Jeff Smith of
8481c2aa98e2SPeter Wemm		Warwick University (all arrived within a few hours of
8482c2aa98e2SPeter Wemm		each other!).
8483c2aa98e2SPeter Wemm	Fix a problem that could cause large jobs to run out of
8484c2aa98e2SPeter Wemm		file descriptors on systems that use vfork() rather
8485c2aa98e2SPeter Wemm		than fork().
8486c2aa98e2SPeter Wemm
848706f25ae9SGregory Neil Shapiro8.6.11/8.6.11	1995/03/08
8488c2aa98e2SPeter Wemm	The ``possible attack'' message would be logged more often
8489c2aa98e2SPeter Wemm		than necessary if you are using Pine as a user agent.
8490c2aa98e2SPeter Wemm	The wrong host would be reported in the ``possible attack''
8491c2aa98e2SPeter Wemm		message when attempted from IDENT.
8492c2aa98e2SPeter Wemm	In some cases the syslog buffer could be overflowed when
8493c2aa98e2SPeter Wemm		reporting the ``possible attack'' message.  This can
8494c2aa98e2SPeter Wemm		cause denial of service attacks.  Truncate the message
8495c2aa98e2SPeter Wemm		to 80 characters to prevent this problem.
8496c2aa98e2SPeter Wemm	When reading the IDENT response a loop is needed around the
8497c2aa98e2SPeter Wemm		read from the network to ensure that you don't get
8498c2aa98e2SPeter Wemm		partial lines.
8499c2aa98e2SPeter Wemm	Password entries without any shell listed (that is, a null
8500c2aa98e2SPeter Wemm		shell) wouldn't match as "ok".  Problem noted by
8501c2aa98e2SPeter Wemm		Rob McMahon.
8502c2aa98e2SPeter Wemm	When running BIND 4.9.x a problem could occur because the
8503c2aa98e2SPeter Wemm		_res.options field is initialized differently than it
8504c2aa98e2SPeter Wemm		was historically -- this requires that sendmail call
8505c2aa98e2SPeter Wemm		res_init before it tweaks any bits.
8506c2aa98e2SPeter Wemm	Fix an incompatibility in openxscript() between the file open mode
8507c2aa98e2SPeter Wemm		and the stdio mode passed to fdopen.  This caused UnixWare
8508c2aa98e2SPeter Wemm		2.0 to have conniptions.  Fix from Martin Sohnius of
8509c2aa98e2SPeter Wemm		Novell Labs Europe.
8510c2aa98e2SPeter Wemm	Fix problem with static linking of local getopt routine when
8511c2aa98e2SPeter Wemm		using GNU's ld command.  Fix from John Kennedy of
8512c2aa98e2SPeter Wemm		Cal State Chico.
8513c2aa98e2SPeter Wemm	It was possible to turn off privacy flags.  Problem noted by
8514c2aa98e2SPeter Wemm		*Hobbit*.
8515c2aa98e2SPeter Wemm	Be more paranoid about writing files.  Suggestions by *Hobbit*
8516c2aa98e2SPeter Wemm		and Liudvikas Bukys.
8517c2aa98e2SPeter Wemm	MAKEMAP: fixes for 64 bit machines (DEC Alphas in particular)
8518c2aa98e2SPeter Wemm		from Spider Boardman.
8519c2aa98e2SPeter Wemm	CONFIG: No changes (version number only, to keep it in sync
8520c2aa98e2SPeter Wemm		with the binaries).
8521c2aa98e2SPeter Wemm
852206f25ae9SGregory Neil Shapiro8.6.10/8.6.10	1995/02/10
8523c2aa98e2SPeter Wemm	SECURITY: Diagnose bogus values to some command line flags that
8524c2aa98e2SPeter Wemm		could allow trash to get into headers and qf files.
8525c2aa98e2SPeter Wemm	Validate the name of the user returned by the IDENT protocol.
8526c2aa98e2SPeter Wemm		Some systems that really dislike IDENT send intentionally
8527c2aa98e2SPeter Wemm		bogus information.  Problem pointed out by Michael Bushnell
8528c2aa98e2SPeter Wemm		of the Free Software Foundation.  Has some security
8529c2aa98e2SPeter Wemm		implications.
8530c2aa98e2SPeter Wemm	Fix a problem causing error messages about DNS problems when
8531c2aa98e2SPeter Wemm		the host name contained a percent sign to act oddly
8532c2aa98e2SPeter Wemm		because it was passed as a printf-style format string.
8533c2aa98e2SPeter Wemm		In some cases this could cause core dumps.
8534c2aa98e2SPeter Wemm	Avoid possible buffer overrun in returntosender() if error
8535c2aa98e2SPeter Wemm		message is quite long.  From Fletcher Mattox of the
8536c2aa98e2SPeter Wemm		University of Texas.
8537c2aa98e2SPeter Wemm	Fix a problem that would silently drop "too many hops" error
8538c2aa98e2SPeter Wemm		messages if and only if you were sending to an alias.
8539c2aa98e2SPeter Wemm		From Jon Giltner of the University of Colorado and
8540c2aa98e2SPeter Wemm		Dan Harton of Oak Ridge National Laboratory.
8541c2aa98e2SPeter Wemm	Fix a bug that caused core dumps on some systems if -d11.2 was
8542c2aa98e2SPeter Wemm		set and e->e_message was null.  Fix from Bruce Nagel of
8543c2aa98e2SPeter Wemm		Data General.
8544c2aa98e2SPeter Wemm	Fix problem that can still cause df files to be left around
8545c2aa98e2SPeter Wemm		after "hop count exceeded" messages.  Fix from Andrew
8546c2aa98e2SPeter Wemm		Chang and Shau-Ping Lo of SunSoft.
8547c2aa98e2SPeter Wemm	Fix a problem that can cause buffer overflows on very long
8548c2aa98e2SPeter Wemm		user names (as might occur if you piped to a program
8549c2aa98e2SPeter Wemm		with a lot of arguments).
8550c2aa98e2SPeter Wemm	Avoid returning an error and re-queueing if the host signature
8551c2aa98e2SPeter Wemm		is null; this can occur on addresses like ``user@.''.
8552c2aa98e2SPeter Wemm		Problem noted by Wesley Craig and the University of
8553c2aa98e2SPeter Wemm		Michigan.
8554c2aa98e2SPeter Wemm	Avoid possible calls to malloc(0) if MCI caching is turned
8555c2aa98e2SPeter Wemm		off.  Bug fix from Pierre David of the Laboratoire
8556c2aa98e2SPeter Wemm		Parallelisme, Reseaux, Systemes et Modelisation (PRiSM),
8557c2aa98e2SPeter Wemm		Universite de Versailles - St Quentin, and Jacky
8558c2aa98e2SPeter Wemm		Thibault.
8559c2aa98e2SPeter Wemm	Make a local copy of the line being sent via senttolist() -- in
8560c2aa98e2SPeter Wemm		some cases, buffers could get trashed by map lookups
8561c2aa98e2SPeter Wemm		causing it to do unexpected things.  This also simplifies
8562c2aa98e2SPeter Wemm		some of the map code.
8563c2aa98e2SPeter Wemm	CONFIG: No changes (version number only, to keep it in sync
8564c2aa98e2SPeter Wemm		with the binaries).
8565c2aa98e2SPeter Wemm
856606f25ae9SGregory Neil Shapiro8.6.9/8.6.9	1994/04/19
8567c2aa98e2SPeter Wemm	Do all mail delivery completely disconnected from any terminal.
8568c2aa98e2SPeter Wemm		This provides consistency with daemon delivery and
8569c2aa98e2SPeter Wemm		may have some security implications.
8570c2aa98e2SPeter Wemm	Make sure that malloc doesn't get called with zero size,
8571c2aa98e2SPeter Wemm		since that fails on some systems.  Reported by Ed
8572c2aa98e2SPeter Wemm		Hill of the University of Iowa.
8573c2aa98e2SPeter Wemm	Fix multi-line values for $e (SMTP greeting message).  Reported
8574c2aa98e2SPeter Wemm		by Mike O'Connor of Ford Motor Company.
8575c2aa98e2SPeter Wemm	Avoid syserr if no NIS domain name is defined, but the map it
8576c2aa98e2SPeter Wemm		is trying to open is optional.  From Win Bent of USC.
8577c2aa98e2SPeter Wemm	Changes for picky compilers from Ed Gould of Digital Equipment.
8578c2aa98e2SPeter Wemm	Hesiod support for UDB from Todd Miller of the University of
8579c2aa98e2SPeter Wemm		Colorado.  Use "hesiod" as the service name in the U
8580c2aa98e2SPeter Wemm		option.
8581c2aa98e2SPeter Wemm	Fix a problem that failed to set the "authentic" host name (that
8582c2aa98e2SPeter Wemm		is, the one derived from the socket info) if you called
8583c2aa98e2SPeter Wemm		sendmail -bs from inetd.  Based on code contributed by
8584c2aa98e2SPeter Wemm		Todd Miller (this problem was also reported by Guy Helmer
8585c2aa98e2SPeter Wemm		of Dakota State University).  This also fixes a related
8586c2aa98e2SPeter Wemm		problem reported by Liudvikas Bukys of the University of
8587c2aa98e2SPeter Wemm		Rochester.
8588c2aa98e2SPeter Wemm	Parameterize "nroff -h" in all the Makefiles so people with
8589c2aa98e2SPeter Wemm		variant versions can use them easily.  Suggested by
8590c2aa98e2SPeter Wemm		Peter Collinson of Hillside Systems.
8591c2aa98e2SPeter Wemm	SMTP "MAIL" commands with multiple ESMTP parameters required two
8592c2aa98e2SPeter Wemm		spaces between parameters instead of one.  Reported by
8593c2aa98e2SPeter Wemm		Valdis Kletnieks of Virginia Tech.
8594c2aa98e2SPeter Wemm	Reduce the number of system calls during message collection by
8595c2aa98e2SPeter Wemm		using global timeouts around the collect() loop.  This
8596c2aa98e2SPeter Wemm		code was contributed by Eric Wassenaar.
8597c2aa98e2SPeter Wemm	If the initial hostname name gathering results in a name
8598c2aa98e2SPeter Wemm		without a dot (usually caused by NIS misconfiguration)
8599c2aa98e2SPeter Wemm		and BIND is compiled in, directly access DNS to get
8600c2aa98e2SPeter Wemm		the canonical name.  This should make life easier for
8601c2aa98e2SPeter Wemm		Solaris systems.  If it still can't be resolved, and
8602c2aa98e2SPeter Wemm		if the name server is listed as "required", try again
8603c2aa98e2SPeter Wemm		in 30 seconds.  If that also fails, exit immediately to
8604c2aa98e2SPeter Wemm		avoid bogus "config error: mail loops back to myself"
8605c2aa98e2SPeter Wemm		messages.
8606c2aa98e2SPeter Wemm	Improve the "MAIL DELETED BECAUSE OF LACK OF DISK SPACE" error
8607c2aa98e2SPeter Wemm		message to explain how much space was available and
8608c2aa98e2SPeter Wemm		sound a bit less threatening.  Suggested by Stan Janet
8609c2aa98e2SPeter Wemm		of the National Institute of Standards and Technology.
8610c2aa98e2SPeter Wemm	If mail is delivered to an alias that has an owner, deliver any
8611c2aa98e2SPeter Wemm		requested return-receipt immediately, and strip the
8612c2aa98e2SPeter Wemm		Return-Receipt-To: header from the subsequent message.
8613c2aa98e2SPeter Wemm		This prevents a certain class of denial of service
8614c2aa98e2SPeter Wemm		attack, arguably gives more reasonable semantics, and
8615c2aa98e2SPeter Wemm		moves things more towards what will probably become a
8616c2aa98e2SPeter Wemm		network standard.  Suggested by Christopher Davis of
8617c2aa98e2SPeter Wemm		Kapor Enterprises.
8618c2aa98e2SPeter Wemm	Add a "noreceipts" privacy flag to turn off all return receipts
8619c2aa98e2SPeter Wemm		without recompiling.
8620c2aa98e2SPeter Wemm	Avoid printing ESMTP parameters as part of the error message
8621c2aa98e2SPeter Wemm		if there are errors during parsing.  This change is
8622c2aa98e2SPeter Wemm		purely cosmetic.
8623c2aa98e2SPeter Wemm	Avoid sending out error messages during the collect phase of
8624c2aa98e2SPeter Wemm		SMTP; there is an MVS mailer from UCLA that gets
8625c2aa98e2SPeter Wemm		confused by this.  Of course, I think it's their bug....
8626c2aa98e2SPeter Wemm	Check for the $j macro getting undefined, losing a dot, or getting
8627c2aa98e2SPeter Wemm		lost from $=w in the daemon before accepting a connection;
8628c2aa98e2SPeter Wemm		if it is, it dumps state, prints a LOG_ALERT message,
8629c2aa98e2SPeter Wemm		and drops core for debugging.  This is an attempt to
8630c2aa98e2SPeter Wemm		track down a bug that I thought was long since gone.
8631c2aa98e2SPeter Wemm		If you see this, please forward the log fragment to
8632c2aa98e2SPeter Wemm		sendmail@sendmail.ORG.
8633c2aa98e2SPeter Wemm	Change OLD_NEWDB from a #ifdef to a #if so it can be turned off
8634c2aa98e2SPeter Wemm		with -DOLD_NEWDB=0 on the command line.  From Christophe
8635c2aa98e2SPeter Wemm		Wolfhugel.
8636c2aa98e2SPeter Wemm	Instead of trying to truncate the listen queue for the server
8637c2aa98e2SPeter Wemm		SMTP port when the load average is too high, just close
8638c2aa98e2SPeter Wemm		the port completely and reopen it later as needed.
8639c2aa98e2SPeter Wemm		This ensures that the other end gets a quick "connection
8640c2aa98e2SPeter Wemm		refused" response, and that the connection can be
8641c2aa98e2SPeter Wemm		recovered later.  In particular, some socket emulations
8642c2aa98e2SPeter Wemm		seem to get confused if you tweak the listen queue
8643c2aa98e2SPeter Wemm		size around and can never start listening to connections
8644c2aa98e2SPeter Wemm		again.  The down side is that someone could start up
8645c2aa98e2SPeter Wemm		another daemon process in the interim, so you could
8646c2aa98e2SPeter Wemm		have multiple daemons all not listening to connections;
8647c2aa98e2SPeter Wemm		this could in turn cause the sendmail.pid file to be
8648c2aa98e2SPeter Wemm		incorrect.  A better approach might be to accept the
8649c2aa98e2SPeter Wemm		connection and give a 421 code, but that could break
86502e43090eSPeter Wemm		other mailers in mysterious ways and have paging behavior
8651c2aa98e2SPeter Wemm		implications.
8652c2aa98e2SPeter Wemm	Fix a glitch in TCP-level debugging that caused flag 16.101 to
8653c2aa98e2SPeter Wemm		set debugging on the wrong socket.  From Eric Wassenaar.
8654c2aa98e2SPeter Wemm	When creating a df* temporary file, be sure you truncate any
8655c2aa98e2SPeter Wemm		existing data in the file -- otherwise system crashes
8656c2aa98e2SPeter Wemm		and the like could result in extra data being sent.
8657c2aa98e2SPeter Wemm	DOC: Replace the CHANGES-R5-R8 readme file with a paper in the
8658c2aa98e2SPeter Wemm		doc directory.  This includes some additional
8659c2aa98e2SPeter Wemm		information.
8660c2aa98e2SPeter Wemm	CONFIG: change UUCP rules to never add $U! or $k! on the front
8661c2aa98e2SPeter Wemm		of recipient envelope addresses.  This should have been
8662c2aa98e2SPeter Wemm		handled by the $&h trick, but broke if people were
8663c2aa98e2SPeter Wemm		mixing domainized and UUCP addresses.  They should
8664c2aa98e2SPeter Wemm		probably have converted all the way over to uucp-uudom
8665c2aa98e2SPeter Wemm		instead of uucp-{new,old}, but the failure mode was to
8666c2aa98e2SPeter Wemm		loop the mail, which was bad news.
8667c2aa98e2SPeter Wemm	Portability fixes:
8668c2aa98e2SPeter Wemm		Newer BSDI systems (several people).
8669c2aa98e2SPeter Wemm		Older BSDI systems from Christophe Wolfhugel.
8670c2aa98e2SPeter Wemm		Intergraph CLIX, from Paul Southworth of CICNet.
8671c2aa98e2SPeter Wemm		UnixWare, from Evan Champion.
8672c2aa98e2SPeter Wemm		NetBSD from Adam Glass.
8673c2aa98e2SPeter Wemm		Solaris from Quentin Campbell of the University of
8674c2aa98e2SPeter Wemm			Newcastle upon Tyne.
8675c2aa98e2SPeter Wemm		IRIX from Dean Cookson and Bill Driscoll of Mitre
8676c2aa98e2SPeter Wemm			Corporation.
8677c2aa98e2SPeter Wemm		NCR 3000 from Kevin Darcy of Chrysler Financial Corporation.
8678c2aa98e2SPeter Wemm		SunOS (it has setsid() and setvbuf() calls) from
8679c2aa98e2SPeter Wemm			Jonathan Kamens of OpenVision Technologies.
8680c2aa98e2SPeter Wemm		HP-UX from Tor Lillqvist.
8681c2aa98e2SPeter Wemm	New Files:
8682c2aa98e2SPeter Wemm		src/Makefile.CLIX
8683c2aa98e2SPeter Wemm		src/Makefile.NCR3000
8684c2aa98e2SPeter Wemm		doc/changes/Makefile
8685c2aa98e2SPeter Wemm		doc/changes/changes.me
8686c2aa98e2SPeter Wemm		doc/changes/changes.ps
8687c2aa98e2SPeter Wemm
868806f25ae9SGregory Neil Shapiro8.6.8/8.6.6	1994/03/21
8689c2aa98e2SPeter Wemm	SECURITY: it was possible to read any file as root using the
8690c2aa98e2SPeter Wemm		E (error message) option.  Reported by Richard Jones;
8691c2aa98e2SPeter Wemm		fixed by Michael Corrigan and Christophe Wolfhugel.
8692c2aa98e2SPeter Wemm
869306f25ae9SGregory Neil Shapiro8.6.7/8.6.6	1994/03/14
8694c2aa98e2SPeter Wemm	SECURITY: it was possible to get root access by using weird
8695c2aa98e2SPeter Wemm		values to the -d flag.  Thanks to Alain Durand of
8696c2aa98e2SPeter Wemm		INRIA for forwarding me the notice from the bugtraq
8697c2aa98e2SPeter Wemm		list.
8698c2aa98e2SPeter Wemm
869906f25ae9SGregory Neil Shapiro8.6.6/8.6.6	1994/03/13
8700c2aa98e2SPeter Wemm	SECURITY: the ability to give files away on System V-based
8701c2aa98e2SPeter Wemm		systems proved dangerous -- don't run as the owner
8702c2aa98e2SPeter Wemm		of a :include: file on a system that allows giveaways.
8703c2aa98e2SPeter Wemm		Unfortunately, this also applies to determining a
8704c2aa98e2SPeter Wemm		valid shell.
8705c2aa98e2SPeter Wemm	IMPORTANT: Previous versions weren't expiring old connections
8706c2aa98e2SPeter Wemm		in the connection cache for a long time under some
8707c2aa98e2SPeter Wemm		circumstances.  This could result in resource exhaustion,
8708c2aa98e2SPeter Wemm		both at your end and at the other end.  This checks the
8709c2aa98e2SPeter Wemm		connections for timeouts much more frequently.  From
8710c2aa98e2SPeter Wemm		Doug Anderson of NCSC.
8711c2aa98e2SPeter Wemm	Fix a glitch that snuck in that caused programs to be run as
8712c2aa98e2SPeter Wemm		the sender instead of the recipient if the mail was
8713c2aa98e2SPeter Wemm		from a local user to another local user.  From
8714c2aa98e2SPeter Wemm		Motonori Nakamura of Kyoto University.
8715c2aa98e2SPeter Wemm	Fix "wildcard" on /etc/shells matching -- instead of looking
8716c2aa98e2SPeter Wemm		for "*", look for "/SENDMAIL/ANY/SHELL/".  From
8717c2aa98e2SPeter Wemm		Bryan Costales of ICSI.
8718c2aa98e2SPeter Wemm	Change the method used to declare the "statfs" availability;
8719c2aa98e2SPeter Wemm		instead of HASSTATFS and/or HASUSTAT with a ton of
8720c2aa98e2SPeter Wemm		tweaking in conf.c, there is a single #define called
8721c2aa98e2SPeter Wemm		SFS_TYPE which takes on one of six values (SFS_NONE
8722c2aa98e2SPeter Wemm		for no statfs availability, SFS_USTAT for the ustat(2)
8723c2aa98e2SPeter Wemm		syscall, SFS_4ARGS for a four argument statfs(2) call,
8724c2aa98e2SPeter Wemm		and SFS_VFS, SFS_MOUNT, or SFS_STATFS for a two argument
8725c2aa98e2SPeter Wemm		statfs(2) call with the declarations in <sys/vfs.h>,
8726c2aa98e2SPeter Wemm		<sys/mount.h>, or <sys/statfs.h> respectively).
8727c2aa98e2SPeter Wemm	Fix glitch in NetInfo support that could return garbage if
8728c2aa98e2SPeter Wemm		there was no "/locations/sendmail" property.  From
8729c2aa98e2SPeter Wemm		David Meyer of the University of Virginia.
8730c2aa98e2SPeter Wemm	Change HASFLOCK from defined/not-defined to a 0/1 definition
8731c2aa98e2SPeter Wemm		to allow Linux to turn it off even though it is a
8732c2aa98e2SPeter Wemm		BSD-like system.
8733c2aa98e2SPeter Wemm	Allow setting of "ident" timeout to zero to turn off the ident
8734c2aa98e2SPeter Wemm		protocol entirely.
8735c2aa98e2SPeter Wemm	Make 7-bit stripping local to a connection (instead of to a
8736c2aa98e2SPeter Wemm		mailer); this allows you to specify that SMTP is a
8737c2aa98e2SPeter Wemm		7-bit channel, but revert to 8-bit should it advertise
8738c2aa98e2SPeter Wemm		that it supports 8BITMIME.  You still have to specify
8739c2aa98e2SPeter Wemm		mailer flag 7 to get this stripping at all.
8740c2aa98e2SPeter Wemm	Improve makesendmail script so it handles more cases automatically.
8741c2aa98e2SPeter Wemm	Tighten up restrictions on taking ownership of :include: files
8742c2aa98e2SPeter Wemm		to avoid problems on systems that allow you to give away
8743c2aa98e2SPeter Wemm		files.
8744c2aa98e2SPeter Wemm	Fix a problem that made it impossible to rebuild the alias
8745c2aa98e2SPeter Wemm		file if it was on a read-only file system.  From
8746c2aa98e2SPeter Wemm		Harry Edmon of the University of Washington.
8747c2aa98e2SPeter Wemm	Improve MX randomization function.  From John Gardiner Myers
8748c2aa98e2SPeter Wemm		of CMU.
8749c2aa98e2SPeter Wemm	Fix a minor glitch causing a bogus message to be printed (used
8750c2aa98e2SPeter Wemm		%s instead of %d in a printf string for the line number)
8751c2aa98e2SPeter Wemm		when a bad queue file was read.  From Harry Edmon.
8752c2aa98e2SPeter Wemm	Allow $s to remain NULL on locally generated mail.  I'm not
8753c2aa98e2SPeter Wemm		sure this is necessary, but a lot of people have complained
8754c2aa98e2SPeter Wemm		about it, and there is a legitimate question as to whether
8755c2aa98e2SPeter Wemm		"localhost" is legal as an 822-style domain.
8756c2aa98e2SPeter Wemm	Fix a problem with very short line lengths (mailer L= flag) in
8757c2aa98e2SPeter Wemm		headers.  This causes a leading space to be added onto
8758c2aa98e2SPeter Wemm		continuation lines (including in the body!), and also
8759c2aa98e2SPeter Wemm		tries to wrap headers containing addresses (From:, To:,
8760c2aa98e2SPeter Wemm		etc) intelligently at the shorter line lengths.  Problem
8761c2aa98e2SPeter Wemm		Reported by Lars-Johan Liman of SUNET Operations Center.
8762c2aa98e2SPeter Wemm	Log the real user name when logging syserrs, since these can have
8763c2aa98e2SPeter Wemm		security implications.  Suggested by several people.
8764c2aa98e2SPeter Wemm	Fix address logging of cached connections -- it used to always
8765c2aa98e2SPeter Wemm		log the numeric address as zero.  This is a somewhat
8766c2aa98e2SPeter Wemm		bogus implementation in that it does an extra system
8767c2aa98e2SPeter Wemm		call, but it should be an inexpensive one.  Fix from
8768c2aa98e2SPeter Wemm		Motonori Nakamura.
8769c2aa98e2SPeter Wemm	Tighten up handling of short syslog buffers even more -- there
8770c2aa98e2SPeter Wemm		were cases where the outgoing relay= name was too long
8771c2aa98e2SPeter Wemm		to share a line with delay= and mailer= logging.
8772c2aa98e2SPeter Wemm	Limit the overhead on split envelopes to one open file descriptor
8773c2aa98e2SPeter Wemm		per envelope -- previously the overhead was three
8774c2aa98e2SPeter Wemm		descriptors.  This was in response to a problem reported
8775c2aa98e2SPeter Wemm		by P{r (Pell) Emanuelsson.
8776c2aa98e2SPeter Wemm	Fixes to better handle the case of unexpected connection closes;
8777c2aa98e2SPeter Wemm		this redirects the output to the transcript so the info
8778c2aa98e2SPeter Wemm		is not lost.  From Eric Wassenaar.
8779c2aa98e2SPeter Wemm	Fix potential string overrun if you macro evaluate a string that
8780c2aa98e2SPeter Wemm		has a naked $ at the end.  Problem noted by James Matheson
8781c2aa98e2SPeter Wemm		<jmrm@eng.cam.ac.uk>.
8782c2aa98e2SPeter Wemm	Make default error number on $#error messages 553 (``Requested
8783c2aa98e2SPeter Wemm		action not taken: mailbox name not allowed'') instead of
8784c2aa98e2SPeter Wemm		501 (``Syntax error in parameters or arguments'') to
8785c2aa98e2SPeter Wemm		avoid bogus "protocol error" messages.
8786c2aa98e2SPeter Wemm	Strip off any existing trailing dot on names during $[ ... $]
8787c2aa98e2SPeter Wemm		lookup.  This prevents it from ending up with two dots
8788c2aa98e2SPeter Wemm		on the end of dot terminated names.  From Wesley Craig
8789c2aa98e2SPeter Wemm		of the University of Michigan and Bryan Costales of ICSI.
8790c2aa98e2SPeter Wemm	Clean up file class reading so that the debugging information is
8791c2aa98e2SPeter Wemm		more informative.  It hadn't been using setclass, so you
8792c2aa98e2SPeter Wemm		didn't see the class items being added.
8793c2aa98e2SPeter Wemm	Avoid core dump if you are running a version of sendmail where
8794c2aa98e2SPeter Wemm		NIS is compiled in, and you specify an NIS map, but
8795c2aa98e2SPeter Wemm		NIS is not running.  Fix from John Oleynick of
8796c2aa98e2SPeter Wemm		Rutgers.
8797c2aa98e2SPeter Wemm	Diagnose bizarre case where res_search returns a failure value,
8798c2aa98e2SPeter Wemm		but sets h_errno to a success value.
8799c2aa98e2SPeter Wemm	Make sure that "too many hops" messages are considered important
8800c2aa98e2SPeter Wemm		enough to send an error to the Postmaster (that is, the
8801c2aa98e2SPeter Wemm		address specified in the P option).  This fix should
8802c2aa98e2SPeter Wemm		help problems that cause the df file to be left around
8803c2aa98e2SPeter Wemm		sometimes -- unfortunately, I can't seem to reproduce
8804c2aa98e2SPeter Wemm		the problem myself.
8805c2aa98e2SPeter Wemm	Avoid core dump (null pointer reference) on EXPN command; this
8806c2aa98e2SPeter Wemm		only occurred if your log level was set to 10 or higher
8807c2aa98e2SPeter Wemm		and the target account was an alias or had a .forward file.
8808c2aa98e2SPeter Wemm		Problem noted by Janne Himanka.
8809c2aa98e2SPeter Wemm	Avoid "denial of service" attacks by someone who is flooding your
8810c2aa98e2SPeter Wemm		SMTP port with bad commands by shutting the connection
8811c2aa98e2SPeter Wemm		after 25 bad commands are issued.  From Kyle Jones of
8812c2aa98e2SPeter Wemm		UUNET.
8813c2aa98e2SPeter Wemm	Fix core dump on error messages with very long "to" buffers;
8814c2aa98e2SPeter Wemm		fmtmsg overflows the message buffer.  Fixed by trimming
8815c2aa98e2SPeter Wemm		the to address to 203 characters.  Problem reported by
8816c2aa98e2SPeter Wemm		John Oleynick.
8817c2aa98e2SPeter Wemm	Fix configuration for HASFLOCK -- there were some spots where
8818c2aa98e2SPeter Wemm		a #ifndef was incorrectly #ifdef.  Pointed out by
8819c2aa98e2SPeter Wemm		George Baltz of the University of Maryland.
8820c2aa98e2SPeter Wemm	Fix a typo in savemail() that could cause the error message To:
8821c2aa98e2SPeter Wemm		lists to be incorrect in some places.  From Motonori
8822c2aa98e2SPeter Wemm		Nakamura.
8823c2aa98e2SPeter Wemm	Fix a glitch that can cause duplicate error messages on split
8824c2aa98e2SPeter Wemm		envelopes where an address on one of the lists has a
8825c2aa98e2SPeter Wemm		name server failure.  Fix from Voradesh Yenbut of the
8826c2aa98e2SPeter Wemm		University of Washington.
8827c2aa98e2SPeter Wemm	Fix possible bogus pointer reference on ESMTP parameters that
8828c2aa98e2SPeter Wemm		don't have an ``=value'' part.
8829c2aa98e2SPeter Wemm	CNAME loops caused an error message to be generated, but also
8830c2aa98e2SPeter Wemm		re-queued the message.  Changed to just re-queue the
8831c2aa98e2SPeter Wemm		message (it's really hard to just bounce it because
8832c2aa98e2SPeter Wemm		of the weird way the name server works in the presence
8833c2aa98e2SPeter Wemm		of CNAME loops).  Problem noted by James M.R.Matheson
8834c2aa98e2SPeter Wemm		of Cambridge University.
8835c2aa98e2SPeter Wemm	Avoid giving ``warning: foo owned process doing -bs'' messages
8836c2aa98e2SPeter Wemm		if they use ``MAIL FROM:<foo>'' where foo is their true
8837c2aa98e2SPeter Wemm		user name.  Suggested by Andreas Stolcke of ICSI.
8838c2aa98e2SPeter Wemm	Change the NAMED_BIND compile flag to be a 0/1 flag so you can
8839c2aa98e2SPeter Wemm		override it easily in the Makefile -- that is, you can
8840c2aa98e2SPeter Wemm		turn it off using -DNAMED_BIND=0.
8841c2aa98e2SPeter Wemm	If a gethostbyname(...) of an address with a trailing dot fails,
8842c2aa98e2SPeter Wemm		try it without the trailing dot.  This is because if
8843c2aa98e2SPeter Wemm		you have a version of gethostbyname() that falls back
8844c2aa98e2SPeter Wemm		to NIS or the /etc/hosts file it will fail to find
8845c2aa98e2SPeter Wemm		perfectly reasonable names that just don't happen to
8846c2aa98e2SPeter Wemm		be dot terminated in the hosts file.  You don't want to
8847c2aa98e2SPeter Wemm		strip the dot first though because we're trying to ensure
8848c2aa98e2SPeter Wemm		that country names that match one of your subdomains get
8849c2aa98e2SPeter Wemm		a chance.
8850c2aa98e2SPeter Wemm	PRALIASES: fix bogus output on non-null-terminated strings.
8851c2aa98e2SPeter Wemm		From Bill Gianopoulos of Raytheon.
8852c2aa98e2SPeter Wemm	CONFIG: Avoid rewriting anything that matches $w to be $j.
8853c2aa98e2SPeter Wemm		This was in code intended to only catch the self-literal
8854c2aa98e2SPeter Wemm		address (that is, [1.2.3.4], where 1.2.3.4 is your
8855c2aa98e2SPeter Wemm		IP address), but the code was broken.  However, it will
8856c2aa98e2SPeter Wemm		still do this if $M is defined; this is necessary to
8857c2aa98e2SPeter Wemm		get client configurations to work (sigh).  Note that this
8858c2aa98e2SPeter Wemm		means that $M overrides :mailname entries in the user
8859c2aa98e2SPeter Wemm		database!  Problem noted by Paul Southworth.
8860c2aa98e2SPeter Wemm	CONFIG: Fix definition of Solaris help file location.  From
8861c2aa98e2SPeter Wemm		Steve Cliffe <steve@gorgon.cs.uow.edu.au>.
8862c2aa98e2SPeter Wemm	CONFIG: Fix bug that broke news.group.USENET mappings.
8863c2aa98e2SPeter Wemm	CONFIG: Allow declaration of SMTP_MAILER_MAX, FAX_MAILER_MAX,
8864c2aa98e2SPeter Wemm		and USENET_MAILER_MAX to tweak the maximum message
8865c2aa98e2SPeter Wemm		size for various mailers.
8866c2aa98e2SPeter Wemm	CONFIG: Change definition of USENET_MAILER_ARGS to include argv[0]
8867c2aa98e2SPeter Wemm		instead of assuming that it is "inews" for consistency
8868c2aa98e2SPeter Wemm		with other mailers.  From Michael Corrigan of UC San Diego.
8869c2aa98e2SPeter Wemm	CONFIG: When mail is forwarded to a LOCAL_RELAY or a MAIL_HUB,
8870c2aa98e2SPeter Wemm		qualify the address in the SMTP envelope as user@{relay|hub}
8871c2aa98e2SPeter Wemm		instead of user@$j.  From Bill Wisner of The Well.
8872c2aa98e2SPeter Wemm	CONFIG: Fix route-addr syntax in nullrelay configuration set.
8873c2aa98e2SPeter Wemm	CONFIG: Don't turn off case mapping of user names in the local
8874c2aa98e2SPeter Wemm		mailer for IRIX.  This was different than most every other
8875c2aa98e2SPeter Wemm		system.
8876c2aa98e2SPeter Wemm	CONFIG: Avoid infinite loops on certainly list:; syntaxes in
8877c2aa98e2SPeter Wemm		envelope.  Noted by Thierry Besancon
8878c2aa98e2SPeter Wemm		<besancon@excalibur.ens.fr>.
8879c2aa98e2SPeter Wemm	CONFIG: Don't include -z by default on uux line -- most systems
8880c2aa98e2SPeter Wemm		don't want it set by default.  Pointed out by Philippe
8881c2aa98e2SPeter Wemm		Michel of Thomson CSF.
8882c2aa98e2SPeter Wemm	CONFIG: Fix some bugs with mailertables -- for example, if your
8883c2aa98e2SPeter Wemm		host name was foo.bar.ray.com and you matched against
8884c2aa98e2SPeter Wemm		".ray.com", the old implementation bound %1 to "bar"
8885c2aa98e2SPeter Wemm		instead of "foo.bar".  Also, allow "." in the mailertable
8886c2aa98e2SPeter Wemm		to match anything -- essentially, take over SMART_HOST.
8887c2aa98e2SPeter Wemm		This also moves matching of explicit local host names
8888c2aa98e2SPeter Wemm		before the mailertable so they don't have to be special
8889c2aa98e2SPeter Wemm		cased in the mailertable data.  Reported by Bill
8890c2aa98e2SPeter Wemm		Gianopoulos of Raytheon; the fix for the %1 binding
8891c2aa98e2SPeter Wemm		problem was contributed by Nicholas Comanos of the
8892c2aa98e2SPeter Wemm		University of Sydney.
8893c2aa98e2SPeter Wemm	CONFIG: Don't include "root" in class $=L (users to deliver
8894c2aa98e2SPeter Wemm		locally, even if a hub or relay exists) by default.
8895c2aa98e2SPeter Wemm		This is because of the known bug where definition of
8896c2aa98e2SPeter Wemm		both a LOCAL_RELAY and a MAIL_HUB causes $=L to ignore
8897c2aa98e2SPeter Wemm		both and deliver into the local mailbox.
8898c2aa98e2SPeter Wemm	CONFIG: Move up bitdomain and uudomain handling so that they
8899c2aa98e2SPeter Wemm		are done before .UUCP class matching; uudomain was
8900c2aa98e2SPeter Wemm		reported as ineffective before.  This also frees up
8901c2aa98e2SPeter Wemm		diversion 8 for future use.  Problem reported by Kimmo
8902c2aa98e2SPeter Wemm		Suominen.
8903c2aa98e2SPeter Wemm	CONFIG: Don't try to convert dotted IP address (e.g., [1.2.3.4])
8904c2aa98e2SPeter Wemm		into host names.  As pointed out by Jonathan Kamens,
8905c2aa98e2SPeter Wemm		these are often used because either the forward or reverse
8906c2aa98e2SPeter Wemm		mapping is broken; this translation makes it broken again.
8907c2aa98e2SPeter Wemm	DOC: Clarify $@ and $: in the Install & Op Guide.  From Kimmo
8908c2aa98e2SPeter Wemm		Suominen.
8909c2aa98e2SPeter Wemm	Portability fixes:
8910c2aa98e2SPeter Wemm		Unicos from David L. Kensiski of Sterling Software.
8911c2aa98e2SPeter Wemm		DomainOS from Don Lewis of Silicon Systems.
8912c2aa98e2SPeter Wemm		GNU m4 1.0.3 from Karst Koymans of Utrecht University.
8913c2aa98e2SPeter Wemm		Convex from Kimmo Suominen <kim@tac.nyc.ny.us>.
8914c2aa98e2SPeter Wemm		NetBSD from Adam Glass <glass@sun-lamp.cs.berkeley.edu>.
8915c2aa98e2SPeter Wemm		BSD/386 from Tony Sanders of BSDI.
8916c2aa98e2SPeter Wemm		Apollo from Eric Wassenaar.
8917c2aa98e2SPeter Wemm		DGUX from Doug Anderson.
8918c2aa98e2SPeter Wemm		Sequent DYNIX/ptx 2.0 from Tim Wright of Sequent.
8919c2aa98e2SPeter Wemm	NEW FILES:
8920c2aa98e2SPeter Wemm		src/Makefile.DomainOS
8921c2aa98e2SPeter Wemm		src/Makefile.PTX
8922c2aa98e2SPeter Wemm		src/Makefile.SunOS.5.1
8923c2aa98e2SPeter Wemm		src/Makefile.SunOS.5.2
8924c2aa98e2SPeter Wemm		src/Makefile.SunOS.5.x
8925c2aa98e2SPeter Wemm		src/mailq.1
8926c2aa98e2SPeter Wemm		cf/ostype/domainos.m4
8927c2aa98e2SPeter Wemm		doc/op/Makefile
8928c2aa98e2SPeter Wemm		doc/intro/Makefile
8929c2aa98e2SPeter Wemm		doc/usenix/Makefile
8930c2aa98e2SPeter Wemm
893106f25ae9SGregory Neil Shapiro8.6.5/8.6.5	1994/01/13
8932c2aa98e2SPeter Wemm	Security fix:  /.forward could be owned by anyone (the test
8933c2aa98e2SPeter Wemm		to allow root to own any file was backwards).  From
8934c2aa98e2SPeter Wemm		Bob Campbell at U.C. Berkeley.
8935c2aa98e2SPeter Wemm	Security fix: group ids were not completely set when programs
8936c2aa98e2SPeter Wemm		were invoked.  This caused programs to have group
8937c2aa98e2SPeter Wemm		permissions they should not have had (usually group
8938c2aa98e2SPeter Wemm		daemon instead of their own group).  In particular,
8939c2aa98e2SPeter Wemm		Perl scripts would refuse to run.
8940c2aa98e2SPeter Wemm	Security: check to make sure files that are written are not
8941c2aa98e2SPeter Wemm		symbolic links (at least under some circumstances).
8942c2aa98e2SPeter Wemm		Although this does not respond to a specific known
8943c2aa98e2SPeter Wemm		attack, it's just a good idea.  Suggested by
8944c2aa98e2SPeter Wemm		Christian Wettergren.
8945c2aa98e2SPeter Wemm	Security fix: if a user had an NFS mounted home directory on
8946c2aa98e2SPeter Wemm		a system with a restricted shell listed in their
8947c2aa98e2SPeter Wemm		/etc/passwd entry, they could still execute any
8948c2aa98e2SPeter Wemm		program by putting that in their .forward file.
8949c2aa98e2SPeter Wemm		This fix prevents that by insisting that their shell
8950c2aa98e2SPeter Wemm		appear in /etc/shells before allowing a .forward to
8951c2aa98e2SPeter Wemm		execute a program or write a file.  You can disable
8952c2aa98e2SPeter Wemm		this by putting "*" in /etc/shells.  It also won't
8953c2aa98e2SPeter Wemm		permit world-writable :include: files to reference
8954c2aa98e2SPeter Wemm		programs or files (there's no way to disable this).
89552e43090eSPeter Wemm		These behaviors are only one level deep -- for
8956c2aa98e2SPeter Wemm		example, it is legal for a world-writable :include:
8957c2aa98e2SPeter Wemm		file to reference an alias that writes a file, on
8958c2aa98e2SPeter Wemm		the assumption that the alias file is well controlled.
8959c2aa98e2SPeter Wemm	Security fix: root was not treated suspiciously enough when
8960c2aa98e2SPeter Wemm		looking into subdirectories.  This would potentially
8961c2aa98e2SPeter Wemm		allow a cracker to examine files that were publicly
8962c2aa98e2SPeter Wemm		readable but in a non-publicly searchable directory.
8963c2aa98e2SPeter Wemm	Fix a problem that causes an error on QUIT on a cached
8964c2aa98e2SPeter Wemm		connection to create problems on the current job.
8965c2aa98e2SPeter Wemm		These are typically unrelated, so errors occur in
8966c2aa98e2SPeter Wemm		the wrong place.
8967c2aa98e2SPeter Wemm	Reset CurrentLA in sendall() -- this makes sendmail queue
8968c2aa98e2SPeter Wemm		runs more responsive to load average, and fixes a
8969c2aa98e2SPeter Wemm		problem that ignored the load average in locally
8970c2aa98e2SPeter Wemm		generated mail.  From Eric Wassenaar.
8971c2aa98e2SPeter Wemm	Fix possible core dump on aliases with null LHS.  From
8972c2aa98e2SPeter Wemm		John Orthoefer of BB&N.
8973c2aa98e2SPeter Wemm	Revert to using flock() whenever possible -- there are just
8974c2aa98e2SPeter Wemm		too many bugs in fcntl() locking, particularly over
8975c2aa98e2SPeter Wemm		NFS, that cause sendmail to fail in perverse ways.
8976c2aa98e2SPeter Wemm	Fix a bug that causes the connection cache to get confused
8977c2aa98e2SPeter Wemm		when sending error messages.  This resulted in
8978c2aa98e2SPeter Wemm		"unexpected close" messages.  It should fix itself
8979c2aa98e2SPeter Wemm		on the following queue run.  Problem noted by
8980c2aa98e2SPeter Wemm		Liudvikas Bukys of the University of Rochester.
8981c2aa98e2SPeter Wemm	Include $k in $=k as documented in the Install & Op Guide.
8982c2aa98e2SPeter Wemm		This seems odd, but it was documented....  From
8983c2aa98e2SPeter Wemm		Michael Corrigan of UCSD.
8984c2aa98e2SPeter Wemm	Fix problem that caused :include:s from alias files to be
8985c2aa98e2SPeter Wemm		forced to be owned by root instead of daemon
8986c2aa98e2SPeter Wemm		(actually DefUid).  From Tim Irvin.
8987c2aa98e2SPeter Wemm	Diagnose unrecognized I option values -- from Mortin Forssen
8988c2aa98e2SPeter Wemm		of the Chalmers University of Technology.
8989c2aa98e2SPeter Wemm	Make "error" mailer work consistently when there is no error
8990c2aa98e2SPeter Wemm		code associated with it -- previously it returned OK
8991c2aa98e2SPeter Wemm		even though there was a real problem.  Now it assumes
8992c2aa98e2SPeter Wemm		EX_UNAVAILABLE.
8993c2aa98e2SPeter Wemm	Fix bug that caused the last header line of messages that had
8994c2aa98e2SPeter Wemm		no body and which were terminated with EOF instead of
8995c2aa98e2SPeter Wemm		"." to be discarded.  Problem noted by Liudvikas Bukys.
8996c2aa98e2SPeter Wemm	Fix core dump on SMTP mail to programs that failed -- it tried
8997c2aa98e2SPeter Wemm		to go to a "next MX host" when none existed, causing
8998c2aa98e2SPeter Wemm		a core dump.  From der Mouse at McGill University.
8999c2aa98e2SPeter Wemm	Change IDENTPROTO from a defined/not defined to a 0/1 switch;
9000c2aa98e2SPeter Wemm		this makes it easier to turn it off (using
9001c2aa98e2SPeter Wemm		-DIDENTPROTO=0 in the Makefile).  From der Mouse.
9002c2aa98e2SPeter Wemm	Fix YP_MASTER_NAME store to use the unupdated result of
9003c2aa98e2SPeter Wemm		gethostname() (instead of myhostname(), which tries
9004c2aa98e2SPeter Wemm		to fully qualify the name) to be consistent with
9005c2aa98e2SPeter Wemm		SunOS.  If your hostname is unqualified, this fixes
9006c2aa98e2SPeter Wemm		transfers to slave servers.  Bug noted by Keith
9007c2aa98e2SPeter Wemm		McMillan of Ameritech Services, Inc.
9008c2aa98e2SPeter Wemm	Fix Ultrix problem: gethostbyname() can return a very large
9009c2aa98e2SPeter Wemm		(> 500) h_length field, which causes the sockaddr
9010c2aa98e2SPeter Wemm		to be trashed.  Use the size of the sockaddr instead.
9011c2aa98e2SPeter Wemm		Fix from Bob Manson of Ohio State.
9012c2aa98e2SPeter Wemm	Don't assume "-a." on host lookups if NAMED_BIND is not
9013c2aa98e2SPeter Wemm		defined -- this confuses gethostbyname on hosts
9014c2aa98e2SPeter Wemm		file lookups, which doesn't understand the trailing
9015c2aa98e2SPeter Wemm		dot convention.
9016c2aa98e2SPeter Wemm	Log SMTP server subprocesses that die with a signal instead
9017c2aa98e2SPeter Wemm		of from a clean exit.
9018c2aa98e2SPeter Wemm	If you don't have option "I" set, don't assume that a DNS
9019c2aa98e2SPeter Wemm		"host unknown" message is authoritative -- it
9020c2aa98e2SPeter Wemm		might still be found in /etc/hosts.
9021c2aa98e2SPeter Wemm	Fix a problem that would cause Deferred: messages to be sent
9022c2aa98e2SPeter Wemm		as the subject of an error message, even though the
9023c2aa98e2SPeter Wemm		actual cause of a message was more severe than that.
9024c2aa98e2SPeter Wemm		Problem noted by Chris Seabrook of OSSI.
9025c2aa98e2SPeter Wemm	Fix race condition in DBM alias file locking.  From Kyle
9026c2aa98e2SPeter Wemm		Jones of UUNET.
9027c2aa98e2SPeter Wemm	Limit delivery syslog line length to avoid bugs in some
9028c2aa98e2SPeter Wemm		versions of syslog(3).  This adds a new compile time
9029c2aa98e2SPeter Wemm		variable SYSLOG_BUFSIZE.  From Jay Plett of Princeton
9030c2aa98e2SPeter Wemm		University, which is in turn derived from IDA.
9031c2aa98e2SPeter Wemm	Fix quotes inside of comments in addresses -- previously
9032c2aa98e2SPeter Wemm		it insisted that they be balanced, but the 822 spec
9033c2aa98e2SPeter Wemm		says that they should be ignored.
9034c2aa98e2SPeter Wemm	Dump open file state to syslog upon receiving SIGUSR1 (for
9035c2aa98e2SPeter Wemm		debugging).  This also evaluates ruleset 89, if set
9036c2aa98e2SPeter Wemm		(with the null input), and logs the result.  This
9037c2aa98e2SPeter Wemm		should be used sparingly, since the rewrite process
9038c2aa98e2SPeter Wemm		is not reentrant.
9039c2aa98e2SPeter Wemm	Change -qI, -qR, and -qS flags to be case-insensitive as
9040c2aa98e2SPeter Wemm		documented in the Bat Book.
9041c2aa98e2SPeter Wemm	If the mailer returned EX_IOERR or EX_OSERR, sendmail did not
9042c2aa98e2SPeter Wemm		return an error message and did not requeue the message.
9043c2aa98e2SPeter Wemm		Fix based on code from Roland Dirlewanger of
9044c2aa98e2SPeter Wemm		Reseau Regional Aquarel, Bordeaux, France.
9045c2aa98e2SPeter Wemm	Fix a problem that caused a seg fault if you got a 421 error
9046c2aa98e2SPeter Wemm		code during some parts of connection initialization.
9047c2aa98e2SPeter Wemm		I've only seen this when talking to buggy mailers on
9048c2aa98e2SPeter Wemm		the other end, but it shouldn't give a seg fault in
9049c2aa98e2SPeter Wemm		any case.  From Amir Plivatsky.
9050c2aa98e2SPeter Wemm	Fix core dump caused by a ruleset call that returns null.
9051c2aa98e2SPeter Wemm		Fix from Bryan Costales of ICSI.
9052c2aa98e2SPeter Wemm	Full-Name: field was being ignored.  Fix from Motonori Nakamura
9053c2aa98e2SPeter Wemm		of Kyoto University.
9054c2aa98e2SPeter Wemm	Fix a possible problem with very long input lines in setproctitle.
9055c2aa98e2SPeter Wemm		From P{r Emanuelsson.
9056c2aa98e2SPeter Wemm	Avoid putting "This is a warning message" out on return receipts.
9057c2aa98e2SPeter Wemm		Suggested by Douglas Anderson.
9058c2aa98e2SPeter Wemm	Detect loops caused by recursive ruleset calls.  Suggested by
9059c2aa98e2SPeter Wemm		Bryan Costales.
9060c2aa98e2SPeter Wemm	Initialize non-alias maps during alias rebuilds -- they may be
9061c2aa98e2SPeter Wemm		needed for parsing.  Problem noted by Douglas Anderson.
9062c2aa98e2SPeter Wemm	Log sender address even if no message was collected in SMTP
9063c2aa98e2SPeter Wemm		(e.g., if all RCPTs failed).  Suggested by Motonori
9064c2aa98e2SPeter Wemm		Nakamura.
9065c2aa98e2SPeter Wemm	Don't reflect the owner-list contents into the envelope sender
9066c2aa98e2SPeter Wemm		address if the value contains ", :, /, or | (to avoid
9067c2aa98e2SPeter Wemm		illegal addresses appearing there).
9068c2aa98e2SPeter Wemm	Efficiency hack for toktype macro -- from Craig Partridge of
9069c2aa98e2SPeter Wemm		BB&N.
9070c2aa98e2SPeter Wemm	Clean up DNS error printing so that a host name is always
9071c2aa98e2SPeter Wemm		included.
9072c2aa98e2SPeter Wemm	Remember to set $i during queue runs.  Reported by Stephen
9073c2aa98e2SPeter Wemm		Campbell of Dartmouth University.
9074c2aa98e2SPeter Wemm	If the environment variable HOSTALIASES is set, use it during
9075c2aa98e2SPeter Wemm		canonification as the name of a file with per-user host
9076c2aa98e2SPeter Wemm		translations so that headers are properly mapped.  Reported
9077c2aa98e2SPeter Wemm		by Anne Bennett of Concordia University.
9078c2aa98e2SPeter Wemm	Avoid printing misleading error message if SMTP mailer (not
9079c2aa98e2SPeter Wemm		using [IPC]) should die on a core dump.
9080c2aa98e2SPeter Wemm	Avoid incorrect diagnosis of "file 1 closed" when it is caused
9081c2aa98e2SPeter Wemm		by the other end closing the connection.  From
9082c2aa98e2SPeter Wemm		Dave Morrison of Oracle.
9083c2aa98e2SPeter Wemm	Improve several of the error messages printed by "mailq"
9084c2aa98e2SPeter Wemm		to include a host name or other useful information.
9085c2aa98e2SPeter Wemm	Add NetInfo preliminary support for NeXT systems.  From Vince
9086c2aa98e2SPeter Wemm		DeMarco.
9087c2aa98e2SPeter Wemm	Fix a glitch that sometimes caused :include:s that pointed to
9088c2aa98e2SPeter Wemm		NFS filesystems that were down to give an "aliasing/
9089c2aa98e2SPeter Wemm		forwarding loop broken" message instead of queueing
9090c2aa98e2SPeter Wemm		the message for retry.  Noted by William C Fenner of
9091c2aa98e2SPeter Wemm		the NRL Connection Machine Facility.
9092c2aa98e2SPeter Wemm	Fix a problem that could cause a core dump if the input sequence
9093c2aa98e2SPeter Wemm		had (or somehow acquired) a \231 character.
9094c2aa98e2SPeter Wemm	Make sure that route-addrs always have <angle brackets> around
9095c2aa98e2SPeter Wemm		them in non-SMTP envelopes (SMTP envelopes already do
9096c2aa98e2SPeter Wemm		this properly).
9097c2aa98e2SPeter Wemm	Avoid weird headers on unbalanced punctuation of the form:
9098c2aa98e2SPeter Wemm		``Joe User <user)'' -- this caused reference to the
9099c2aa98e2SPeter Wemm		null macro.  Fix from Rick McCarty of IO.COM.
9100c2aa98e2SPeter Wemm	Fix a problem that caused an alias "user: user@local.host" to
9101c2aa98e2SPeter Wemm		not have the QNOTREMOTE bit set; this caused configs
9102c2aa98e2SPeter Wemm		to act as if FEATURE(notsticky) was defined even when
9103c2aa98e2SPeter Wemm		it was not.  The effect of the problem was to make it
9104c2aa98e2SPeter Wemm		very hard to to set up satellite sites that had a few
9105c2aa98e2SPeter Wemm		local accounts, with everything else forwarded to a
9106c2aa98e2SPeter Wemm		corporate hub.  Reported by Detlef Drewanz of the
9107c2aa98e2SPeter Wemm		University of Rostock and Mark Frost of NCD.
9108c2aa98e2SPeter Wemm	Change queuing to not call rulesets 3, {1 or 2}, 4 on header
9109c2aa98e2SPeter Wemm		addresses.  This is more efficient (fewer name server
9110c2aa98e2SPeter Wemm		calls) and fixes certain unusual configurations, such
9111c2aa98e2SPeter Wemm		as those that have ruleset 4 do something that is
9112c2aa98e2SPeter Wemm		non-idempotent unless a mailer-specific ruleset did
9113c2aa98e2SPeter Wemm		something else.  Problem reported by Brian J. Coan
9114c2aa98e2SPeter Wemm		of the Institute for Global Communications.
9115c2aa98e2SPeter Wemm	Fix the "obsolete argument" routine in main to better understand
9116c2aa98e2SPeter Wemm		new arguments.  For example, if you used ``sendmail
9117c2aa98e2SPeter Wemm		-C config -v -q'' it would choke on the -q because
9118c2aa98e2SPeter Wemm		the -C would stop looking for old-format arguments.
9119c2aa98e2SPeter Wemm	Fix the code that was intended to allow two users to forward their
9120c2aa98e2SPeter Wemm		mail to the same program and have them appear unique.
9121c2aa98e2SPeter Wemm	Portability fixes for:
9122c2aa98e2SPeter Wemm		SCO UNIX from Murray Kucherawy.
9123c2aa98e2SPeter Wemm		SCO Open Server 3.2v4 from Philippe Brand.
9124c2aa98e2SPeter Wemm		System V Release 4 from Rick Ellis and others.
9125c2aa98e2SPeter Wemm		OSF/1 from Steve Campbell.
9126c2aa98e2SPeter Wemm		DG/UX from Ben Mesander of the USGS and Bryan Curnutt
9127c2aa98e2SPeter Wemm			of Stoner Associates.
9128c2aa98e2SPeter Wemm		Motorola SysV88 from Kevin Johnson of Motorola.
9129c2aa98e2SPeter Wemm		Solaris 2.3 from Casper H.S. Dik of the University
9130c2aa98e2SPeter Wemm			of Amsterdam and John Caruso of University
9131c2aa98e2SPeter Wemm			of Maryland.
9132c2aa98e2SPeter Wemm		FreeBSD from Ollivier Robert.
9133c2aa98e2SPeter Wemm		NetBSD from Adam Glass.
9134c2aa98e2SPeter Wemm		TitanOS from Kate Hedstrom of Rutgers University.
9135c2aa98e2SPeter Wemm		Irix from Bryan Curnutt.
9136c2aa98e2SPeter Wemm		Dynix from Jim Davis of the University of Arizona.
9137c2aa98e2SPeter Wemm		RISC/os.
9138c2aa98e2SPeter Wemm		Linux from John Kennedy of California State University
9139c2aa98e2SPeter Wemm			at Chico.
9140c2aa98e2SPeter Wemm		Solaris 2.x from Tony Boner of the U.S. Air Force.
9141c2aa98e2SPeter Wemm		NEXTSTEP 3.x from Vince DeMarco.
9142c2aa98e2SPeter Wemm		HP-UX from various people.  NOTA BENE:  the location
9143c2aa98e2SPeter Wemm			of the config file has moved to /usr/lib
9144c2aa98e2SPeter Wemm			to match the HP-UX version of sendmail.
9145c2aa98e2SPeter Wemm	CONFIG: Don't do any recipient rewriting on relay mailer;
9146c2aa98e2SPeter Wemm		since this is intended only for internal use, the
9147c2aa98e2SPeter Wemm		usual RFC 821/822/1123 rules can be relaxed.  The
9148c2aa98e2SPeter Wemm		main point of this is to avoid munging (ugh) UUCP
9149c2aa98e2SPeter Wemm		addresses when relaying internally.
9150c2aa98e2SPeter Wemm	CONFIG: fix typo in mailer/uucp.m4 that mutilates list:;
9151c2aa98e2SPeter Wemm		syntax addresses delivered via UUCP.  Solution
9152c2aa98e2SPeter Wemm		provided by Peter Wemm.
9153c2aa98e2SPeter Wemm	CONFIG: fix thumb-fumble in default UUCP relaying in ruleset
9154c2aa98e2SPeter Wemm		zero; it caused double @ signs in addresses.  From
9155c2aa98e2SPeter Wemm		Irving Reid of the University of Toronto.
9156c2aa98e2SPeter Wemm	CONFIG: Portability fixes for SCO Unix 3.2 with TCP/IP 1.2.1
9157c2aa98e2SPeter Wemm		from Markku Toijala of ICL Personal Systems Oy.
9158c2aa98e2SPeter Wemm	CONFIG: Add trailing "." on pseudo-domains for consistency;
9159c2aa98e2SPeter Wemm		this fixes a problem (noted by Al Whaley of Sunnyside)
9160c2aa98e2SPeter Wemm		that made it hard to recognize your own pseudodomain
9161c2aa98e2SPeter Wemm		names.
9162c2aa98e2SPeter Wemm	CONFIG: catch "@host" syntax errors (i.e., null local-parts)
9163c2aa98e2SPeter Wemm		rather than letting them get "local configuration
9164c2aa98e2SPeter Wemm		error"s.  Problem noted by John Gardiner Myers.
9165c2aa98e2SPeter Wemm	CONFIG: add uucp-uudom mailer variant, based on code posted
9166c2aa98e2SPeter Wemm		by Spider Boardman <spider@Orb.Nashua.NH.US>; this
9167c2aa98e2SPeter Wemm		has uucp-dom semantics but old UUCP syntax.  This
9168c2aa98e2SPeter Wemm		also permits "uucp-old" as an alias for "uucp" and
9169c2aa98e2SPeter Wemm		"uucp-new" as a synonym for "suucp" for consistency.
9170c2aa98e2SPeter Wemm	CONFIG: add POP mailer support (from Kimmo Suominen
9171c2aa98e2SPeter Wemm		<kim@grendel.lut.fi>).
9172c2aa98e2SPeter Wemm	CONFIG: drop CSNET_RELAY support -- CSNET is long gone.
9173c2aa98e2SPeter Wemm	CONFIG: fix bug caused with domain literal addresses (e.g.,
9174c2aa98e2SPeter Wemm		``[128.32.131.12]'') when FEATURE(allmasquerade)
9175c2aa98e2SPeter Wemm		was set; it would get an additional @masquerade.host
9176c2aa98e2SPeter Wemm		added to the address.  Problem noted by Peter Wan
9177c2aa98e2SPeter Wemm		of Georgia Tech.
9178c2aa98e2SPeter Wemm	CONFIG: make sure that the local UUCP name is in $=w.  From
9179c2aa98e2SPeter Wemm		Jim Murray of Stratus.
9180c2aa98e2SPeter Wemm	CONFIG: changes to UUCP rewriting to simulate IDA-style "V"
9181c2aa98e2SPeter Wemm		mailer flag.  Briefly, if you are sending to host
9182c2aa98e2SPeter Wemm		"foo", then it rewrites "foo!...!baz" to "...!baz",
9183c2aa98e2SPeter Wemm		"foo!baz" remains "foo!baz", and anything else has
9184c2aa98e2SPeter Wemm		the local name prepended.
9185c2aa98e2SPeter Wemm	CONFIG: portability fixes for HP-UX.
9186c2aa98e2SPeter Wemm	DOC: several minor problems fixed in the Install & Op Guide.
9187c2aa98e2SPeter Wemm	MAKEMAP: fix core dump problem on lines that are too long or
9188c2aa98e2SPeter Wemm		which lack newline.  From Mark Delany.
9189c2aa98e2SPeter Wemm	MAILSTATS: print sums of columns (total messages & kbytes
9190c2aa98e2SPeter Wemm		in and out of the system).  From Tom Ferrin of UC
9191c2aa98e2SPeter Wemm		San Francisco Computer Graphics Lab.
9192c2aa98e2SPeter Wemm	SIGNIFICANT USER- OR SYSAD-VISIBLE CHANGES:
9193c2aa98e2SPeter Wemm		On HP-UX, /etc/sendmail.cf has been moved to
9194c2aa98e2SPeter Wemm			/usr/lib/sendmail.cf to match HP sendmail.
9195c2aa98e2SPeter Wemm		Permissions have been tightened up on world-writable
9196c2aa98e2SPeter Wemm			:include: files and accounts that have shells
9197c2aa98e2SPeter Wemm			that are not listed in /etc/shells.  This may
9198c2aa98e2SPeter Wemm			cause some .forward files that have worked
9199c2aa98e2SPeter Wemm			before to start failing.
9200c2aa98e2SPeter Wemm		SIGUSR1 dumps some state to the log.
9201c2aa98e2SPeter Wemm	NEW FILES:
9202c2aa98e2SPeter Wemm		src/Makefile.DGUX
9203c2aa98e2SPeter Wemm		src/Makefile.Dynix
9204c2aa98e2SPeter Wemm		src/Makefile.FreeBSD
9205c2aa98e2SPeter Wemm		src/Makefile.Mach386
9206c2aa98e2SPeter Wemm		src/Makefile.NetBSD
9207c2aa98e2SPeter Wemm		src/Makefile.RISCos
9208c2aa98e2SPeter Wemm		src/Makefile.SCO
9209c2aa98e2SPeter Wemm		src/Makefile.SVR4
9210c2aa98e2SPeter Wemm		src/Makefile.Titan
9211c2aa98e2SPeter Wemm		cf/mailer/pop.m4
9212c2aa98e2SPeter Wemm		cf/ostype/bsdi1.0.m4
9213c2aa98e2SPeter Wemm		cf/ostype/dgux.m4
9214c2aa98e2SPeter Wemm		cf/ostype/dynix3.2.m4
9215c2aa98e2SPeter Wemm		cf/ostype/sco3.2.m4
9216c2aa98e2SPeter Wemm		makemap/Makefile.dist
9217c2aa98e2SPeter Wemm		praliases/Makefile.dist
9218c2aa98e2SPeter Wemm
921906f25ae9SGregory Neil Shapiro8.6.4/8.6.4	1993/10/31
9220c2aa98e2SPeter Wemm	Repair core-dump problem (write to read-only memory segment)
9221c2aa98e2SPeter Wemm		if you fall back to the return-to-Postmaster case in
9222c2aa98e2SPeter Wemm		savemail.  Problem reported by Richard Liu.
9223c2aa98e2SPeter Wemm	Immediately diagnose bogus sender addresses in SMTP.  This
9224c2aa98e2SPeter Wemm		makes quite certain that crackers can't use this
9225c2aa98e2SPeter Wemm		class of attack.
9226c2aa98e2SPeter Wemm	Reliability Fix:  check return value from fclose() and fsync()
9227c2aa98e2SPeter Wemm		in a few critical places.
9228c2aa98e2SPeter Wemm	Minor problem in initsys() that reversed a condition for
9229c2aa98e2SPeter Wemm		redirecting the output channel on queue runs.  It's
9230c2aa98e2SPeter Wemm		not clear this code even does anything.  From Eric
9231c2aa98e2SPeter Wemm		Wassenaar of the Dutch National Institute for Nuclear
9232c2aa98e2SPeter Wemm		and High-Energy Physics.
9233c2aa98e2SPeter Wemm	Fix some problems that caused queue runs to do "too much work",
9234c2aa98e2SPeter Wemm		such as double-reading the Errors-To: header.  From
9235c2aa98e2SPeter Wemm		Eric Wassenaar.
9236c2aa98e2SPeter Wemm	Error messages on writing the temporary file (including the
9237c2aa98e2SPeter Wemm		data file) were getting suppressed in SMTP -- this
9238c2aa98e2SPeter Wemm		fix causes them to be properly reported.  From Eric
9239c2aa98e2SPeter Wemm		Wassenaar.
9240c2aa98e2SPeter Wemm	Some changes to support AF_UNIX sockets -- this will only
9241c2aa98e2SPeter Wemm		really become relevant in the next release, but some
9242c2aa98e2SPeter Wemm		people need it for local patches.  From Michael
9243c2aa98e2SPeter Wemm		Corrigan of UC San Diego.
9244c2aa98e2SPeter Wemm	Use dynamically allocated memory (instead of static buffers)
9245c2aa98e2SPeter Wemm		for macros defined in initsys() and settime(); since
9246c2aa98e2SPeter Wemm		these can have different values depending on which
9247c2aa98e2SPeter Wemm		envelope they are in.  From Eric Wassenaar.
9248c2aa98e2SPeter Wemm	Improve logging to show ctladdr on to= logging; this tells you
9249c2aa98e2SPeter Wemm		what uid/gid processes ran as.
9250c2aa98e2SPeter Wemm	Fix a problem that caused error messages to be discarded if
9251c2aa98e2SPeter Wemm		the sender address was unparseable for some reason;
9252c2aa98e2SPeter Wemm		this was supposed to fall back to the "return to
9253c2aa98e2SPeter Wemm		postmaster" case.
9254c2aa98e2SPeter Wemm	Improve aliaswait backoff algorithm.
9255c2aa98e2SPeter Wemm	Portability patches for Linux (8.6.3 required another header
9256c2aa98e2SPeter Wemm		file) (from Karl London) and SCO UNIX.
9257c2aa98e2SPeter Wemm	CONFIG: patch prog mailer to not strip host name off of envelope
9258c2aa98e2SPeter Wemm		addresses (so that it matches local again).  From
9259c2aa98e2SPeter Wemm		Christopher Davis.
9260c2aa98e2SPeter Wemm	CONFIG: change uucp-dom mailer so that "<>" translates to $n;
9261c2aa98e2SPeter Wemm		this prevents uux from seeing lines with null names like
9262c2aa98e2SPeter Wemm		``From   Sat Oct 30 14:55:31 1993''.  From Motonori
9263c2aa98e2SPeter Wemm		Nakamura of Kyoto University.
9264c2aa98e2SPeter Wemm	CONFIG: handle <list:;> syntax correctly.  This isn't legal, but
9265c2aa98e2SPeter Wemm		it shouldn't fail miserably.  From Motonori Nakamura.
9266c2aa98e2SPeter Wemm
926706f25ae9SGregory Neil Shapiro8.6.2/8.6.2	1993/10/15
9268c2aa98e2SPeter Wemm	Put a "successful delivery" message in the transcript for
9269c2aa98e2SPeter Wemm		addresses that get return-receipts.
9270c2aa98e2SPeter Wemm	Put a prominent "this is only a warning" message in warning
9271c2aa98e2SPeter Wemm		messages -- some people don't read carefully enough
9272c2aa98e2SPeter Wemm		and end up sending the message several times.
9273c2aa98e2SPeter Wemm	Include reason for temporary failure in the "warning" return
9274c2aa98e2SPeter Wemm		message.  Currently, it just says "cannot send for
9275c2aa98e2SPeter Wemm		four hours".
9276c2aa98e2SPeter Wemm	Fix the "Original message received" time generated for
9277c2aa98e2SPeter Wemm		returntosender messages.  It was previously listed as
9278c2aa98e2SPeter Wemm		the current time.  Bug reported by Eric Hagberg of
9279c2aa98e2SPeter Wemm		Cornell University Medical College.
9280c2aa98e2SPeter Wemm	If there is an error when writing the body of a message,
9281c2aa98e2SPeter Wemm		don't send the trailing dot and wait for a response
9282c2aa98e2SPeter Wemm		in sender SMTP, as this could cause the connection to
9283c2aa98e2SPeter Wemm		hang up under some bizarre circumstances.  From Eric
9284c2aa98e2SPeter Wemm		Wassenaar.
9285c2aa98e2SPeter Wemm	Fix some server SMTP synchronization problems caused when
9286c2aa98e2SPeter Wemm		connections fail during message collection.  From
9287c2aa98e2SPeter Wemm		Eric Wassenaar.
9288c2aa98e2SPeter Wemm	Fix a problem that can cause srvrsmtp to reject mail if the
9289c2aa98e2SPeter Wemm		name server is down -- it accepts the RCPT but rejects
9290c2aa98e2SPeter Wemm		the DATA command.  Problem reported by Jim Murray of
9291c2aa98e2SPeter Wemm		Stratus.
9292c2aa98e2SPeter Wemm	Fix a problem that can cause core dumps if the config file
9293c2aa98e2SPeter Wemm		incorrectly resolves to a null hostname.  Reported by
9294c2aa98e2SPeter Wemm		Allan Johannesen of WPI.
9295c2aa98e2SPeter Wemm	Non-root use of -C flag, dangerous -f flags, and use of -oQ
9296c2aa98e2SPeter Wemm		by non-root users were not put into
9297c2aa98e2SPeter Wemm		X-Authentication-Warning:s as intended because the
92982e43090eSPeter Wemm		config file hadn't set the PrivacyOptions yet.  Fix
9299c2aa98e2SPeter Wemm		from Sven-Ove Westberg of the University of Lulea.
9300c2aa98e2SPeter Wemm	Under very odd circumstances, the alias file rebuild code
9301c2aa98e2SPeter Wemm		could get confused as to whether a database was
9302c2aa98e2SPeter Wemm		open or not.
9303c2aa98e2SPeter Wemm	Check "vendor code" on the end of V lines -- this is
9304c2aa98e2SPeter Wemm		intended to provide a hook for vendor-specific
9305c2aa98e2SPeter Wemm		configuration syntax.  (This is a "new feature",
9306c2aa98e2SPeter Wemm		but I've made an exception to my rule in a belief
9307c2aa98e2SPeter Wemm		that this is a highly exceptional case.)
9308c2aa98e2SPeter Wemm	Portability fixes for DG/UX (from Douglas Anderson of NCSC),
9309c2aa98e2SPeter Wemm		SCO Unix (from Murray Kucherawy), A/UX, and OSF/1
9310c2aa98e2SPeter Wemm		(from Jon Forrest of UC Berkeley)
9311c2aa98e2SPeter Wemm	CONFIG: fix ``mailer:host'' form of UUCP relay naming.
9312c2aa98e2SPeter Wemm
931306f25ae9SGregory Neil Shapiro8.6.1/8.6	1993/10/08
9314c2aa98e2SPeter Wemm	Portability fixes for A/UX and Encore UMAX V.
9315c2aa98e2SPeter Wemm	Fix error message handling -- if you had a name server down
9316c2aa98e2SPeter Wemm		causing an error during parsing, that message was never
9317c2aa98e2SPeter Wemm		propagated to the queue file.
9318c2aa98e2SPeter Wemm
931906f25ae9SGregory Neil Shapiro8.6/8.6		1993/10/05
9320c2aa98e2SPeter Wemm	Configuration cleanup: make it easier to undo IDENTPROTO in
9321c2aa98e2SPeter Wemm		conf.h (other systems have the same bug).
9322c2aa98e2SPeter Wemm	If HASGETDTABLESIZE and _SC_OPEN_MAX are both defined, assume
9323c2aa98e2SPeter Wemm		getdtablesize() instead of sysconf(); a disturbingly
9324c2aa98e2SPeter Wemm		large number of systems defined _SC_OPEN_MAX in the
9325c2aa98e2SPeter Wemm		header files but don't have the syscall.
9326c2aa98e2SPeter Wemm	Another patch to really truly ignore MX records in getcanonname
9327c2aa98e2SPeter Wemm		if trymx == FALSE.
9328c2aa98e2SPeter Wemm	Fix problem that caused the "250 IAA25499 Message accepted for
9329c2aa98e2SPeter Wemm		delivery" message to be omitted if there was an error
9330c2aa98e2SPeter Wemm		in the header of the message (e.g., a bad Errors-To:
9331c2aa98e2SPeter Wemm		line).  Pointed out by Michael Corrigan of UCSD.
9332c2aa98e2SPeter Wemm	Announce name of host we are chatting when we get errors; this
9333c2aa98e2SPeter Wemm		is an IDA-ism suggested by Christophe Wolfhugel.
9334c2aa98e2SPeter Wemm	Portability fixes for Alpha OSF/1 (from Anthony Baxter of the
9335c2aa98e2SPeter Wemm		Australian Artificial Intelligence Institute), SCO Unix
9336c2aa98e2SPeter Wemm		(from Murray Kucherawy of Hookup Communication Corp.),
9337c2aa98e2SPeter Wemm		NeXT (from Vince DeMarco and myself), Linux (from
9338c2aa98e2SPeter Wemm		Karl London <karl@borg.demon.co.uk>), BSDI (from
9339c2aa98e2SPeter Wemm		Christophe Wolfhugel, and SVR4 on Dell (from Kimmo
9340c2aa98e2SPeter Wemm		Suominen), AUX 3.0 on Macintosh, and ANSI C compilers.
9341c2aa98e2SPeter Wemm	Some changes to get around gcc optimizer bugs.  From Takahiro
9342c2aa98e2SPeter Wemm		Kanbe.
9343c2aa98e2SPeter Wemm	Fix error recovery in queueup if another tf file of the same
9344c2aa98e2SPeter Wemm		name already exists.  Problem stumbled over by Bill
9345c2aa98e2SPeter Wemm		Wisner of The Well.
9346c2aa98e2SPeter Wemm	Output YP_MASTER_NAME and YP_LAST_MODIFIED without null bytes.
9347c2aa98e2SPeter Wemm		Problem noted by Keith McMillan of Ameritech Services.
9348c2aa98e2SPeter Wemm	Deal with group permissions properly when opening .forward and
9349c2aa98e2SPeter Wemm		:include: files.  This relaxes the 8.1C restrictions
9350c2aa98e2SPeter Wemm		slightly more.  This includes proper setting of groups
9351c2aa98e2SPeter Wemm		when reading :include: files, allowing you to read some
9352c2aa98e2SPeter Wemm		files that you should be able to read but have previously
9353c2aa98e2SPeter Wemm		been denied unless you owned them or they had "other"
9354c2aa98e2SPeter Wemm		read permission.
9355c2aa98e2SPeter Wemm	Make certain that $j is in $=w (after the .cf is read) so that
9356c2aa98e2SPeter Wemm		if the user is forced to override some silly system,
9357c2aa98e2SPeter Wemm		MX suppression will still work.
9358c2aa98e2SPeter Wemm	Fix a couple of efficiency problems where newstr was double-
9359c2aa98e2SPeter Wemm		calling expensive routines.  In at least one case, it
9360c2aa98e2SPeter Wemm		wasn't guaranteed that they would always return the
9361c2aa98e2SPeter Wemm		same result.  Problem noted by Christophe Wolfhugel.
9362c2aa98e2SPeter Wemm	Fix null pointer dereference in putoutmsg -- only on an error
9363c2aa98e2SPeter Wemm		condition from a non-SMTP mailer.  From Motonori
9364c2aa98e2SPeter Wemm		Nakamura.
9365c2aa98e2SPeter Wemm	Macro expand "C" line class definitions before scanning so that
9366c2aa98e2SPeter Wemm		"CX $Z" works.
9367c2aa98e2SPeter Wemm	Fix problem that caused error message to be sent while still
9368c2aa98e2SPeter Wemm		trying to send the original message if the connection
9369c2aa98e2SPeter Wemm		is closed during a DATA command after getting an error
9370c2aa98e2SPeter Wemm		on an RCPT command (pretty obscure).  Problem reported
9371c2aa98e2SPeter Wemm		by John Myers of CMU.
9372c2aa98e2SPeter Wemm	Fix reply to NOOP to be 250 instead of 200 -- this is a long
9373c2aa98e2SPeter Wemm		term bug.
9374c2aa98e2SPeter Wemm	Fix a nasty bug causing core dumps when returning the "warning:
9375c2aa98e2SPeter Wemm		cannot deliver for N hours -- will keep trying" message;
93762e43090eSPeter Wemm		it only occurred if you had PostmasterCopy set and
9377c2aa98e2SPeter Wemm		only on some architectures.  Although sendmail would
9378c2aa98e2SPeter Wemm		keep trying, it would send error messages on each
9379c2aa98e2SPeter Wemm		queue interval.  This is an important fix.
9380c2aa98e2SPeter Wemm	Allow u and g options to take user and group names respectively.
9381c2aa98e2SPeter Wemm	Don't do a chdir into the queue directory in -bt mode to make
9382c2aa98e2SPeter Wemm		ruleset testing a bit easier.
9383c2aa98e2SPeter Wemm	Don't allow users to turn off logging (using -oL) on the command
9384c2aa98e2SPeter Wemm		line -- command line can only raise, not lower, logging
9385c2aa98e2SPeter Wemm		level.
9386c2aa98e2SPeter Wemm	Set $u to the original recipient on the SMTP transaction or on
9387c2aa98e2SPeter Wemm		the command line.  This is only done if there is exactly
9388c2aa98e2SPeter Wemm		one recipient.  Technically, this does not meet the
9389c2aa98e2SPeter Wemm		specs, because it does not guarantee a domain on the
9390c2aa98e2SPeter Wemm		address.
9391c2aa98e2SPeter Wemm	Fix a problem that dumped error messages on bad addresses if
9392c2aa98e2SPeter Wemm		you used the -t flag.  Problem noted by Josh Smith of
9393c2aa98e2SPeter Wemm		Harvey Mudd College.
9394c2aa98e2SPeter Wemm	Given an address such as ``<foo> <bar>'', auto-quote the first
9395c2aa98e2SPeter Wemm		``<foo>'' part, giving ``"<foo>" <bar>''.  This is to
9396c2aa98e2SPeter Wemm		avoid the problem of people who use angle brackets in
9397c2aa98e2SPeter Wemm		their full name information.
9398c2aa98e2SPeter Wemm	Fix a null pointer dereference if you set option "l", have
9399c2aa98e2SPeter Wemm		an Errors-To: header in the message, and have Errors-To:
9400c2aa98e2SPeter Wemm		defined in the config file H lines.  From J.R. Oldroyd.
9401c2aa98e2SPeter Wemm	Put YPCOMPAT on #ifdef NIS instead -- it's one less thing to get
9402c2aa98e2SPeter Wemm		wrong when compiling.  Suggested by Rick McCarty of TI.
9403c2aa98e2SPeter Wemm	Fix a problem that could pass negative SIZE parameter if the
9404c2aa98e2SPeter Wemm		df file got lost; this would cause servers to always
9405c2aa98e2SPeter Wemm		give a temporary failure, making the problem even worse.
9406c2aa98e2SPeter Wemm		Problem noted by Allan Johannesen of WPI.
9407c2aa98e2SPeter Wemm	Add "ident" timeout (one of the "r" option selectors) for IDENT
9408c2aa98e2SPeter Wemm		protocol timeouts (30s default).  Requested by Murray
9409c2aa98e2SPeter Wemm		Kucherawy of HookUp Communication Corp. to handle bogus
9410c2aa98e2SPeter Wemm		PC TCP/IP implementations.
9411c2aa98e2SPeter Wemm	Change $w default definition to be just the first component of
9412c2aa98e2SPeter Wemm		the domain name on config level 5.  The $j macro defaults
9413c2aa98e2SPeter Wemm		to the FQDN; $m remains as before.  This lets well-behaved
9414c2aa98e2SPeter Wemm		config files use any of the short, long, or subdomain
9415c2aa98e2SPeter Wemm		names.
9416c2aa98e2SPeter Wemm	Add makesendmail script in src to try to automate multi-architecture
9417c2aa98e2SPeter Wemm		builds.  I know, this is sub-optimal, but it is still
9418c2aa98e2SPeter Wemm		helpful.
9419c2aa98e2SPeter Wemm	Fix very obscure race condition that can cause a queue run to
9420c2aa98e2SPeter Wemm		get a queue file for an already completed job.  This
9421c2aa98e2SPeter Wemm		problem has existed for years.  Problem noted by the
9422c2aa98e2SPeter Wemm		long suffering Allan Johannesen of WPI.
9423c2aa98e2SPeter Wemm	Fix a problem that caused the raw sender name to be passed to
9424c2aa98e2SPeter Wemm		udbsender instead of the canonified name -- this caused
9425c2aa98e2SPeter Wemm		it to sometimes miss records that it should have found.
9426c2aa98e2SPeter Wemm	Relax check of name on HELO packet so that a program using -bs
9427c2aa98e2SPeter Wemm		that claims to be itself works properly.
9428c2aa98e2SPeter Wemm	Restore rewriting of $: part of address through 2, R, 4 in
9429c2aa98e2SPeter Wemm		buildaddr -- this requires passing a lot of flags to get
9430c2aa98e2SPeter Wemm		it right.  Unlike old versions, this ONLY rewrites
9431c2aa98e2SPeter Wemm		recipient addresses, not sender addresses.
9432c2aa98e2SPeter Wemm	Fix a bug that caused core dumps in config files that cannot
9433c2aa98e2SPeter Wemm		resolve /file/name style addresses.  Fix from Jonathan
9434c2aa98e2SPeter Wemm		Kamens of OpenVision Technologies.
9435c2aa98e2SPeter Wemm	Fix problem with fcntl locking that can cause error returns to
9436c2aa98e2SPeter Wemm		be lost if the lock is lost; this required fully
9437c2aa98e2SPeter Wemm		queueing everything, dropping the envelope (so errors
9438c2aa98e2SPeter Wemm		would get returned), and then re-reading the queue from
9439c2aa98e2SPeter Wemm		scratch.
9440c2aa98e2SPeter Wemm	Fix a problem that caused aliases that redefine an otherwise
9441c2aa98e2SPeter Wemm		true address to still send to the original address
9442c2aa98e2SPeter Wemm		if and only if the alias failed in certain bizarre
9443c2aa98e2SPeter Wemm		ways (e.g, if they pointed at a list:; syntax address).
9444c2aa98e2SPeter Wemm		Problem pointed out by Jonathan Kamens.
9445c2aa98e2SPeter Wemm	Remove support for frozen configuration files.  They caused
9446c2aa98e2SPeter Wemm		more trouble than it was worth.
9447c2aa98e2SPeter Wemm	Fix problem that can cause error messages to get ignored when
9448c2aa98e2SPeter Wemm		using both -odb and -t flags.  Problem noted by Rob
9449c2aa98e2SPeter Wemm		McNicholas at U.C. Berkeley.
9450c2aa98e2SPeter Wemm	Include all "normal" variations on hostname in $=w.  For example,
9451c2aa98e2SPeter Wemm		if the host name is vangogh.cs.berkeley.edu, $=w will
9452c2aa98e2SPeter Wemm		contain vangogh, vangogh.cs, and vangogh.cs.berkeley.edu.
9453c2aa98e2SPeter Wemm	Add "restrictqrun" privacy flag -- without this, anyone can run
9454c2aa98e2SPeter Wemm		the queue.
9455c2aa98e2SPeter Wemm	Reset SmtpPhase global on initial connection creation so that
9456c2aa98e2SPeter Wemm		messages don't come out with stale information.
9457c2aa98e2SPeter Wemm	Pass an "ext" argument to lockfile so that error/log messages
9458c2aa98e2SPeter Wemm		will properly reflect the true filename being locked.
9459c2aa98e2SPeter Wemm	Put all [...] address forms into $=w -- this eliminates the need
9460c2aa98e2SPeter Wemm		for MAXIPADDR in conf.h.  Suggested by John Gardiner
9461c2aa98e2SPeter Wemm		Myers of CMU.
9462c2aa98e2SPeter Wemm	Fix a bug that can cause qf files to be left around even after
9463c2aa98e2SPeter Wemm		an SMTP RSET command.  Problem and fix from Michael
9464c2aa98e2SPeter Wemm		Corrigan.
94652e43090eSPeter Wemm	Don't send a PostmasterCopy to errors when the Precedence: is
9466c2aa98e2SPeter Wemm		negative.  Error reports still go to the envelope
9467c2aa98e2SPeter Wemm		sender address.
9468c2aa98e2SPeter Wemm	Add LA_SHORT for load averages.
9469c2aa98e2SPeter Wemm	Lock sendmail.st file when posting statistics.
9470c2aa98e2SPeter Wemm	Add "SendBufSize" and "RcvBufSize" suboptions to "O" option to
9471c2aa98e2SPeter Wemm		set the size of the TCP send and receive buffers; if you
9472c2aa98e2SPeter Wemm		run over a slow slip line you may need to set these down
9473c2aa98e2SPeter Wemm		(although it would be better to fix the SLIP implementation
9474c2aa98e2SPeter Wemm		so that it's not necessary to recompile every program
9475c2aa98e2SPeter Wemm		that does bulk data transfer).
9476c2aa98e2SPeter Wemm	Allow null defaults on $( ... $) lookups.  Problem reported by
9477c2aa98e2SPeter Wemm		Amir Plivatsky.
9478c2aa98e2SPeter Wemm	Diagnose crufty S and V config lines.  This resulted from an
9479c2aa98e2SPeter Wemm		observation that some people were using the SITE macro
9480c2aa98e2SPeter Wemm		without the SITECONFIG macro first, which was causing
9481c2aa98e2SPeter Wemm		bogus config files that were not caught.
9482c2aa98e2SPeter Wemm	Fix makemap -f flag to turn off case folding (it was turning it
9483c2aa98e2SPeter Wemm		on instead).  THIS IS A USER VISIBLE CHANGE!!!
9484c2aa98e2SPeter Wemm	Fix a problem that caused multiple error messages to be sent if
9485c2aa98e2SPeter Wemm		you used "sendmail -t -oem -odb", your system uses fcntl
9486c2aa98e2SPeter Wemm		locking, and one of the recipient addresses is unknown.
9487c2aa98e2SPeter Wemm	Reset uid earlier in include() so that recursive .forwards or
9488c2aa98e2SPeter Wemm		:include:s don't use the wrong uid.
9489c2aa98e2SPeter Wemm	If file descriptor 0, 1, or 2 was closed when sendmail was
9490c2aa98e2SPeter Wemm		called, the code to recover the descriptor was broken.
9491c2aa98e2SPeter Wemm		This sometimes (only sometimes) caused problems with the
9492c2aa98e2SPeter Wemm		alias file.  Fix from Motonori Nakamura.
9493c2aa98e2SPeter Wemm	Fix a problem that caused aliaswait to go into infinite recursion
9494c2aa98e2SPeter Wemm		if the @:@ metasymbol wasn't found in the alias file.
9495c2aa98e2SPeter Wemm	Improve error message on newaliases if database files cannot be
9496c2aa98e2SPeter Wemm		opened or if running with no database format defined.
9497c2aa98e2SPeter Wemm	Do a better estimation of the size of error messages when NoReturn
9498c2aa98e2SPeter Wemm		is set.  Problem noted by P{r (Pell) Emanuelsson.
9499c2aa98e2SPeter Wemm	Fix a problem causing the "c" option (don't connect to expensive
9500c2aa98e2SPeter Wemm		mailers) to be ignored in SMTP.  Problem noted and the
9501c2aa98e2SPeter Wemm		solution suggested by Robert Elz of The University of
9502c2aa98e2SPeter Wemm		Melbourne.
9503c2aa98e2SPeter Wemm	Improve connection caching algorithm by passing "[host]" to
9504c2aa98e2SPeter Wemm		hostsignature, which strips the square brackets and
9505c2aa98e2SPeter Wemm		returns the real name.  This allows mailertable entries
9506c2aa98e2SPeter Wemm		to match regular entries.
9507c2aa98e2SPeter Wemm	Re-enable Return-Receipt-To: -- people seem to want this stupid
9508c2aa98e2SPeter Wemm		feature, even if it doesn't work right.
9509c2aa98e2SPeter Wemm	Catch and log attempts to try the "wiz" command in server SMTP.
9510c2aa98e2SPeter Wemm		This also ups the log level from LOG_NOTICE to LOG_CRIT.
9511c2aa98e2SPeter Wemm	Be more generous at assigning $z to the home directory -- do this
9512c2aa98e2SPeter Wemm		for programs that are specified through a .forward file.
9513c2aa98e2SPeter Wemm		Fix from Andrew Chang of Sun Microsystems.
9514c2aa98e2SPeter Wemm	Always save a fatal error message in preference to a non-fatal
9515c2aa98e2SPeter Wemm		error message so that the "subject" line of return
9516c2aa98e2SPeter Wemm		messages is the best possible.
9517c2aa98e2SPeter Wemm	CONFIG: reduce the number of quotes needed to quote configuration
9518c2aa98e2SPeter Wemm		parameters with commas: two quotes should work now, e.g.,
9519c2aa98e2SPeter Wemm		define(ALIAS_FILE, ``/etc/aliases,/etc/aliases.local'').
9520c2aa98e2SPeter Wemm	CONFIG: class $=Z is a set of UUCP hosts that use uucp-dom
9521c2aa98e2SPeter Wemm		connections (domain-ized UUCP).
9522c2aa98e2SPeter Wemm	CONFIG: fix bug in default maps (-o must be before database file
9523c2aa98e2SPeter Wemm		name).  Pointed out by Christophe Wolfhugel.
9524c2aa98e2SPeter Wemm	CONFIG: add FEATURE(nodns) to state that we are not relying on
9525c2aa98e2SPeter Wemm		DNS.  This would presumably be used in UUCP islands.
9526c2aa98e2SPeter Wemm	CONFIG: add OSTYPE(nextstep) and OSTYPE(linux).
9527c2aa98e2SPeter Wemm	CONFIG: log $u in Received: line.  This is in technical violation
9528c2aa98e2SPeter Wemm		of the standards, since it doesn't guarantee a domain
9529c2aa98e2SPeter Wemm		on the address.
9530c2aa98e2SPeter Wemm	CONFIG: don't assume "m" in local mailer flags -- this means that
9531c2aa98e2SPeter Wemm		if you redefine LOCAL_MAILER_FLAGS you will have to include
9532c2aa98e2SPeter Wemm		the "m" flag should you want it.  Apparently some Solaris 2.2
9533c2aa98e2SPeter Wemm		installations can't handle multiple local recipients.
9534c2aa98e2SPeter Wemm		Problem noted by Josh Smith.
9535c2aa98e2SPeter Wemm	CONFIG: add confDOMAIN_NAME to set $j (if undefined, $j defaults).
9536c2aa98e2SPeter Wemm	CONFIG: change default version level from 4 to 5.
9537c2aa98e2SPeter Wemm	CONFIG: add FEATURE(nullclient) to create a config file that
9538c2aa98e2SPeter Wemm		forwards all mail to a hub without ever looking at the
9539c2aa98e2SPeter Wemm		addresses in any detail.
9540c2aa98e2SPeter Wemm	CONFIG: properly strip mailer: information off of relays when
9541c2aa98e2SPeter Wemm		used to change .BITNET form into %-hack form.
9542c2aa98e2SPeter Wemm	CONFIG: fix a problem that caused infinite loops if presented
9543c2aa98e2SPeter Wemm		with an address such as "!foo".
9544c2aa98e2SPeter Wemm	CONFIG: check for self literal (e.g., [128.32.131.12]) even if
9545c2aa98e2SPeter Wemm		the reverse "PTR" mapping is broken.  There's a better
9546c2aa98e2SPeter Wemm		way to do this, but the change is fairly major and I
9547c2aa98e2SPeter Wemm		want to hold it for another release.  Problem noted by
9548c2aa98e2SPeter Wemm		Bret Marquis.
9549c2aa98e2SPeter Wemm
955006f25ae9SGregory Neil Shapiro8.5/8.5		1993/07/23
9551c2aa98e2SPeter Wemm	Serious bug: if you used a command line recipient that was unknown
9552c2aa98e2SPeter Wemm		sendmail would not send a return message (it was treating
9553c2aa98e2SPeter Wemm		everything as though it had an SMTP-style client that
9554c2aa98e2SPeter Wemm		would do the return itself).  Problem noted by Josh Smith.
9555c2aa98e2SPeter Wemm	Change "trymx" option in getcanonname() to ignore all MX data,
9556c2aa98e2SPeter Wemm		even during a T_ANY query.  This actually didn't break
9557c2aa98e2SPeter Wemm		anything, because the only time you called getcanonname
9558c2aa98e2SPeter Wemm		with !trymx was if you already knew there were no MX
9559c2aa98e2SPeter Wemm		records, but it is somewhat cleaner.  From Motonori
9560c2aa98e2SPeter Wemm		Nakamura.
9561c2aa98e2SPeter Wemm	Don't call getcanonname from getmxrr if you already know there
9562c2aa98e2SPeter Wemm		are no DNS records matching the name.
9563c2aa98e2SPeter Wemm	Fix a problem causing error messages to always include "The
9564c2aa98e2SPeter Wemm		original message was received ... from localhost".
9565c2aa98e2SPeter Wemm		The correct original host information is now included.
9566c2aa98e2SPeter Wemm	Previous change to cf/sh/makeinfo.sh doesn't port to Ultrix (their
9567c2aa98e2SPeter Wemm		version of "test" doesn't have the -x flag).  Change it
9568c2aa98e2SPeter Wemm		to use -f instead.  From John Myers.
9569c2aa98e2SPeter Wemm	CONFIG: 8.4 mistakenly set the default SMTP-style mailer to
9570c2aa98e2SPeter Wemm		esmtp -- it should be smtp.
9571c2aa98e2SPeter Wemm	CONFIG: send all relayed mail using confRELAY_MAILER (defaults
9572c2aa98e2SPeter Wemm		to "relay" (a variant of "smtp") if MAILER(smtp) is used,
9573c2aa98e2SPeter Wemm		else "suucp" if MAILER(uucp) is used, else "unknown");
9574c2aa98e2SPeter Wemm		this cleans up the configs somewhat.  This fixes a serious
9575c2aa98e2SPeter Wemm		problem that caused route-addrs to get mistaken as relays,
9576c2aa98e2SPeter Wemm		pointed out by John Myers.  WARNING: this also causes
9577c2aa98e2SPeter Wemm		the default on SMART_HOST to change from "suucp" to
9578c2aa98e2SPeter Wemm		"relay" if you have MAILER(smtp) specified.
9579c2aa98e2SPeter Wemm
958006f25ae9SGregory Neil Shapiro8.4/8.4		1993/07/22
9581c2aa98e2SPeter Wemm	Add option `w'.  If you receive a message that comes to you because
9582c2aa98e2SPeter Wemm		you are the best (lowest preference) target of an MX, and
9583c2aa98e2SPeter Wemm		you haven't explicitly recognized the source MX host in
9584c2aa98e2SPeter Wemm		your .cf file, this option will cause you to try the target
9585c2aa98e2SPeter Wemm		host directly (as if there were no MX for it at all).  If
9586c2aa98e2SPeter Wemm		`w' is not set, this case is a configuration error.
9587c2aa98e2SPeter Wemm		Beware: if `w' is set, senders may get bogus errors like
9588c2aa98e2SPeter Wemm		"message timed out" or "host unknown" for problems that
9589c2aa98e2SPeter Wemm		are really configuration errors.  This option is
9590c2aa98e2SPeter Wemm		disrecommended, provided only for compatibility with
9591c2aa98e2SPeter Wemm		UIUC sendmail.
9592c2aa98e2SPeter Wemm	Fix a problem that caused the incoming socket to be left open
9593c2aa98e2SPeter Wemm		when sendmail forks after the DATA command.  This caused
9594c2aa98e2SPeter Wemm		calling systems to wait in FIN_WAIT_2 state until the
9595c2aa98e2SPeter Wemm		entire list was processed and the child closed -- a
9596c2aa98e2SPeter Wemm		potentially prodigious amount of time.  Problem noted
9597c2aa98e2SPeter Wemm		by Neil Rickert.
9598c2aa98e2SPeter Wemm	Fix problem (created in 6.64) that caused mail sent to multiple
9599c2aa98e2SPeter Wemm		addresses, one of which was a bad address, to completely
9600c2aa98e2SPeter Wemm		suppress the sending of the message.  This changes
9601c2aa98e2SPeter Wemm		handling of EF_FATALERRS somewhat, and adds an
9602c2aa98e2SPeter Wemm		EF_GLOBALERRS flag.  This also fixes a potential problem
9603c2aa98e2SPeter Wemm		with duplicate error messages if there is a syntax error
9604c2aa98e2SPeter Wemm		in the header of a message that isn't noticed until late
9605c2aa98e2SPeter Wemm		in processing.  Original problem pointed out by Josh Smith
9606c2aa98e2SPeter Wemm		of Harvey Mudd College.  This release includes quite a bit
9607c2aa98e2SPeter Wemm		of dickering with error handling (see below).
9608c2aa98e2SPeter Wemm	Back out SMTP transaction if MAIL gets nested 501 error.  This
9609c2aa98e2SPeter Wemm		will only hurt already-broken software and should help
9610c2aa98e2SPeter Wemm		humans.
9611c2aa98e2SPeter Wemm	Fix a problem that broke aliases when neither NDBM nor NEWDB were
9612c2aa98e2SPeter Wemm		compiled in.  It would never read the alias file.
9613c2aa98e2SPeter Wemm	Repair unbalanced `)' and `>' (the "open" versions are already
9614c2aa98e2SPeter Wemm		repaired).
9615c2aa98e2SPeter Wemm	Logging of "done" in dropenvelope() was incorrect: it would
9616c2aa98e2SPeter Wemm		log this even when the queue file still existed.  Change
9617c2aa98e2SPeter Wemm		this to only log "done" (at log level 11) when the
9618c2aa98e2SPeter Wemm		queue file is actually removed.  From John Myers.
9619c2aa98e2SPeter Wemm	Log "lost connection" in server SMTP at log level 20 if there
9620c2aa98e2SPeter Wemm		is no pending transaction.  Some senders just close the
9621c2aa98e2SPeter Wemm		connection rather than sending QUIT.
9622c2aa98e2SPeter Wemm	Fix a bug causing getmxrr to add a dot to the end of unqualified
9623c2aa98e2SPeter Wemm		domains that do not have MX records -- this would cause
9624c2aa98e2SPeter Wemm		the subsequent host name lookup to fail.  The problem
9625c2aa98e2SPeter Wemm		only occurred if you had FEATURE(nocanonify) set.
9626c2aa98e2SPeter Wemm		Problem noted by Rick McCarty of Texas Instruments.
9627c2aa98e2SPeter Wemm	Fix invocation of setvbuf when passed a -X flag -- I had
9628c2aa98e2SPeter Wemm		unwittingly used an ANSI C extension, and this caused
9629c2aa98e2SPeter Wemm		core dumps on some machines.
9630c2aa98e2SPeter Wemm	Diagnose self-destructive alias loops on RCPT as well as EXPN.
9631c2aa98e2SPeter Wemm		Previously it just gave an empty send queue, which
9632c2aa98e2SPeter Wemm		then gave either "Need RCPT (recipient)" at the DATA
9633c2aa98e2SPeter Wemm		(confusing, since you had given an RCPT command which
9634c2aa98e2SPeter Wemm		returned 250) or just dropped the email, depending on
9635c2aa98e2SPeter Wemm		whether you were running VERBose mode.  Now it usually
9636c2aa98e2SPeter Wemm		diagnoses this case as "aliasing/forwarding loop broken".
9637c2aa98e2SPeter Wemm		Unfortunately, it still doesn't adequately diagnose
9638c2aa98e2SPeter Wemm		some true error conditions.
9639c2aa98e2SPeter Wemm	Add internal concept of "warning messages" using 6xx codes.
9640c2aa98e2SPeter Wemm		These are not reported only to Postmaster.  Unbalanced
9641c2aa98e2SPeter Wemm		parens, brackets, and quotes are printed as 653 codes.
9642c2aa98e2SPeter Wemm		They are always mapped to 5xx codes before use in SMTP.
9643c2aa98e2SPeter Wemm	Clean up error messages to tell both the actual address that
9644c2aa98e2SPeter Wemm		failed and the alias they arose from.  This makes it
9645c2aa98e2SPeter Wemm		somewhat easier to diagnose problems.  Difficulty noted
9646c2aa98e2SPeter Wemm		by Motonori Nakamura.
9647c2aa98e2SPeter Wemm	Fix a problem that inappropriately added a ctladdr to addresses
9648c2aa98e2SPeter Wemm		that shouldn't have had one during a queue run.  This
9649c2aa98e2SPeter Wemm		caused error messages to be handled differently during
9650c2aa98e2SPeter Wemm		a queue run than a direct run.
9651c2aa98e2SPeter Wemm	Don't print the qf name and line number if you get errors during
9652c2aa98e2SPeter Wemm		the direct run of the queue from srvrsmtp -- this was
9653c2aa98e2SPeter Wemm		just extra stuff for users to crawl through.
9654c2aa98e2SPeter Wemm	Put command line flags on second line of pid file so you can
9655c2aa98e2SPeter Wemm		auto-restart the daemon with all appropriate arguments.
9656c2aa98e2SPeter Wemm		Use "kill `head -1 /etc/sendmail.pid`" to stop the
9657c2aa98e2SPeter Wemm		daemon, and "eval `tail -1 /etc/sendmail.pid`" to
9658c2aa98e2SPeter Wemm		restart it.
9659c2aa98e2SPeter Wemm	Remove the ``setuid(getuid())'' in main -- this caused the
9660c2aa98e2SPeter Wemm		IDENT daemon to screw up.  This required that I change
9661c2aa98e2SPeter Wemm		HASSETEUID to HASSETREUID and complicate the mode
9662c2aa98e2SPeter Wemm		changing somewhat because both Ultrix and SunOS seem
9663c2aa98e2SPeter Wemm		to have a bug causing seteuid() to set the saved uid
9664c2aa98e2SPeter Wemm		as well as the effective.  The program test/t_setreuid.c
9665c2aa98e2SPeter Wemm		will test to see if your implementation of setreuid(2)
9666c2aa98e2SPeter Wemm		is appropriately functional.
9667c2aa98e2SPeter Wemm	The FallBackMX (option V) handling failed to properly identify
9668c2aa98e2SPeter Wemm		fallback to yourself -- most of the code was there,
9669c2aa98e2SPeter Wemm		but it wasn't being enabled.  Problem noted by Murray
9670c2aa98e2SPeter Wemm		Kucherawy of the University of Waterloo.
9671c2aa98e2SPeter Wemm	Change :include: open timeout from ETIMEDOUT to an internal
9672c2aa98e2SPeter Wemm		code EOPENTIMEOUT; this avoids adding "during SmtpPhase
9673c2aa98e2SPeter Wemm		with CurHostName" in error messages, which can be
9674c2aa98e2SPeter Wemm		confusing.  Reported by Jonathan Kamens of OpenVision
9675c2aa98e2SPeter Wemm		Technologies.
9676c2aa98e2SPeter Wemm	Back out setpgrp (setpgid on POSIX systems) call to reset the
9677c2aa98e2SPeter Wemm		process group id.  The original fix was to get around
9678c2aa98e2SPeter Wemm		some problems with recalcitrant MUAs, but it breaks
9679c2aa98e2SPeter Wemm		any call from a shell that creates a process group id
9680c2aa98e2SPeter Wemm		different from the process id.  I could try to fix
9681c2aa98e2SPeter Wemm		this by diddling the tty owner (using tcsetpgrp or
9682c2aa98e2SPeter Wemm		equivalent) but this is too likely to break other
9683c2aa98e2SPeter Wemm		things.
9684c2aa98e2SPeter Wemm	Portability changes:
9685c2aa98e2SPeter Wemm		Support -M as equivalent to -oM on Ultrix -- apparently
9686c2aa98e2SPeter Wemm			DECnet calls sendmail with -MrDECnet -Ms<HOST> -bs
9687c2aa98e2SPeter Wemm			instead of using standard flags.  Oh joy.  This
96882e43090eSPeter Wemm			behavior reported by Jon Giltner of University
9689c2aa98e2SPeter Wemm			of Colorado.
9690c2aa98e2SPeter Wemm		SGI IRIX  -- this includes several changes that should
9691c2aa98e2SPeter Wemm			help other strict ANSI compilers.
9692c2aa98e2SPeter Wemm		SCO Unix -- from Murray Kucherawy of HookUp Communication
9693c2aa98e2SPeter Wemm			Corporation.
9694c2aa98e2SPeter Wemm		Solaris running the Sun C compiler (which despite the
9695c2aa98e2SPeter Wemm			documentation apparently doesn't define
9696c2aa98e2SPeter Wemm			__STDC__ by default).
9697c2aa98e2SPeter Wemm		ConvexOS from Eric Schnoebelen of Convex.
9698c2aa98e2SPeter Wemm		Sony NEWS workstations and Omron LUNA workstations from
9699c2aa98e2SPeter Wemm			Motonori Nakamura.
9700c2aa98e2SPeter Wemm	CONFIG: add confTRY_NULL_MX_LIST to set option `w'.
9701c2aa98e2SPeter Wemm	CONFIG: delete `C' and `e' from default SMTP mailers flags;
9702c2aa98e2SPeter Wemm		several people have made a good argument that this
9703c2aa98e2SPeter Wemm		creates more problems than it solves (although this
9704c2aa98e2SPeter Wemm		may prove painful in the short run).
9705c2aa98e2SPeter Wemm	CONFIG: generalize all the relays to accept a "mailer:host"
9706c2aa98e2SPeter Wemm		format.
9707c2aa98e2SPeter Wemm	CONFIG: move local processing in ruleset 0 into a new ruleset
9708c2aa98e2SPeter Wemm		98 (8 on old sendmail).  Domain literal [a.b.c.d]
9709c2aa98e2SPeter Wemm		addresses are also passed through this ruleset.
9710c2aa98e2SPeter Wemm	CONFIG: if neither SMART_HOST nor MAILER(smtp) were defined,
9711c2aa98e2SPeter Wemm		internet-style addresses would "fall off the end" of
9712c2aa98e2SPeter Wemm		ruleset zero and be interpreted as local -- however,
9713c2aa98e2SPeter Wemm		the angle brackets confused the recursive call.
9714c2aa98e2SPeter Wemm		These are now diagnosed as "Unrecognized host name".
9715c2aa98e2SPeter Wemm	CONFIG: USENET rules weren't included in S0 because of a mistaken
9716c2aa98e2SPeter Wemm		ifdef(`_MAILER_USENET_') instead of
9717c2aa98e2SPeter Wemm		ifdef(`_MAILER_usenet_').  Problem found by Rein Tollevik
9718c2aa98e2SPeter Wemm		of SINTEF RUNIT, Oslo.
9719c2aa98e2SPeter Wemm	CONFIG: move up LOCAL_RULE_0 processing so that it happens very
9720c2aa98e2SPeter Wemm		early in ruleset 0; this allows .mc authors to bypass
9721c2aa98e2SPeter Wemm		things like the "short circuit" code for local addresses.
9722c2aa98e2SPeter Wemm		Prompted by a comment by Bill Wisner of The Well.
9723c2aa98e2SPeter Wemm	CONFIG: add confSMTP_MAILER to define the mailer used (smtp or
9724c2aa98e2SPeter Wemm		esmtp) to send SMTP mail.  This allows you to default
9725c2aa98e2SPeter Wemm		to esmtp but use a mailertable or other override to
9726c2aa98e2SPeter Wemm		deal with broken servers.  This logic was pointed out
9727c2aa98e2SPeter Wemm		to me by Bill Wisner.  Ditto for confLOCAL_MAILER.
9728c2aa98e2SPeter Wemm	Changes to cf/sh/makeinfo.sh to make it portable to SVR4
9729c2aa98e2SPeter Wemm		environments.  Ugly as sin.
9730c2aa98e2SPeter Wemm
973106f25ae9SGregory Neil Shapiro8.3/8.3		1993/07/13
9732c2aa98e2SPeter Wemm	Fix setuid problems introduced in 8.2 that caused messages
9733c2aa98e2SPeter Wemm		like "Cannot create qfXXXXXX: Invalid argument"
9734c2aa98e2SPeter Wemm		or "Cannot reopen dfXXXXXX: Permission denied".  This
9735c2aa98e2SPeter Wemm		involved a new compile flag "HASSETEUID" that takes
9736c2aa98e2SPeter Wemm		the place of the old _POSIX_SAVED_IDS -- it turns out
9737c2aa98e2SPeter Wemm		that the POSIX interface is broken enough to break
9738c2aa98e2SPeter Wemm		some systems badly.  This includes some fixes for
9739c2aa98e2SPeter Wemm		HP-UX.  Also fixes problems where the real uid is
9740c2aa98e2SPeter Wemm		not reset properly on startup (from Neil Rickert).
9741c2aa98e2SPeter Wemm	Fix a problem that caused timed out messages to not report the
9742c2aa98e2SPeter Wemm		addresses that timed out.  Error messages are also more
9743c2aa98e2SPeter Wemm		"user friendly".
9744c2aa98e2SPeter Wemm	Drop required bandwidth on connections from 64 bytes/sec to
9745c2aa98e2SPeter Wemm		16 bytes/sec.
9746c2aa98e2SPeter Wemm	Further Solaris portability changes -- doesn't require the BSD
9747c2aa98e2SPeter Wemm		compatibility library.  This also adds a new
9748c2aa98e2SPeter Wemm		"HASGETDTABLESIZE" compile flag which can be used if
9749c2aa98e2SPeter Wemm		you want to use getdtablesize(2) instead of sysconf(2).
9750c2aa98e2SPeter Wemm		These are loosely based on changes from David Meyer at
9751c2aa98e2SPeter Wemm		University of Oregon.  This now seems to work, at least
9752c2aa98e2SPeter Wemm		for quick test cases.
9753c2aa98e2SPeter Wemm	Fix a problem that can cause duplicate error messages to be
9754c2aa98e2SPeter Wemm		sent if you are in SMTP, you send to multiple addresses,
9755c2aa98e2SPeter Wemm		and at least one of those addresses is good and points
9756c2aa98e2SPeter Wemm		to an account that has a .forward file (whew!).
9757c2aa98e2SPeter Wemm	Fix a problem causing messages to be discarded if checkcompat()
9758c2aa98e2SPeter Wemm		returned EX_TEMPFAIL (because it didn't properly mark
9759c2aa98e2SPeter Wemm		the "to" address).  Problem noted by John Myers.
9760c2aa98e2SPeter Wemm	Fix dfopen to return NULL if the open failed; I was depending
9761c2aa98e2SPeter Wemm		on fdopen(-1) returning NULL, which isn't the case.  This
9762c2aa98e2SPeter Wemm		isn't serious, but does result in weird error diagnoses.
9763c2aa98e2SPeter Wemm		From Michael Corrigan.
9764c2aa98e2SPeter Wemm	CONFIG: add UUCP_MAX_SIZE M4 macro to set the maximum size of
9765c2aa98e2SPeter Wemm		messages sent through UUCP-family mailers.  Suggested
9766c2aa98e2SPeter Wemm		by Bill Wisner of The Well.
9767c2aa98e2SPeter Wemm	CONFIG: if both MAILER(uucp) and MAILER(smtp) are specified,
9768c2aa98e2SPeter Wemm		include a "uucp-dom" mailer that uses domain-style
9769c2aa98e2SPeter Wemm		addressing.  Suggested by Bill Wisner.
9770c2aa98e2SPeter Wemm	CONFIG: Add LOCAL_SHELL_FLAGS and LOCAL_SHELL_ARGS to match
9771c2aa98e2SPeter Wemm		LOCAL_MAILER_FLAGS and LOCAL_MAILER_ARGS.  Suggested by
9772c2aa98e2SPeter Wemm		Christophe Wolfhugel.
9773c2aa98e2SPeter Wemm	CONFIG: Add OSTYPE(aix3).  From Christophe Wolfhugel.
9774c2aa98e2SPeter Wemm
977506f25ae9SGregory Neil Shapiro8.2/8.2		1993/07/11
9776c2aa98e2SPeter Wemm	Don't drop out on config file parse errors in -bt mode.
9777c2aa98e2SPeter Wemm	On older configuration files, assume option "l" (use Errors-To
9778c2aa98e2SPeter Wemm		header) for back compatibility.  NOTE:  this DOES NOT
9779c2aa98e2SPeter Wemm		imply an endorsement of the Errors-To: header in any way.
9780c2aa98e2SPeter Wemm	Accept -x flag on AIX-3 as well as OSF/1.  Why, why, why???
9781c2aa98e2SPeter Wemm	Don't log errors on EHLO -- it isn't a "real" error for an old
9782c2aa98e2SPeter Wemm		SMTP server to give an error on this command, and
9783c2aa98e2SPeter Wemm		logging it in the transcript can be confusing.  Fix
9784c2aa98e2SPeter Wemm		from Bill Wisner.
9785c2aa98e2SPeter Wemm	IRIX compatibility changes provided by Dan Rich
9786c2aa98e2SPeter Wemm		<drich@sandman.lerc.nasa.gov>.
9787c2aa98e2SPeter Wemm	Solaris 2 compatibility changes.  Provided by Bob Cunningham
9788c2aa98e2SPeter Wemm		<bob@kahala.soest.hawaii.edu>, John Oleynick
9789c2aa98e2SPeter Wemm		<juo@klinzhai.rutgers.edu>
9790c2aa98e2SPeter Wemm	Debugging: -d17 was overloaded (hostsignature and usersmtp.c);
9791c2aa98e2SPeter Wemm		move usersmtp (smtpinit and smtpmailfrom) to -d18 to
9792c2aa98e2SPeter Wemm		match the other flags in that file.
9793c2aa98e2SPeter Wemm	Flush transcript before fork in mailfile().  From Eric Wassenaar.
9794c2aa98e2SPeter Wemm	Save h_errno in mci struct and improve error message display.
9795c2aa98e2SPeter Wemm		Changes from Eric Wassenaar.
9796c2aa98e2SPeter Wemm	Open /dev/null for the transcript if the create of the xf file
9797c2aa98e2SPeter Wemm		failed; this avoids at least one possible null pointer
9798c2aa98e2SPeter Wemm		reference in very weird cases.  From Eric Wassenaar.
9799c2aa98e2SPeter Wemm	Clean up statistics gathering; it was over-reporting because of
9800c2aa98e2SPeter Wemm		forks.  From Eric Wassenaar.
9801c2aa98e2SPeter Wemm	Fix problem that causes old Return-Path: line to override new
9802c2aa98e2SPeter Wemm		Return-Path: line (conf.c needs H_FORCE to avoid
9803c2aa98e2SPeter Wemm		re-using old value).  From Motonori Nakamura.
9804c2aa98e2SPeter Wemm	Fix broken -m flag in K definition -- even if -m (match only)
9805c2aa98e2SPeter Wemm		was specified, it would still replace the key with the
9806c2aa98e2SPeter Wemm		value.  Noted by Rick McCarty of Texas Instruments.
9807c2aa98e2SPeter Wemm	If the name server timed out over several days, no "timed out"
9808c2aa98e2SPeter Wemm		message would ever be sent back.  The timeout code
9809c2aa98e2SPeter Wemm		has been moved from markfailure() to dropenvelope()
9810c2aa98e2SPeter Wemm		so that all such failures should be diagnosed.  Pointed
9811c2aa98e2SPeter Wemm		out by Christophe Wolfhugel and others.
9812c2aa98e2SPeter Wemm	Relax safefile() constraints: directories in an include or
9813c2aa98e2SPeter Wemm		forward path must be readable by self if the controlling
9814c2aa98e2SPeter Wemm		user owns the entry, readable by all otherwise (e.g.,
9815c2aa98e2SPeter Wemm		when reading your .forward file, you have to own and
9816c2aa98e2SPeter Wemm		have X permission in it; everyone needs X permission in
9817c2aa98e2SPeter Wemm		the root and directories leading up to your home);
9818c2aa98e2SPeter Wemm		include files must be readable by anyone, but need not
9819c2aa98e2SPeter Wemm		be owned by you.
9820c2aa98e2SPeter Wemm	If _POSIX_SAVED_IDS is defined, setuid to the owner before
9821c2aa98e2SPeter Wemm		reading a .forward file; this gets around some problems
9822c2aa98e2SPeter Wemm		on NFS mounts if root permission is not exported and
9823c2aa98e2SPeter Wemm		the user's home directory isn't x'able.
9824c2aa98e2SPeter Wemm	Additional NeXT portability enhancements from Axel Zinser.
9825c2aa98e2SPeter Wemm	Additional HP-UX portability enhancements from Brian Bullen.
9826c2aa98e2SPeter Wemm	Add a timeout around SMTP message writes; this assumes you can
9827c2aa98e2SPeter Wemm		get throughput of at least 64 bytes/second.  Note that
9828c2aa98e2SPeter Wemm		this does not impact the "datafinal" default, which
9829c2aa98e2SPeter Wemm		is separate; this is just intended to work around
9830c2aa98e2SPeter Wemm		network clogs that will occur before the final dot
9831c2aa98e2SPeter Wemm		is sent.  From Eric Wassenaar.
9832c2aa98e2SPeter Wemm	Change map code to set the "include null" flag adaptively --
9833c2aa98e2SPeter Wemm		it initially tries both, but if it finds anything
9834c2aa98e2SPeter Wemm		matching without a null it never tries again with a
9835c2aa98e2SPeter Wemm		null and vice versa.  If -N is specified, it never
9836c2aa98e2SPeter Wemm		tries without the null and creates new maps with a
9837c2aa98e2SPeter Wemm		null byte.  If -O is specified, it never tries with
9838c2aa98e2SPeter Wemm		the null (for efficiency).  If -N and -O are specified,
9839c2aa98e2SPeter Wemm		you get -NO (get it?) lookup at all, so this would
9840c2aa98e2SPeter Wemm		be a bad idea.  If you don't specify either -N or -O,
9841c2aa98e2SPeter Wemm		it adapts.
9842c2aa98e2SPeter Wemm	Fix recognition of "same from address" so that MH submissions
9843c2aa98e2SPeter Wemm		will insert the appropriate full name information;
9844c2aa98e2SPeter Wemm		this used to work and got broken somewhere along the
9845c2aa98e2SPeter Wemm		way.
9846c2aa98e2SPeter Wemm	Some changes to eliminate some unnecessary SYSERRs in the
9847c2aa98e2SPeter Wemm		log.  For example, if you lost a connection, don't
9848c2aa98e2SPeter Wemm		bother reporting that fact on the connection you lost.
9849c2aa98e2SPeter Wemm	Add some "extended debugging" flags to try to track down
9850c2aa98e2SPeter Wemm		why we get occasional problems with file descriptor
9851c2aa98e2SPeter Wemm		one being closed when execing a mailer; it seems to
9852c2aa98e2SPeter Wemm		only happen when there has been another error in the
9853c2aa98e2SPeter Wemm		same transaction.  This requires XDEBUG, defined
9854c2aa98e2SPeter Wemm		by default in conf.h.
9855c2aa98e2SPeter Wemm	Add "-X filename" command line flag, which logs both sides of
9856c2aa98e2SPeter Wemm		all SMTP transactions.  This is intended ONLY for
9857c2aa98e2SPeter Wemm		debugging bad implementations of other mailers; start
9858c2aa98e2SPeter Wemm		it up, send a message from a mailer that is failing,
9859c2aa98e2SPeter Wemm		and then kill it off and examine the indicated log.
9860c2aa98e2SPeter Wemm		This output is not intended to be particularly human
9861c2aa98e2SPeter Wemm		readable.  This also adds the HASSETVBUF compile
9862c2aa98e2SPeter Wemm		flag, defaulted on if your compiler defines __STDC__.
9863c2aa98e2SPeter Wemm	CONFIG: change SMART_HOST to override an SMTP mailer.  If you
9864c2aa98e2SPeter Wemm		have a local net that should get direct connects, you
9865c2aa98e2SPeter Wemm		will need to use LOCAL_NET_CONFIG to catch these hosts.
9866c2aa98e2SPeter Wemm		See cf/README for an example.
9867c2aa98e2SPeter Wemm	CONFIG: add LOCAL_MAILER_ARGS (default: `mail -d $u') to handle
9868c2aa98e2SPeter Wemm		sites that don't use the -d flag.
9869c2aa98e2SPeter Wemm	CONFIG: hide recipient addresses as well as sender addresses
9870c2aa98e2SPeter Wemm		behind $M if FEATURE(allmasquerade) is specified; this
9871c2aa98e2SPeter Wemm		has been requested by several people, but can break
9872c2aa98e2SPeter Wemm		local aliases.  For example, if you mail to "localalias"
9873c2aa98e2SPeter Wemm		this will be rewritten as "localalias@masqueradehost";
9874c2aa98e2SPeter Wemm		although initial delivery will work, replies will be
9875c2aa98e2SPeter Wemm		broken.  Use it sparingly.
9876c2aa98e2SPeter Wemm	CONFIG: add FEATURE(domaintable).  This maps unqualified domains
9877c2aa98e2SPeter Wemm		to qualified domains in headers.  I believe this is
9878c2aa98e2SPeter Wemm		largely equivalent to the IDA feature of the same name.
9879c2aa98e2SPeter Wemm	CONFIG: use $U as UUCP name instead of $k.  This permits you
9880c2aa98e2SPeter Wemm		to override the "system name" as your UUCP name --
9881c2aa98e2SPeter Wemm		in particular, to use domain-ized UUCP names.  From
9882c2aa98e2SPeter Wemm		Bill Wisner of The Well.
9883c2aa98e2SPeter Wemm	CONFIG: create new mailer "esmtp" that always tries EHLO
9884c2aa98e2SPeter Wemm		first.  This is currently unused in the config files,
9885c2aa98e2SPeter Wemm		but could be used in a mailertable entry.
9886c2aa98e2SPeter Wemm
988706f25ae9SGregory Neil Shapiro8.1C/8.1B	1993/06/27
9888c2aa98e2SPeter Wemm	Serious security bug fix: it was possible to read any file on
9889c2aa98e2SPeter Wemm		the system, regardless of ownership and permissions.
9890c2aa98e2SPeter Wemm	If a subroutine returns a fully qualified address, return it
9891c2aa98e2SPeter Wemm		immediately instead of feeding it back into rewriting.
9892c2aa98e2SPeter Wemm		This fixes a problem with mailertable lookups.
9893c2aa98e2SPeter Wemm	CONFIG: fix some M4 frotz (concat => CONCAT)
9894c2aa98e2SPeter Wemm
989506f25ae9SGregory Neil Shapiro8.1B/8.1A	1993/06/12
9896c2aa98e2SPeter Wemm	Serious bug fix: pattern matching backup algorithm stepped by
9897c2aa98e2SPeter Wemm		two tokens in classes instead of one.  Found by Claus
9898c2aa98e2SPeter Wemm		Assmann at University of Kiel, Germany.
9899c2aa98e2SPeter Wemm
990006f25ae9SGregory Neil Shapiro8.1A/8.1A	1993/06/08
9901c2aa98e2SPeter Wemm	Another mailertable fix....
9902c2aa98e2SPeter Wemm
990306f25ae9SGregory Neil Shapiro8.1/8.1		1993/06/07
9904c2aa98e2SPeter Wemm	4.4BSD freeze.  No semantic changes.
9905