History log of /freebsd-10.3-release/contrib/sendmail/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
296373 04-Mar-2016 marius

- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
builds.
- Update newvers.sh to reflect RC1.
- Update __FreeBSD_version to reflect 10.3.
- Update default pkg(8) configuration to use the quarterly branch.

Approved by: re (implicit)

286453 08-Aug-2015 gshapiro

MFC: Reminder to check tools/build/mk/OptionalObsoleteFiles.inc on new
version imports.


285305 09-Jul-2015 gshapiro

MFC: Update for sendmail 8.15.2 import

Approved by: re (gjb)


285303 09-Jul-2015 gshapiro

MFC: Merge sendmail 8.15.2

Approved by: re (gjb)


284786 25-Jun-2015 gshapiro

MFC: An additional fix for the openssl Weak DH remediation:

The import of openssl to address the FreeBSD-SA-15:10.openssl security
advisory includes a change which rejects handshakes with DH parameters
below 768 bits. sendmail releases prior to 8.15.2 (not yet released),
defaulted to a 512 bit DH parameter setting for client connections.

The first fix committed last week changed the default to 1024 bits.

This commit fixes the case where the DHParameters option is set to a
file which doesn't exist, which is the case on newer versions of
FreeBSD which enable STARTTLS by default by auto-creating TLS
certificates.


284485 17-Jun-2015 gshapiro

MFC: The import of openssl to address the FreeBSD-SA-15:10.openssl security
advisory includes a change which rejects handshakes with DH parameters
below 768 bits. sendmail releases prior to 8.15.2 (not yet released),
defaulted to a 512 bit DH parameter setting for client connections.
This commit chages that default to 1024 bits. sendmail 8.15.2, when
released well use a default of 2048 bits.


266695 26-May-2014 gshapiro

MFC: Update for sendmail 8.14.9 import


266692 26-May-2014 gshapiro

MFC: Merge sendmail 8.14.9 to HEAD


261367 01-Feb-2014 gshapiro

MFC: Add missing svn:keywords property to new files


261366 01-Feb-2014 gshapiro

MFC: Update for sendmail 8.14.8 import


261365 01-Feb-2014 gshapiro

MFC: Remove local FreeBSD workaround now that upstream project has a better fix.


261363 01-Feb-2014 gshapiro

MFC: Merge sendmail 8.14.8


261359 01-Feb-2014 gshapiro

MFC: Update link to vendor import instructions


259073 07-Dec-2013 peter

Hoist all the mergeinfo up to the root in preparation for enforcing merges
to the root only. All MFC's were rerecorded to the root.

Going forward, if an MFC includes mergeinfo, it will need to be made to
the root and committed from the root. Merges with --ignore-ancestry
or diff | patch can go anywhere.

The mergeinfo in HEAD is in a bad state from years of neglect and manual
tampering and this was branched into 10.x. This confuses the coalescing
code and prevents it from doing its job.

Approved by: re (gjb, implicit)


256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


254251 12-Aug-2013 gshapiro

Temporarily revert sendmail 8.14.7 change to getipnodebyname() flags to
prevent problems between the resolver and Microsoft DNS servers with
AAAA lookups. The upstream open source project will work on a more
permanent fix for the next release. Issue noted by Pavel Timofeev.

MFC after: 3 days


249730 21-Apr-2013 gshapiro

Update for sendmail 8.14.7

MFC after: 4 days


249729 21-Apr-2013 gshapiro

Merge sendmail 8.14.7 to HEAD

MFC after: 4 days


246947 18-Feb-2013 gshapiro

Merge sendmail 8.14.6 errata issue

MFC after: 3 days


244834 29-Dec-2012 gshapiro

Update import info based on recent experiences and sendmail 8.14.6 import.

MFC after: 4 days


244833 29-Dec-2012 gshapiro

Merge sendmail 8.14.6 to HEAD

MFC after: 4 days


243649 28-Nov-2012 ume

cyrus-sasl 2.1.26 was released. In this version, the type of callback
functions was changed from "unsigned long" to "size_t".

Reviewed by: gshapiro
MFC after: 3 days


240292 10-Sep-2012 gshapiro

Properly define true/false when defining __bool_true_false_are_defined
for filters which pull in mfapi.h before stdbool.h. Issue reported by
Petr Rehor, maintainer of amavisd-milter port.

MFC after: 3 days


225906 01-Oct-2011 ume

