19147Seric /* 2*34920Sbostic * Copyright (c) 1983 Eric P. Allman 333728Sbostic * Copyright (c) 1988 Regents of the University of California. 433728Sbostic * All rights reserved. 533728Sbostic * 633728Sbostic * Redistribution and use in source and binary forms are permitted 7*34920Sbostic * provided that the above copyright notice and this paragraph are 8*34920Sbostic * duplicated in all such forms and that any documentation, 9*34920Sbostic * advertising materials, and other materials related to such 10*34920Sbostic * distribution and use acknowledge that the software was developed 11*34920Sbostic * by the University of California, Berkeley. The name of the 12*34920Sbostic * University may not be used to endorse or promote products derived 13*34920Sbostic * from this software without specific prior written permission. 14*34920Sbostic * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 15*34920Sbostic * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 16*34920Sbostic * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 1733728Sbostic * 18*34920Sbostic * @(#)conf.h 5.11 (Berkeley) 06/30/88 1933728Sbostic */ 209147Seric 2122726Sdist /* 2222726Sdist ** CONF.H -- All user-configurable parameters for sendmail 2322726Sdist */ 249147Seric 259147Seric /* 269147Seric ** Table sizes, etc.... 279147Seric ** There shouldn't be much need to change these.... 289147Seric */ 299147Seric 3024945Seric # define MAXLINE 1024 /* max line length */ 3124945Seric # define MAXNAME 256 /* max length of a name */ 329147Seric # define MAXFIELD 2500 /* max total length of a hdr field */ 339147Seric # define MAXPV 40 /* max # of parms to mailers */ 3424943Seric # define MAXHOP 17 /* max value of HopCount */ 359147Seric # define MAXATOM 100 /* max atoms per address */ 369147Seric # define MAXMAILERS 25 /* maximum mailers known to system */ 379147Seric # define MAXRWSETS 30 /* max # of sets of rewriting rules */ 389147Seric # define MAXPRIORITIES 25 /* max values for Precedence: field */ 399147Seric # define MAXTRUST 30 /* maximum number of trusted users */ 4025026Seric # define MAXUSERENVIRON 40 /* max # of items in user environ */ 4125672Seric # define QUEUESIZE 600 /* max # of jobs per queue run */ 4229652Sbloom # define MAXMXHOSTS 10 /* max # of MX records */ 439147Seric 449147Seric /* 459147Seric ** Compilation options. 4625673Seric ** 4725673Seric ** #define these if they are available; comment them out otherwise. 489147Seric */ 499147Seric 5025673Seric # define DBM 1 /* use DBM library (requires -ldbm) */ 5125673Seric # define NDBM 1 /* new DBM library available (requires DBM) */ 5225673Seric # define DEBUG 1 /* enable debugging */ 5325673Seric # define LOG 1 /* enable logging */ 5425673Seric # define SMTP 1 /* enable user and server SMTP */ 5525673Seric # define QUEUE 1 /* enable queueing */ 5625673Seric # define UGLYUUCP 1 /* output ugly UUCP From lines */ 5725673Seric # define DAEMON 1 /* include the daemon (requires IPC & SMTP) */ 5825673Seric # define SETPROCTITLE 1 /* munge argv to display current status */ 5925698Seric /* # define WIZ 1 /* allow wizard mode */ 60