HardenedBSD src tree
Go to file
Gregory Neil Shapiro ca8b9ed373 Add two new accounts/groups for sendmail:
smmsp - sendmail 8.12 operates as a set-group-ID binary (instead of
set-user-ID).  This new user/group will be used for command line
submissions.  UID/GID 25 is suggested in the sendmail documentation and has
been adopted by other operating systems such as OpenBSD and Solaris 9.

mailnull - The default value for DefaultUser is now set to the uid and gid
of the first existing user mailnull, sendmail, or daemon that has a
non-zero uid.  If none of these exist, sendmail reverts back to the old
behavior of using uid 1 and gid 1.  Currently FreeBSD uses daemon for
DefaultUser but I would prefer not to use an account used by other
programs, hence the addition of mailnull.  UID/GID 26 has been chosen for
this user.

This was discussed on -arch on October 18-19, 2001.

MFC after:	1 week
2001-11-17 21:24:45 +00:00
bin Make test(1) a builtin command of our sh(1) for efficiency. The 2001-11-17 19:10:11 +00:00
contrib
crypto
etc Add two new accounts/groups for sendmail: 2001-11-17 21:24:45 +00:00
games
gnu
include o Implement imaxabs(), imaxdiv(), llabs(), lldiv(). 2001-11-15 02:05:03 +00:00
kerberos5
kerberosIV
lib Fix pthread_join so that it works if the target thread exits while 2001-11-17 14:28:39 +00:00
libexec
release Remove config.sgml from dependencies. Forgot this in my last commit. 2001-11-17 20:53:23 +00:00
sbin Zap a number of #ifdef sunos blocks, and all of the `register' 2001-11-17 00:06:55 +00:00
secure
share Make test(1) a builtin command of our sh(1) for efficiency. The 2001-11-17 19:10:11 +00:00
sys Fix missing holdsock()->fgetsock() 2001-11-17 18:43:13 +00:00
tools Now it gets interesting... 2001-11-13 00:51:00 +00:00
usr.bin Print the correct return code for successful Linux syscalls. 2001-11-17 17:18:36 +00:00
usr.sbin o Allow rarpd to accept an additional '-t directory' argument, specifying 2001-11-16 16:49:21 +00:00
COPYRIGHT
Makefile
Makefile.inc1 Don't cleandir also if MODULES_WITH_WORLD. 2001-11-16 03:02:34 +00:00
Makefile.upgrade
README
UPDATING

This is the top level of the FreeBSD source directory.  This file
was last revised on:
$FreeBSD$

For copyright information, please see the file COPYRIGHT in this
directory (additional copyright information also exists for some
sources in this tree - please see the specific source directories for
more information).

The Makefile in this directory supports a number of targets for
building components (or all) of the FreeBSD source tree, the most
commonly used one being ``world'', which rebuilds and installs
everything in the FreeBSD system from the source tree except the
kernel, the kernel-modules and the contents of /etc.  The
``buildkernel'' and ``installkernel'' targets build and install
the kernel and the modules (see below).  Please see the top of
the Makefile in this directory for more information on the
standard build targets and compile-time flags.

Building a kernel is a somewhat more involved process, documentation
for which can be found at:
   http://www.freebsd.org/handbook/kernelconfig.html
And in the config(8) man page.
Note: If you want to build and install the kernel with the
``buildkernel'' and ``installkernel'' targets, you have to build
world before.  More information is available in the handbook.

The sample kernel configuration files reside in the sys/i386/conf
sub-directory (assuming that you've installed the kernel sources), the
file named GENERIC being the one used to build your initial installation
kernel.  The file NOTES contains entries and documentation for all possible
devices, not just those commonly used.  It is the successor of the ancient
LINT file, but in contrast to LINT, it is not buildable as a kernel but a
pure reference and documentation file.


Source Roadmap:
---------------
bin		System/User commands.

contrib		Packages contributed by 3rd parties.

crypto		Cryptography stuff (see crypto/README).

etc		Template files for /etc

games		Amusements.

gnu		Various commands and libraries under the GNU Public License.
		Please see gnu/COPYING* for more information.

include		System include files.

kerberosIV	Kerberos package.

lib		System libraries.

libexec		System daemons.

release		Release building Makefile & associated tools.

sbin		System commands.

secure		Cryptographic libraries and commands.

share		Shared resources.

sys		Kernel sources.

tools		Utilities for regression testing and miscellaneous tasks.

usr.bin		User commands.

usr.sbin	System administration commands.


For information on synchronizing your source tree with one or more of
the FreeBSD Project's development branches, please see:

  http://www.freebsd.org/handbook/synching.html