Shut up warnings with Cyrus SASL 2.1.25.

Spotted by: ache
Tested by: ache


223758 04-Jul-2011 attilio

With retirement of cpumask_t and usage of cpuset_t for representing a
mask of CPUs, pc_other_cpus and pc_cpumask become highly inefficient.

Remove them and replace their usage with custom pc_cpuid magic (as,
atm, pc_cpumask can be easilly represented by (1 << pc_cpuid) and
pc_other_cpus by (all_cpus & ~(1 << pc_cpuid))).

This change is not targeted for MFC because of struct pcpu members
removal and dependency by cpumask_t retirement.

MD review by: marcel, marius, alc
Tested by: pluknet
MD testing by: marcel, marius, gonzo, andreast


223701 30-Jun-2011 trasz

Make Sendmail properly set login class and cpumask.


223071 14-Jun-2011 gshapiro

Update notes regarding FreeBSD import


223067 14-Jun-2011 gshapiro

Merge sendmail 8.14.5 to HEAD

MFC after: 4 days


222813 07-Jun-2011 attilio

etire the cpumask_t type and replace it with cpuset_t usage.

This is intended to fix the bug where cpu mask objects are
capped to 32. MAXCPU, then, can now arbitrarely bumped to whatever
value. Anyway, as long as several structures in the kernel are
statically allocated and sized as MAXCPU, it is suggested to keep it
as low as possible for the time being.

Technical notes on this commit itself:
- More functions to handle with cpuset_t objects are introduced.
The most notable are cpusetobj_ffs() (which calculates a ffs(3)
for a cpuset_t object), cpusetobj_strprint() (which prepares a string
representing a cpuset_t object) and cpusetobj_strscan() (which
creates a valid cpuset_t starting from a string representation).
- pc_cpumask and pc_other_cpus are target to be removed soon.
With the moving from cpumask_t to cpuset_t they are now inefficient
and not really useful. Anyway, for the time being, please note that
access to pcpu datas is protected by sched_pin() in order to avoid
migrating the CPU while reading more than one (possible) word
- Please note that size of cpuset_t objects may differ between kernel
and userland. While this is not directly related to the patch itself,
it is good to understand that concept and possibly use the patch
as a reference on how to deal with cpuset_t objects in userland, when
accessing kernland members.
- KTR_CPUMASK is changed and now is represented through a string, to be
set as the example reported in NOTES.

Please additively note that no MAXCPU is bumped in this patch, but
private testing has been done until to MAXCPU=128 on a real 8x8x2(htt)
machine (amd64).

Please note that the FreeBSD version is not yet bumped because of
the upcoming pcpu changes. However, note that this patch is not
targeted for MFC.

People to thank for the time spent on this patch:
- sbruno, pluknet and Nicholas Esborn (nick AT desert DOT net) tested
several revision of the patches and really helped in improving
stability of this work.
- marius fixed several bugs in the sparc64 implementation and reviewed
patches related to ktr.
- jeff and jhb discussed the basic approach followed.
- kib and marcel made targeted review on some specific part of the
patch.
- marius, art, nwhitehorn and andreast reviewed MD specific part of
the patch.
- marius, andreast, gonzo, nwhitehorn and jceel tested MD specific
implementations of the patch.
- Other people have made contributions on other patches that have been
already committed and have been listed separately.

Companies that should be mentioned for having participated at several
degrees:
- Yahoo! for having offered the machines used for testing on big
count of CPUs.
- The FreeBSD Foundation for having sponsored my devsummit attendance,
which has been instrumental.
- Sandvine for having offered offices and infrastructure during
development.

(I really hope I didn't forget anyone, if it happened I apologize in
advance).


208938 09-Jun-2010 uqs

Remove -mdoc macros from -man page

Neither groff nor mandoc render these when in -man mode.
This was introduced in r38083 as a local change, therefore no commit to
the vendor branch.


207736 07-May-2010 mckusick

Merger of the quota64 project into head.

This joint work of Dag-Erling Smørgrav and myself updates the
FFS quota system to support both traditional 32-bit and new 64-bit
quotas (for those of you who want to put 2+Tb quotas on your users).

By default quotas are not compiled into the kernel. To include them
in your kernel configuration you need to specify:

options QUOTA # Enable FFS quotas

If you are already running with the current 32-bit quotas, they
should continue to work just as they have in the past. If you
wish to convert to using 64-bit quotas, use `quotacheck -c 64';
if you wish to revert from 64-bit quotas back to 32-bit quotas,
use `quotacheck -c 32'.

