xref: /illumos-gate/usr/src/cmd/mailwrapper/pathnames.h (revision 287247a826fa2ab8d01f6c8f276d405eb08420f8)
1*287247a8SAlexander Pyhalov /* $FreeBSD$ */
2*287247a8SAlexander Pyhalov 
3*287247a8SAlexander Pyhalov /*
4*287247a8SAlexander Pyhalov  * Copyright (c) 1998
5*287247a8SAlexander Pyhalov  * 	Perry E. Metzger.  All rights reserved.
6*287247a8SAlexander Pyhalov  *
7*287247a8SAlexander Pyhalov  * Redistribution and use in source and binary forms, with or without
8*287247a8SAlexander Pyhalov  * modification, are permitted provided that the following conditions
9*287247a8SAlexander Pyhalov  * are met:
10*287247a8SAlexander Pyhalov  * 1. Redistributions of source code must retain the above copyright
11*287247a8SAlexander Pyhalov  *    notice, this list of conditions and the following disclaimer.
12*287247a8SAlexander Pyhalov  * 2. Redistributions in binary form must reproduce the above copyright
13*287247a8SAlexander Pyhalov  *    notice, this list of conditions and the following disclaimer in the
14*287247a8SAlexander Pyhalov  *    documentation and/or other materials provided with the distribution.
15*287247a8SAlexander Pyhalov  * 3. All advertising materials mentioning features or use of this software
16*287247a8SAlexander Pyhalov  *    must display the following acknowledgment:
17*287247a8SAlexander Pyhalov  *	This product includes software developed for the NetBSD Project
18*287247a8SAlexander Pyhalov  *	by Perry E. Metzger.
19*287247a8SAlexander Pyhalov  * 4. The name of the author may not be used to endorse or promote products
20*287247a8SAlexander Pyhalov  *    derived from this software without specific prior written permission.
21*287247a8SAlexander Pyhalov  *
22*287247a8SAlexander Pyhalov  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23*287247a8SAlexander Pyhalov  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24*287247a8SAlexander Pyhalov  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25*287247a8SAlexander Pyhalov  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26*287247a8SAlexander Pyhalov  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27*287247a8SAlexander Pyhalov  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28*287247a8SAlexander Pyhalov  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29*287247a8SAlexander Pyhalov  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30*287247a8SAlexander Pyhalov  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31*287247a8SAlexander Pyhalov  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32*287247a8SAlexander Pyhalov  */
33*287247a8SAlexander Pyhalov 
34*287247a8SAlexander Pyhalov #ifndef _PATHNAMES_H
35*287247a8SAlexander Pyhalov #define	_PATHNAMES_H
36*287247a8SAlexander Pyhalov #define	_PATH_MAILERCONF	"/etc/mailer.conf"
37*287247a8SAlexander Pyhalov #define	_PATH_DEFAULTMTA	"/usr/lib/smtp/sendmail/sendmail"
38*287247a8SAlexander Pyhalov #endif /* _PATHNAMES_H */
39