Fixed bug in marking a range; modified markall() to only mark messages
[unix-history] / usr / src / usr.bin / mail / pathnames.h
CommitLineData
b1a321a2
KS
1/*
2 * Declarations and constants specific to an installation.
3 *
4 * Vax/Unix version 7.
5 */
6
7/*
ac57be53 8 * Sccs Id = "@(#)pathnames.h 2.4 %G%";
b1a321a2
KS
9 */
10
76655834
KM
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
b1a321a2 18#define MAIL "/bin/mail" /* Name of mail sender */
ac57be53 19#define SENDMAIL "/usr/lib/sendmail"
b1a321a2
KS
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 */
c2f3eab6 24#define MORE "/usr/ucb/more" /* Standard output pager */
b1a321a2
KS
25#define HELPFILE "/usr/lib/Mail.help"
26 /* Name of casual help file */
27#define THELPFILE "/usr/lib/Mail.help.~"
35ab54e7
KS
28#define POSTAGE "/arch/kurt/postage"
29 /* Where to audit mail sending */
b1a321a2
KS
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) */
35ab54e7
KS
36
37#ifndef VMUNIX
38#include "sigretro.h" /* Retrofit signal defs */
39#endif VMUNIX