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*25026Seric ** @(#)conf.h 5.4 (Berkeley) 09/24/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 2424945Seric # define MAXLINE 1024 /* max line length */ 2524945Seric # define MAXNAME 256 /* 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 */ 2824943Seric # 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 */ 34*25026Seric # define MAXUSERENVIRON 40 /* max # of items in user environ */ 359147Seric 369147Seric /* 379147Seric ** Compilation options. 389147Seric */ 399147Seric 409147Seric #define DBM 1 /* use DBM library (requires -ldbm) */ 419147Seric #define DEBUG 1 /* enable debugging */ 429147Seric #define LOG 1 /* enable logging */ 439147Seric #define SMTP 1 /* enable user and server SMTP */ 449147Seric #define QUEUE 1 /* enable queueing */ 459147Seric #define UGLYUUCP 1 /* output ugly UUCP From lines */ 4624943Seric #define DAEMON 1 /* include the daemon (requires IPC & SMTP) */ 4719042Seric #define FLOCK 1 /* use flock file locking */ 4824943Seric #define SETPROCTITLE 1 /* munge argv to display current status */ 49