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