Deleted Added
sdiff udiff text old ( 157006 ) new ( 168520 )
full compact
1/*
2 * Copyright (c) 1998-2002 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 * Copyright (c) 1983, 1995-1997 Eric P. Allman. All rights reserved.
5 * Copyright (c) 1988, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * By using this file, you agree to the terms and conditions set
9 * forth in the LICENSE file which can be found at the top level of
10 * the sendmail distribution.
11 *
12 *
13 * $Id: conf.h,v 8.570 2005/12/09 18:37:27 ca Exp $
14 *
15 * $FreeBSD: head/contrib/sendmail/src/conf.h 157006 2006-03-22 16:45:56Z gshapiro $
16 *
17 */
18
19/*
20** CONF.H -- All user-configurable parameters for sendmail
21**
22** Send updates to sendmail@Sendmail.ORG so they will be
23** included in the next release.

--- 34 unchanged lines hidden (view full) ---

58
59/**********************************************************************
60** Table sizes, etc....
61** There shouldn't be much need to change these....
62** If you do, be careful, none should be set anywhere near INT_MAX
63**********************************************************************/
64
65#define MAXLINE 2048 /* max line length */
66#define MAXNAME 256 /* max length of a name */
67#ifndef MAXAUTHINFO
68# define MAXAUTHINFO 100 /* max length of authinfo token */
69#endif /* ! MAXAUTHINFO */
70#define MAXPV 256 /* max # of parms to mailers */
71#define MAXATOM 1000 /* max atoms per address */
72#define MAXRWSETS 200 /* max # of sets of rewriting rules */
73#define MAXPRIORITIES 25 /* max values for Precedence: field */
74#define MAXMXHOSTS 100 /* max # of MX records for one host */
75#define SMTPLINELIM 990 /* max SMTP line length */
76#define MAXUDBKEY 128 /* max size of a database key (udb only) */
77#if _FFR_MAXKEY
78# define MAXKEY 1024 /* max size of a database key */
79#else /* _FFR_MAXKEY */
80# define MAXKEY (MAXNAME + 1) /* max size of a database key */
81#endif /* _FFR_MAXKEY */
82#define MEMCHUNKSIZE 1024 /* chunk size for memory allocation */
83#define MAXUSERENVIRON 100 /* max envars saved, must be >= 3 */
84#define MAXMAPSTACK 12 /* max # of stacked or sequenced maps */
85#if MILTER
86# define MAXFILTERS 25 /* max # of milter filters */
87# define MAXFILTERMACROS 50 /* max # of macros per milter cmd */
88#endif /* MILTER */
89#define MAXSMTPARGS 20 /* max # of ESMTP args for MAIL/RCPT */

--- 145 unchanged lines hidden ---