xref: /csrg-svn/usr.sbin/sendmail/src/conf.h (revision 24943)
19147Seric /*
222726Sdist **  Sendmail
322726Sdist **  Copyright (c) 1983  Eric P. Allman
422726Sdist **  Berkeley, California
59147Seric **
622726Sdist **  Copyright (c) 1983 Regents of the University of California.
722726Sdist **  All rights reserved.  The Berkeley software License Agreement
822726Sdist **  specifies the terms and conditions for redistribution.
922726Sdist **
10*24943Seric **	@(#)conf.h	5.1.1.1 (Berkeley) 09/19/85
119147Seric */
129147Seric 
1322726Sdist /*
1422726Sdist **  CONF.H -- All user-configurable parameters for sendmail
1522726Sdist */
169147Seric 
179147Seric 
1822726Sdist 
199147Seric /*
209147Seric **  Table sizes, etc....
219147Seric **	There shouldn't be much need to change these....
229147Seric */
239147Seric 
24*24943Seric # define MAXLINE	512		/* max line length */
25*24943Seric # define MAXNAME	128		/* max length of a name */
269147Seric # define MAXFIELD	2500		/* max total length of a hdr field */
279147Seric # define MAXPV		40		/* max # of parms to mailers */
28*24943Seric # define MAXHOP		17		/* max value of HopCount */
299147Seric # define MAXATOM	100		/* max atoms per address */
309147Seric # define MAXMAILERS	25		/* maximum mailers known to system */
319147Seric # define MAXRWSETS	30		/* max # of sets of rewriting rules */
329147Seric # define MAXPRIORITIES	25		/* max values for Precedence: field */
339147Seric # define MAXTRUST	30		/* maximum number of trusted users */
349147Seric 
359147Seric /*
369147Seric **  Compilation options.
379147Seric */
389147Seric 
399147Seric #define DBM		1	/* use DBM library (requires -ldbm) */
409147Seric #define DEBUG		1	/* enable debugging */
419147Seric #define LOG		1	/* enable logging */
429147Seric #define SMTP		1	/* enable user and server SMTP */
439147Seric #define QUEUE		1	/* enable queueing */
449147Seric #define UGLYUUCP	1	/* output ugly UUCP From lines */
45*24943Seric #define DAEMON		1	/* include the daemon (requires IPC & SMTP) */
4619042Seric #define FLOCK		1	/* use flock file locking */
47*24943Seric #define SETPROCTITLE	1	/* munge argv to display current status */
48