There is a new library of functions to simplify the use of the
quota system, do `man quotafile' for details. If your application
is currently using the quotactl(2), it is highly recommended that
you convert your application to use the quotafile interface.
Note that existing binaries will continue to work.

Special thanks to John Kozubik of rsync.net for getting me
interested in pursuing 64-bit quota support and for funding
part of my development time on this project.


203006 26-Jan-2010 gshapiro

Update FreeBSD information

MFC after: 4 days


203004 26-Jan-2010 gshapiro

Merge sendmail 8.14.4 to HEAD

MFC after: 4 days


195626 11-Jul-2009 cperciva

Remove build timestamps from the following files:
/boot/kernel/hptrr.ko
/etc/mail/*.cf
/lib/libcrypto.so.5
/usr/bin/ntpq
/usr/sbin/amd
/usr/sbin/iasl
/usr/sbin/ntpd
/usr/sbin/ntpdate
/usr/sbin/ntpdc

There does not appear to be any purpose to having these timestamps, and
they have the irritating consequence that the aforementioned files will
be different every time they are rebuilt.

After this commit, the only remaining build timestamps are in the kernel,
the boot loaders, /usr/include/osreldate.h (the year in the copyright
notice), and lib*.a (the timestamps on all of the included .o files).

Reviewed by: scottl (hptrr), gshapiro (sendmail), simon (openssl),
roberto (ntp), jkim (acpica)
Approved by: re (kib)


184980 15-Nov-2008 gshapiro

Merge from vendor dist: Bring in a change already in the sendmail
repository that will allow sendmail to be built with the c99 compiler.

Submitted by: rdivacky


182675 02-Sep-2008 gshapiro

Fix an ABI breakage found after the import that will be part of the
next version of sendmail. Putting it in now for the upcoming 7-BETA
and 6-BETA test releases.

Submitted by: Mike Tancsa


182356 28-Aug-2008 gshapiro

Update import/merge instructions for the svn repo


182352 28-Aug-2008 gshapiro

Merge sendmail 8.14.3 into HEAD.

Note: As the first merge since the conversion to svn, it includes many
propset changes to get the proper svn:eol-style and svn:mime-type on the
files (as merged from the fixed up vendor/dist area).

MFC after: 3 days


182328 28-Aug-2008 peter

Initialize merge records


173345 05-Nov-2007 gshapiro

Update for sendmail 8.14.2

MFC after: 1 week


173343 05-Nov-2007 gshapiro

Resolve conflicts from sendmail 8.14.2 import


173341 05-Nov-2007 gshapiro

This commit was generated by cvs2svn to compensate for changes in r173340,
which included commits to RCS files with non-trunk default branches.


168994 23-Apr-2007 gshapiro

This commit was generated by cvs2svn to compensate for changes in r168993,
which included commits to RCS files with non-trunk default branches.


168989 23-Apr-2007 gshapiro

This commit was generated by cvs2svn to compensate for changes in r168988,
which included commits to RCS files with non-trunk default branches.


168523 09-Apr-2007 gshapiro

Update for sendmail 8.14.1


168520 09-Apr-2007 gshapiro

Resolve conflicts from sendmail 8.14.1 import


168516 09-Apr-2007 gshapiro

This commit was generated by cvs2svn to compensate for changes in r168515,
which included commits to RCS files with non-trunk default branches.


161393 17-Aug-2006 gshapiro

Update to sendmail 8.13.8


161390 17-Aug-2006 gshapiro

This commit was generated by cvs2svn to compensate for changes in r161389,
which included commits to RCS files with non-trunk default branches.


159615 14-Jun-2006 gshapiro

Update FreeBSD info regarding sendmail 8.13.7 import


159613 14-Jun-2006 gshapiro

Resolve conflicts from sendmail 8.13.7 import


159610 14-Jun-2006 gshapiro

This commit was generated by cvs2svn to compensate for changes in r159609,
which included commits to RCS files with non-trunk default branches.


157704 13-Apr-2006 gshapiro

Add a note regarding bumping the freebsd*mc files for mergemaster's sake.


157007 22-Mar-2006 gshapiro

Record sendmail 8.13.6 upgrade


157006 22-Mar-2006 gshapiro

Resolve conflicts from sendmail 8.13.6 import


157002 22-Mar-2006 gshapiro

This commit was generated by cvs2svn to compensate for changes in r157001,
which included commits to RCS files with non-trunk default branches.


147354 14-Jun-2005 gshapiro

This commit was generated by cvs2svn to compensate for changes in r147353,
which included commits to RCS files with non-trunk default branches.


147084 07-Jun-2005 gshapiro

Note the sendmail 8.13.4 upgrade

MFC after: 4 days


147081 07-Jun-2005 gshapiro

Resolve conflicts from sendmail 8.13.4 import


147079 07-Jun-2005 gshapiro

This commit was generated by cvs2svn to compensate for changes in r147078,
which included commits to RCS files with non-trunk default branches.


141887 14-Feb-2005 gshapiro

Merge mci.c change to add mci_close() from the vendor branch.

Problem noted by: marcus


141868 14-Feb-2005 gshapiro

This commit was generated by cvs2svn to compensate for changes in r141867,
which included commits to RCS files with non-trunk default branches.


141864 14-Feb-2005 gshapiro

Update for sendmail 8.13.3 import


141862 14-Feb-2005 gshapiro

Resolve conflicts from sendmail 8.13.3 import

MFC after: 4 days


141859 14-Feb-2005 gshapiro

This commit was generated by cvs2svn to compensate for changes in r141858,
which included commits to RCS files with non-trunk default branches.


132948 01-Aug-2004 gshapiro

Update notes after sendmail 8.13.1 import


132946 01-Aug-2004 gshapiro

Resolve conflicts from sendmail 8.13.1 import


132944 01-Aug-2004 gshapiro

This commit was generated by cvs2svn to compensate for changes in r132943,
which included commits to RCS files with non-trunk default branches.


127978 07-Apr-2004 gshapiro

Fix path to rc.sendmail


125824 14-Feb-2004 gshapiro

Update for 8.12.11 import

MFC after: 7 days


125823 14-Feb-2004 gshapiro

Fix sendmail 8.12.11 import conflicts


125821 14-Feb-2004 gshapiro

This commit was generated by cvs2svn to compensate for changes in r125820,
which included commits to RCS files with non-trunk default branches.


121826 31-Oct-2003 gshapiro

Cast the NULL to a pointer type for 64 bit architectures

Submitted by: harti
MFC after: 4 days


121232 19-Oct-2003 gshapiro

Adding WorkAroundBrokenAAAA seems a necessity even in the submit.mc given
the number of broken DNS servers out there in the world. Since we are
diverging from the sendmail.org submit.mc, it's time to make our own
freebsd.submit.mc.

PR: conf/57733
Reviewed by: nork
MFC after: 2 weeks


120260 19-Sep-2003 gshapiro

Update for 8.12.10 import


120259 19-Sep-2003 gshapiro

Fix sendmail 8.12.10 import conflicts


120257 19-Sep-2003 gshapiro

This commit was generated by cvs2svn to compensate for changes in r120256,
which included commits to RCS files with non-trunk default branches.


120170 17-Sep-2003 nectar

This commit was generated by cvs2svn to compensate for changes in r120169,
which included commits to RCS files with non-trunk default branches.


116542 18-Jun-2003 ru

Follow the (good) trend of returning import files to vendor versions
where possible for easier future imports.


112814 29-Mar-2003 gshapiro

sendmail 8.12.9 has been imported


112813 29-Mar-2003 gshapiro

Fix conflicts from sendmail 8.12.9 import


112811 29-Mar-2003 gshapiro

This commit was generated by cvs2svn to compensate for changes in r112810,
which included commits to RCS files with non-trunk default branches.


111829 03-Mar-2003 gshapiro

sendmail 8.12.8 has been imported


111826 03-Mar-2003 gshapiro

Fix conflicts from sendmail 8.12.8 import


111824 03-Mar-2003 gshapiro

This commit was generated by cvs2svn to compensate for changes in r111823,
which included commits to RCS files with non-trunk default branches.


111367 23-Feb-2003 gshapiro

Follow the (good) trend of returning import files to vendor versions
where possible for easier future imports.


111366 23-Feb-2003 gshapiro

This local FreeBSD mod isn't needed now that we have the freebsd* ostype
files.


110648 10-Feb-2003 gshapiro

This commit was generated by cvs2svn to compensate for changes in r110647,
which included commits to RCS files with non-trunk default branches.


110565 08-Feb-2003 gshapiro

Update for sendmail 8.12.7 import


110563 08-Feb-2003 gshapiro

Resolve conflicts from sendmail 8.12.7 import


110561 08-Feb-2003 gshapiro

This commit was generated by cvs2svn to compensate for changes in r110560,
which included commits to RCS files with non-trunk default branches.


110553 08-Feb-2003 gshapiro

Even if biff is turned off, we still need to set curoff as the code
uses that if there is an error writing to the mailbox. Note this bug
is only in the FreeBSD code, not the vendor code (which doesn't offer
nobiff).

PR: misc/43392
MFC after: 3 days


105016 13-Oct-2002 gshapiro

MFS: Fix smrsh bypass bug.


102533 28-Aug-2002 gshapiro

Move the $FreeBSD$ CVS labels far enough away from the $Id$ CVS labels so
I don't have to manually resolve conflicts on every import. Ironically,
most of these files have no changes from the vendor version except the
$FreeBSD$ line.


102532 28-Aug-2002 gshapiro

Changes for the import of sendmail 8.12.6


102531 28-Aug-2002 gshapiro

Resolve conflicts from sendmail 8.12.6 import


102529 28-Aug-2002 gshapiro

This commit was generated by cvs2svn to compensate for changes in r102528,
which included commits to RCS files with non-trunk default branches.


98845 26-Jun-2002 gshapiro

Update for the sendmail 8.12.5 import


98844 26-Jun-2002 gshapiro

Resolve conflicts from import of sendmail 8.12.5


98842 26-Jun-2002 gshapiro

This commit was generated by cvs2svn to compensate for changes in r98841,
which included commits to RCS files with non-trunk default branches.


98126 11-Jun-2002 gshapiro

sendmail 8.12.4 has been imported


98125 11-Jun-2002 gshapiro

Resolve conflicts from sendmail 8.12.4 import


98122 11-Jun-2002 gshapiro

This commit was generated by cvs2svn to compensate for changes in r98121,
which included commits to RCS files with non-trunk default branches.


95157 20-Apr-2002 gshapiro

Resolve conflicts from import of post-8.12.3 bug fixes.


95155 20-Apr-2002 gshapiro

This commit was generated by cvs2svn to compensate for changes in r95154,
which included commits to RCS files with non-trunk default branches.


95149 20-Apr-2002 gshapiro

Two more files to keep track of.


94347 10-Apr-2002 gshapiro

A couple more sendmail-related files


94338 10-Apr-2002 gshapiro

Record sendmail 8.12.3 import


94337 10-Apr-2002 gshapiro

Fix conflicts from sendmail 8.12.3 import


94335 10-Apr-2002 gshapiro

This commit was generated by cvs2svn to compensate for changes in r94334,
which included commits to RCS files with non-trunk default branches.


94260 09-Apr-2002 gshapiro

Found two more files that use the sendmail infrastructure.


93976 06-Apr-2002 gshapiro

Another man page that can change as sendmail requirements change.


93859 05-Apr-2002 gshapiro

Add usr.sbin/mailwrapper/Makefile to the list of changed files as
it contains a list of symlinks to make which are normally symlinks
to the sendmail binary.


93857 05-Apr-2002 gshapiro

Add a list of files sendmail importants may affect. This is mostly
for my own reference so I don't miss things on future imports.


90825 18-Feb-2002 gshapiro

Fix mail.local build for non-sendmail.org code


90810 17-Feb-2002 gshapiro

This commit was generated by cvs2svn to compensate for changes in r90809,
which included commits to RCS files with non-trunk default branches.


90800 17-Feb-2002 gshapiro

Update import instructions for sendmail 8.12.2


90795 17-Feb-2002 gshapiro

Resolve conflicts from sendmail 8.12.2 import


90793 17-Feb-2002 gshapiro

This commit was generated by cvs2svn to compensate for changes in r90792,
which included commits to RCS files with non-trunk default branches.


82021 21-Aug-2001 gshapiro

Update import information


82020 21-Aug-2001 gshapiro

Resolve conflicts from sendmail 8.11.6 import


82018 21-Aug-2001 gshapiro

This commit was generated by cvs2svn to compensate for changes in r82017,
which included commits to RCS files with non-trunk default branches.


80791 01-Aug-2001 gshapiro

Update FreeBSD import information


80789 01-Aug-2001 gshapiro

Resolve conflicts from import of sendmail 8.11.5


80786 01-Aug-2001 gshapiro

This commit was generated by cvs2svn to compensate for changes in r80785,
which included commits to RCS files with non-trunk default branches.


79653 13-Jul-2001 ru

This page is in man(7) format.


77354 28-May-2001 gshapiro

sendmail 8.11.4 has been imported


77352 28-May-2001 gshapiro

Resolve conflicts from 8.11.4 import


77350 28-May-2001 gshapiro

This commit was generated by cvs2svn to compensate for changes in r77349,
which included commits to RCS files with non-trunk default branches.


75010 30-Mar-2001 gshapiro

Forgot to update this README when I imported 8.11.3


73349 02-Mar-2001 ru

setlocale(3) has been fixed to match POSIX standard:
LC_ALL takes precedence over other LC_* envariables.


73191 28-Feb-2001 gshapiro

Repair 8.11.3 merge conflicts


73189 28-Feb-2001 gshapiro

This commit was generated by cvs2svn to compensate for changes in r73188,
which included commits to RCS files with non-trunk default branches.


72910 22-Feb-2001 gshapiro

Return to the code as distributed by sendmail.org. This eliminates a
warning on Alphas. It is still not the perfect solution for machines
which sizeof(u_long) != sizeof(void *) but it is as close as we are going
to get for now and consistent with the rest of the code. 8.12 has solved
this problem by providing a portable snprintf() which understands %p.

PR: bin/14142


72849 22-Feb-2001 gshapiro

Document the vacation -d and -l options

PR: docs/22875


71349 21-Jan-2001 gshapiro

Update FreeBSD import README


71348 21-Jan-2001 gshapiro

Repair 8.11.2 merge conflicts


71346 21-Jan-2001 gshapiro

This commit was generated by cvs2svn to compensate for changes in r71345,
which included commits to RCS files with non-trunk default branches.


68858 17-Nov-2000 ru

Return to the stock version of this file as local FreeBSD mods
to it have been made in mdoc(7) format, but now it is again in
man(7) format, and the vendor apparently incorporated our mods.


66949 10-Oct-2000 gshapiro

Add FreeBSD-only options to the getopt string

PR: 21544
Submitted by: Peter Jeremy <peter.jeremy@alcatel.com.au>


66508 01-Oct-2000 gshapiro

Add missing FreeBSD-only flag to the usage statement.


66498 01-Oct-2000 gshapiro

Update FreeBSD import information after sendmail 8.11.1 import


66497 01-Oct-2000 gshapiro

Fix conflicts from merge of sendmail 8.11.1


66495 01-Oct-2000 gshapiro

This commit was generated by cvs2svn to compensate for changes in r66494,
which included commits to RCS files with non-trunk default branches.


66492 01-Oct-2000 gshapiro

Remove Build files -- they rely on the devtools system which isn't imported
(or used)


65529 06-Sep-2000 brian

Revert my last change. libutil.h is still required for setusercontext()
and unistd.h is already included.

Requested by: gshapiro


65353 02-Sep-2000 brian

Move setproctitle() from libutil to libc (after a repo-copy)
and bump __FreeBSD_version to 500012 to mark the occasion.

setproctitle() is prototyped in unistd.h as opposed to stdlib.h
where OpenBSD and NetBSD have it.

Reviewed by: peter


64620 13-Aug-2000 gshapiro

Fix syntax for Received: header after conflict resolution.
Problem noted by: Andrey A. Chernov <ache@FreeBSD.ORG>


64566 12-Aug-2000 gshapiro

Add a FREEBSD-upgrade file describing what was done for the import
Remove obsolete files after the 8.11.0 import


64565 12-Aug-2000 gshapiro

Fix conflicts from merge of sendmail 8.11.0.

PR: bin/11552 misc/18512 bin/15088


64563 12-Aug-2000 gshapiro

This commit was generated by cvs2svn to compensate for changes in r64562,
which included commits to RCS files with non-trunk default branches.


54836 19-Dec-1999 obrien

Install sendmail.cf into /etc/mail.

The current offical Sendmail Inc. version uses /var/mail/ and when we upgrade
our repository to that version, we will get the change. It is best to make
the path change in 4.0-R (which may not have the latest Sendmail Inc. version,
than to change in mid-4.x stream when we may upgrade.

Ok'ed by: Peter (quite a while ago)


54709 17-Dec-1999 grog

Change location of temporary file from /tmp to /var/tmp. This is a
repeat of an earlier commit which apparently got lost with the last
import. It helps solve the frequently reported problem

pid 4032 (mail.local), uid 0 on /: file system full

(though there appears to be a lot of space) caused by idiots sending
30 MB mail messages.

Most-recently-reported-by: jahanur <jahanur@jjsoft.com>

Add $FreeBSD$ so that I can check the file back in.

Rejected-by: CVS


53697 25-Nov-1999 peter

This commit was generated by cvs2svn to compensate for changes in r53696,
which included commits to RCS files with non-trunk default branches.


43734 07-Feb-1999 peter

Remove the standalone buildtools stuff, we don't use it here and it
clutters things up. (Suggested by wollman)


43733 07-Feb-1999 peter

Merge 8.9.2+patches -> 8.9.3 changes into mainline.


43731 07-Feb-1999 peter

This commit was generated by cvs2svn to compensate for changes in r43730,
which included commits to RCS files with non-trunk default branches.


43151 24-Jan-1999 peter

Merge changes from vendor branch into our version


43149 24-Jan-1999 peter

This commit was generated by cvs2svn to compensate for changes in r43148,
which included commits to RCS files with non-trunk default branches.


42586 12-Jan-1999 peter

These files were replaced by symlinks in 8.9.2...


42580 12-Jan-1999 peter

Merge sendmail 8.9.1 -> 8.9.2 changes into mainline. Some of our changes
were submitted back to sendmail.org (stage 1) and were incorporated.


42576 12-Jan-1999 peter

This commit was generated by cvs2svn to compensate for changes in r42575,
which included commits to RCS files with non-trunk default branches.


40498 17-Oct-1998 bde

"Fixed" a printf format error. Use bogus casts to avoid using %p so that
the output doesn't change (unless the old format caused runtime errors).


40497 17-Oct-1998 bde

Fixed printf format errors.


40043 07-Oct-1998 des

By popular request, mention that mailq responds to the same options as
sendmail(8).

PR: i386/8149


38089 04-Aug-1998 peter

I obviously cannot read. I misread the ifdef in the Makefile - DONT_FSYNC
was not on by default.. Back previous change out.


38086 04-Aug-1998 peter

Invert the sense of the -s flag (local addition). Instead of compiling
in the behavior via the previously default #define DONT_FSYNC, use the
-s flag to turn the fsync() behavior on. This can be configured in
sendmail.cf without recompiling mail.local.


38084 04-Aug-1998 peter

Copy original revs 1.2,1.3 - nofsync/nobiff support, usage update.


38083 04-Aug-1998 peter

Copy original revs 1.2,1.3 - sort xrefs, document new -b and -s flags.


38082 04-Aug-1998 peter

Copy original rev 1.2 - fix usage line to match reality.


38081 04-Aug-1998 peter

Copy original rev 1.2 - path updates for 4.4BSD so smrsh is more useable.


38080 04-Aug-1998 peter

Copy original rev 1.2 - immediate delivery rather than queueing and -Wall.


38079 04-Aug-1998 peter

Copy original revs 1.19,1.15 - setusercontext() support and __FreeBSD__>=2
Copy original revs 1.9,1.8,1.7 - set PS_STRINGS correctly.


38078 04-Aug-1998 peter

Copy original rev 1.3 - fix cosmetic typo in example
Copy original rev 1.2 - sort xrefs


38077 04-Aug-1998 peter

Copy original rev 1.5 - sort/fix xrefs
Copy original rev 1.4 - correct path to /usr/share/misc/sendmail.hf


38076 04-Aug-1998 peter

Copy respective revisions from usr.sbin/sendmail/*/* - use -1 with getopt.


38075 04-Aug-1998 peter

Copy rev 1.2 of usr.sbin/sendmail/cf/sh/makeinfo.sh: Use `LC_TIME=C date`.


38074 04-Aug-1998 peter

Copy across rev 1.2 of usr.sbin/sendmail/cf/ostype/bsd4.4.m4:
Remove the legacy -d option from the arguments to mail.local in 4.4bsd.


38073 04-Aug-1998 peter

Copy across rev 1.2 of usr.sbin/sendmail/cf/m4/cfhead.m4: Record envelope
sender in each Received: header along the way. Great for spammer hunting.


38033 03-Aug-1998 peter

This commit was generated by cvs2svn to compensate for changes in r38032,
which included commits to RCS files with non-trunk default branches.