xref: /original-bsd/usr.bin/mail/pathnames.h (revision 62734ea8)
1 /*
2  * Declarations and constants specific to an installation.
3  *
4  * Vax/Unix version 7.
5  */
6 
7 /*
8  * Sccs Id = "@(#)pathnames.h	2.3 09/02/82";
9  */
10 
11 #define	GETHOST				/* System has gethostname syscall */
12 #ifdef	GETHOST
13 #define	LOCAL		EMPTYID		/* Dynamically determined local host */
14 #else
15 #define	LOCAL		'j'		/* Local host id */
16 #endif	GETHOST
17 
18 #define	MAIL		"/bin/mail"	/* Name of mail sender */
19 #define DELIVERMAIL	"/etc/delivermail"
20 					/* Name of classy mail deliverer */
21 #define	EDITOR		"/usr/ucb/ex"	/* Name of text editor */
22 #define	VISUAL		"/usr/ucb/vi"	/* Name of display editor */
23 #define	SHELL		"/bin/csh"	/* Standard shell */
24 #define	MORE		"/usr/ucb/more"	/* Standard output pager */
25 #define	HELPFILE	"/usr/lib/Mail.help"
26 					/* Name of casual help file */
27 #define	THELPFILE	"/usr/lib/Mail.help.~"
28 #define	POSTAGE		"/arch/kurt/postage"
29 					/* Where to audit mail sending */
30 					/* Name of casual tilde help */
31 #define	UIDMASK		0177777		/* Significant uid bits */
32 #define	MASTER		"/usr/lib/Mail.rc"
33 #define	APPEND				/* New mail goes to end of mailbox */
34 #define CANLOCK				/* Locking protocol actually works */
35 #define	UTIME				/* System implements utime(2) */
36 
37 #ifndef VMUNIX
38 #include "sigretro.h"			/* Retrofit signal defs */
39 #endif VMUNIX
40