aboutsummaryrefslogtreecommitdiff
path: root/share/man/man8/rc.sendmail.8
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-231-2/+0
| | | | | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/ Similar commit in main: (cherry picked from commit fa9896e082a1)
* Enable the automatic creation of a certificate (if one does not exists)John-Mark Gurney2013-10-191-1/+37
| | | | | | | | | | | | | | | | | | | | and enable the usage by sendmail if sendmail is enabled. Include and document knobs to disable this feature and also set the Common Name of the certificate created. As the certificate is signed w/ a discarded key, it only helps prevent Eve, but not Malory from knowing the contents of the emails. This means that new installs (and people that use the updated freebsd.mc file) will automaticly have STARTTLS enabled allowing incoming email to be encrypted in most cases. Reviewed by: gshapiro MFC after: 3 days Security: Yes, please. Notes: svn path=/head/; revision=256773
* mdoc: drop redundant .Pp and .LP callsUlrich Spörlein2010-10-081-1/+0
| | | | | | | They have no effect when coming in pairs, or before .Bl/.Bd Notes: svn path=/head/; revision=213573
* mdoc(7) police: scheduled sweep.Ruslan Ermilov2002-11-291-2/+4
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107383
* Minor typo fixes.Giorgos Keramidas2002-10-211-3/+3
| | | | Notes: svn path=/head/; revision=105596
* Use .Ed to terminate .Bd display.Giorgos Keramidas2002-10-211-1/+1
| | | | Notes: svn path=/head/; revision=105595
* Deprecate the use of sendmail_enable="NONE" as it adversely affects theGregory Neil Shapiro2002-09-031-3/+20
| | | | | | | | | new rcNG effort. Submitted by: Mike Makonnen <makonnen@pacbell.net> Notes: svn path=/head/; revision=102915
* Add a warning regarding localhost-only listening daemons inside jails.Gregory Neil Shapiro2002-05-221-0/+3
| | | | | | | | | | | | | Apparently binding only to 127.0.0.1 inside of a jail actually binds to the jail IP address as well (in effect, bind to all available interfaces in the jail). Submitted by: Helge Oldach <test-smtp@oldach.net> MFC after: 1 day pending RE approval Notes: svn path=/head/; revision=97131
* Quoting Peter Wemm, "At great personal risk, touch the sendmail startupGregory Neil Shapiro2002-04-051-0/+241
again." As an alternative to sendmail_enable=NONE, solve the boot time problem for non-sendmail users completely by moving all of the sendmail startup code from /etc/rc to /etc/rc.sendmail. The source for that script will be kept in src/etc/sendmail/rc.sendmail so make.conf's NO_SENDMAIL will prevent it from being installed. A new rc.conf variable, mta_start_script specifies the script to run to start the user's preferred MTA. For backward compatibility, it will default to /etc/rc.sendmail. The specified script is called out of /etc/rc after checking to make sure it exists. A new rc.sendmail.8 man page has also been added which now houses the sendmail_* variable descriptions formerly in rc.conf.5. Use /etc/rc.sendmail in /etc/mail/Makefile to reduce code duplication. Reviewed by: -current, -stable, obrien, peter, ru MFC after: 1 week Notes: svn path=/head/; revision=93853