xref: /original-bsd/usr.sbin/sendmail/src/conf.h (revision c0290416)
1 /*
2  * Copyright (c) 1983 Eric P. Allman
3  * Copyright (c) 1988 Regents of the University of California.
4  * All rights reserved.
5  *
6  * %sccs.include.redist.c%
7  *
8  *	@(#)conf.h	5.25 (Berkeley) 05/29/92
9  */
10 
11 /*
12 **  CONF.H -- All user-configurable parameters for sendmail
13 */
14 
15 /*
16 **  Table sizes, etc....
17 **	There shouldn't be much need to change these....
18 */
19 
20 # define MAXLINE	1024		/* max line length */
21 # define MAXNAME	256		/* max length of a name */
22 # define MAXFIELD	4096		/* max total length of a hdr field */
23 # define MAXPV		40		/* max # of parms to mailers */
24 # define MAXHOP		17		/* max value of HopCount */
25 # define MAXATOM	100		/* max atoms per address */
26 # define MAXMAILERS	25		/* maximum mailers known to system */
27 # define MAXRWSETS	30		/* max # of sets of rewriting rules */
28 # define MAXPRIORITIES	25		/* max values for Precedence: field */
29 # define MAXTRUST	30		/* maximum number of trusted users */
30 # define MAXUSERENVIRON	40		/* max # of items in user environ */
31 # define QUEUESIZE	600		/* max # of jobs per queue run */
32 # define MAXMXHOSTS	10		/* max # of MX records */
33 # define SMTPLINELIM	990		/* maximum SMTP line length */
34 # ifndef FORK
35 # define FORK		vfork		/* function to call to fork mailer */
36 # endif
37 
38 /*
39 **  Compilation options.
40 **
41 **	#define these if they are available; comment them out otherwise.
42 */
43 
44 # ifdef hpux
45 # define SYSTEM5	1
46 # endif
47 
48 /* # define DBM		1	/* use DBM library (requires -ldbm) */
49 /* # define NDBM	1	/* new DBM library available (requires DBM) */
50 # define NEWDB		1	/* use new 4.4bsd database package db(3) */
51 # define LOG		1	/* enable logging */
52 # define SMTP		1	/* enable user and server SMTP */
53 # define QUEUE		1	/* enable queueing */
54 # define UGLYUUCP	1	/* output ugly UUCP From lines */
55 # define DAEMON		1	/* include the daemon (requires IPC & SMTP) */
56 # define SETPROCTITLE	1	/* munge argv to display current status */
57 # define NAMED_BIND	1	/* use Berkeley Internet Domain Server */
58 # define USERDB		1	/* look in user database */
59 # define MATCHGECOS	1	/* match user names from gecos field */
60 
61 # ifdef SYSTEM5
62 # define LOCKF		1	/* use System V lockf instead of flock */
63 # endif
64 
65 /*
66 **  Older systems don't have this error code -- it should be in
67 **  /usr/include/sysexits.h.
68 */
69 
70 # ifndef EX_CONFIG
71 # define EX_CONFIG	78	/* configuration error */
72 # endif
73