1.\" $NetBSD: mailer.conf.5,v 1.2 1999/05/29 18:18:30 christos Exp $ 2.\" $FreeBSD$ 3.\" 4.\" Copyright (c) 1998 5.\" Perry E. Metzger. All rights reserved. 6.\" 7.\" Redistribution and use in source and binary forms, with or without 8.\" modification, are permitted provided that the following conditions 9.\" are met: 10.\" 1. Redistributions of source code must retain the above copyright 11.\" notice, this list of conditions and the following disclaimer. 12.\" 2. Redistributions in binary form must reproduce the above copyright 13.\" notice, this list of conditions and the following disclaimer in the 14.\" documentation and/or other materials provided with the distribution. 15.\" 3. All advertising materials mentioning features or use of this software 16.\" must display the following acknowledgment: 17.\" This product includes software developed for the NetBSD Project 18.\" by Perry E. Metzger. 19.\" 4. The name of the author may not be used to endorse or promote products 20.\" derived from this software without specific prior written permission. 21.\" 22.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 23.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 24.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 25.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 26.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 27.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 28.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 29.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 30.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 31.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32.\" 33.\" The following requests are required for all man pages. 34.Dd December 16, 1998 35.Dt MAILER.CONF 5 36.Os 37.Sh NAME 38.Nm mailer.conf 39.Nd configuration file for 40.Xr mailwrapper 8 . 41.Sh DESCRIPTION 42.Pp 43The file 44.Pa /etc/mail/mailer.conf 45contains a series of pairs. The first member of each pair is the name 46of a program invoking 47.Xr mailwrapper 8 48which is typically a symbolic link to 49.Pa /usr/sbin/sendmail . 50(On a typical system, 51.Xr newaliases 1 52and 53.Xr mailq 1 54would be set up this way.) 55The second member of each pair is the name of the program to 56actually execute when the first name is invoked. The file may also 57contain comments, denoted by a # mark in the first column of any line. 58.Sh EXAMPLES 59The following is an example of how to set up an 60.Nm 61for traditional sendmail invocation behavior. 62.Bd -literal 63# Execute the "real" sendmail program, named /usr/libexec/sendmail/sendmail 64sendmail /usr/libexec/sendmail/sendmail 65send-mail /usr/libexec/sendmail/sendmail 66mailq /usr/libexec/sendmail/sendmail 67newaliases /usr/libexec/sendmail/sendmail 68.Ed 69.Pp 70This example shows how to invoke a sendmail-workalike like Postfix in 71place of sendmail. 72.Bd -literal 73# Emulate sendmail using postfix 74sendmail /usr/local/sbin/sendmail 75send-mail /usr/local/sbin/sendmail 76mailq /usr/local/sbin/sendmail 77newaliases /usr/local/sbin/sendmail 78.Ed 79.Sh FILES 80/etc/mail/mailer.conf 81.Sh SEE ALSO 82.Xr mail 1 , 83.Xr mailq 1 , 84.Xr newaliases 1 , 85.Xr mailwrapper 8 , 86.Xr sendmail 8 87.Sh HISTORY 88.Nm 89appeared in 90.Nx 1.4 . 91.Sh AUTHORS 92Perry E. Metzger <perry@piermont.com> 93.Sh BUGS 94The entire reason this program exists is a crock. Instead, a command 95for how to submit mail should be standardized, and all the "behave 96differently if invoked with a different name" behavior of things like 97.Xr mailq 1 98should go away. 99