[BACK]Return to mailer.conf.5 CVS log [TXT][DIR] Up to [local] / src / usr.sbin / mailwrapper

File: [local] / src / usr.sbin / mailwrapper / mailer.conf.5 (download)

Revision 1.18, Mon Sep 17 15:46:37 2018 UTC (5 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, HEAD
Changes since 1.17: +12 -12 lines

update the installed path for sendmail: from matt schwartz
trim the comment - it is just repeating info

ok benno

.\"	$OpenBSD: mailer.conf.5,v 1.18 2018/09/17 15:46:37 jmc Exp $
.\"	$NetBSD: mailer.conf.5,v 1.1 1999/03/25 16:40:17 is Exp $
.\"
.\" Copyright (c) 1998
.\" 	Perry E. Metzger.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\"    must display the following acknowledgment:
.\"	This product includes software developed for the NetBSD Project
.\"	by Perry E. Metzger.
.\" 4. The name of the author may not be used to endorse or promote products
.\"    derived from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd $Mdocdate: September 17 2018 $
.Dt MAILER.CONF 5
.Os
.Sh NAME
.Nm mailer.conf
.Nd configuration file for mailwrapper(8)
.Sh DESCRIPTION
The file
.Pa /etc/mailer.conf
contains a series of pairs.
The first member of each pair is the name of a program invoking
.Xr mailwrapper 8
which is typically a symbolic link to
.Pa /usr/sbin/sendmail .
(On a typical system,
.Xr newaliases 8
and
.Xr mailq 8
would be set up this way.)
The second member of each pair is the name of the program to
actually execute when the first name is invoked.
The file may also contain comments, denoted by a
.Ql #
character in the first column of any line.
.Sh FILES
.Bl -tag -width /etc/mailer.conf -compact
.It Pa /etc/mailer.conf
.El
.Sh EXAMPLES
The following is an example of how to set up
.Nm
for the default
.Xr smtpd 8
MTA suite:
.Bd -literal
# Emulate sendmail using smtpd
sendmail	/usr/sbin/smtpctl
send-mail	/usr/sbin/smtpctl
mailq		/usr/sbin/smtpctl
makemap 	/usr/sbin/smtpctl
newaliases	/usr/sbin/smtpctl
.Ed
.Pp
This example shows how to invoke the traditional
.Xr sendmail 8
MTA suite in place of
.Xr smtpd 8 :
.Bd -literal
# Execute the "real" sendmail program
sendmail	/usr/local/libexec/sendmail/sendmail
send-mail	/usr/local/libexec/sendmail/sendmail
mailq		/usr/local/libexec/sendmail/sendmail
makemap 	/usr/local/libexec/sendmail/makemap
newaliases	/usr/local/libexec/sendmail/sendmail
hoststat	/usr/local/libexec/sendmail/sendmail
purgestat	/usr/local/libexec/sendmail/sendmail
.Ed
.Sh SEE ALSO
.Xr mail 1 ,
.Xr mailq 8 ,
.Xr mailwrapper 8 ,
.Xr newaliases 8 ,
.Xr smtpd 8
.Sh AUTHORS
.An Perry E. Metzger Aq Mt perry@piermont.com
.Sh BUGS
The entire reason this program exists is a crock.
Instead, a command for how to submit mail should be standardized,
and all the "behave differently if invoked with a different name"
behavior of things like
.Xr mailq 8
should go away.