added "more" command
[unix-history] / usr / src / usr.bin / mail / pathnames.h
CommitLineData
761330fe
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 * @(#)pathnames.h 5.1 (Berkeley) %G%
7 */
2ae9f53f 8
b1a321a2
KS
9/*
10 * Declarations and constants specific to an installation.
11 *
12 * Vax/Unix version 7.
13 */
b1a321a2 14
76655834
KM
15#define GETHOST /* System has gethostname syscall */
16#ifdef GETHOST
17#define LOCAL EMPTYID /* Dynamically determined local host */
18#else
19#define LOCAL 'j' /* Local host id */
20#endif GETHOST
21
b1a321a2 22#define MAIL "/bin/mail" /* Name of mail sender */
ac57be53 23#define SENDMAIL "/usr/lib/sendmail"
b1a321a2
KS
24 /* Name of classy mail deliverer */
25#define EDITOR "/usr/ucb/ex" /* Name of text editor */
26#define VISUAL "/usr/ucb/vi" /* Name of display editor */
27#define SHELL "/bin/csh" /* Standard shell */
c2f3eab6 28#define MORE "/usr/ucb/more" /* Standard output pager */
b1a321a2
KS
29#define HELPFILE "/usr/lib/Mail.help"
30 /* Name of casual help file */
31#define THELPFILE "/usr/lib/Mail.help.~"
7ccfb103 32#define POSTAGE "/usr/adm/maillog"
35ab54e7 33 /* Where to audit mail sending */
b1a321a2
KS
34 /* Name of casual tilde help */
35#define UIDMASK 0177777 /* Significant uid bits */
36#define MASTER "/usr/lib/Mail.rc"
37#define APPEND /* New mail goes to end of mailbox */
38#define CANLOCK /* Locking protocol actually works */
39#define UTIME /* System implements utime(2) */
35ab54e7
KS
40
41#ifndef VMUNIX
42#include "sigretro.h" /* Retrofit signal defs */
43#endif VMUNIX