4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 1991 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
28 /* All Rights Reserved */
32 * University Copyright- Copyright (c) 1982, 1986, 1988
33 * The Regents of the University of California
36 * University Acknowledgment- Portions of this document are derived from
37 * software developed by the University of California, Berkeley, and its
41 #pragma ident "%Z%%M% %I% %E% SMI"
44 * Declarations and constants specific to an installation.
48 * mailx -- a modified version of a University of California at Berkeley
52 #define LOCAL EMPTYID /* Dynamically determined local host */
54 # define MAIL "/bin/rmail" /* Mail delivery agent */
56 # define MAIL "/usr/bin/rmail"/* Mail delivery agent */
58 #define SENDMAIL "/usr/lib/sendmail"
59 /* Name of classy mail deliverer */
60 #define EDITOR "ed" /* Name of text editor */
61 #define VISUAL "vi" /* Name of display editor */
62 #define PG (value("PAGER") ? value("PAGER") : \
63 (value("bsdcompat") ? "more" : "pg -e"))
64 /* Standard output pager */
66 #define LS (value("LISTER") ? value("LISTER") : "ls")
67 /* Name of directory listing prog*/
69 # define SHELL "/bin/sh" /* Standard shell */
71 # define SHELL "/usr/bin/sh" /* Standard shell */
73 #define HELPFILE helppath("mailx.help")
74 /* Name of casual help file */
75 #define THELPFILE helppath("mailx.help.~")
76 /* Name of casual tilde help */
78 # define MASTER (value("bsdcompat") ? libpath("Mail.rc") : \
81 # define MASTER (value("bsdcompat") ? "/etc/mail/Mail.rc" : \
84 #define APPEND /* New mail goes to end of mailbox */
85 #define CANLOCK /* Locking protocol actually works */
86 #define UTIME /* System implements utime(2) */