19147Seric /* 29153Seric ** CONF.H -- All user-configurable parameters for sendmail 39147Seric ** 4*19042Seric ** @(#)conf.h 4.3 04/28/85 59147Seric */ 69147Seric 79147Seric 89147Seric 99147Seric /* 109147Seric ** Table sizes, etc.... 119147Seric ** There shouldn't be much need to change these.... 129147Seric */ 139147Seric 1416137Seric # define MAXLINE 512 /* max line length */ 159147Seric # define MAXNAME 128 /* max length of a name */ 169147Seric # define MAXFIELD 2500 /* max total length of a hdr field */ 179147Seric # define MAXPV 40 /* max # of parms to mailers */ 189147Seric # define MAXHOP 30 /* max value of HopCount */ 199147Seric # define MAXATOM 100 /* max atoms per address */ 209147Seric # define MAXMAILERS 25 /* maximum mailers known to system */ 219147Seric # define MAXRWSETS 30 /* max # of sets of rewriting rules */ 229147Seric # define MAXPRIORITIES 25 /* max values for Precedence: field */ 239147Seric # define MAXTRUST 30 /* maximum number of trusted users */ 249147Seric 259147Seric /* 269147Seric ** Compilation options. 279147Seric */ 289147Seric 299147Seric #define DBM 1 /* use DBM library (requires -ldbm) */ 309147Seric #define DEBUG 1 /* enable debugging */ 319147Seric #define LOG 1 /* enable logging */ 329147Seric #define SMTP 1 /* enable user and server SMTP */ 339147Seric #define QUEUE 1 /* enable queueing */ 349147Seric #define UGLYUUCP 1 /* output ugly UUCP From lines */ 359147Seric #define DAEMON 1 /* include the daemon (requires IPC) */ 36*19042Seric #define FLOCK 1 /* use flock file locking */ 37