Deleted Added
full compact
conf.h (102533) conf.h (110563)
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 *
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.563 2002/06/04 02:13:50 geir Exp $
13 * $Id: conf.h,v 8.563.2.3 2002/10/31 03:28:36 ca Exp $
14 */
15
16/*
17** CONF.H -- All user-configurable parameters for sendmail
18**
19** Send updates to sendmail@Sendmail.ORG so they will be
20** included in the next release.
21*/
22
14 */
15
16/*
17** CONF.H -- All user-configurable parameters for sendmail
18**
19** Send updates to sendmail@Sendmail.ORG so they will be
20** included in the next release.
21*/
22
23/* $FreeBSD: head/contrib/sendmail/src/conf.h 102533 2002-08-28 18:12:33Z gshapiro $ */
23/* $FreeBSD: head/contrib/sendmail/src/conf.h 110563 2003-02-08 20:35:51Z gshapiro $ */
24
25#ifndef CONF_H
26#define CONF_H 1
27
28#ifdef __GNUC__
29struct rusage; /* forward declaration to get gcc to shut up in wait.h */
30#endif /* __GNUC__ */
31

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

58/**********************************************************************
59** Table sizes, etc....
60** There shouldn't be much need to change these....
61** If you do, be careful, none should be set anywhere near INT_MAX
62**********************************************************************/
63
64#define MAXLINE 2048 /* max line length */
65#define MAXNAME 256 /* max length of a name */
24
25#ifndef CONF_H
26#define CONF_H 1
27
28#ifdef __GNUC__
29struct rusage; /* forward declaration to get gcc to shut up in wait.h */
30#endif /* __GNUC__ */
31

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

58/**********************************************************************
59** Table sizes, etc....
60** There shouldn't be much need to change these....
61** If you do, be careful, none should be set anywhere near INT_MAX
62**********************************************************************/
63
64#define MAXLINE 2048 /* max line length */
65#define MAXNAME 256 /* max length of a name */
66#ifndef MAXAUTHINFO
67# define MAXAUTHINFO 100 /* max length of authinfo token */
68#endif /* ! MAXAUTHINFO */
66#define MAXPV 256 /* max # of parms to mailers */
67#define MAXATOM 1000 /* max atoms per address */
68#define MAXRWSETS 200 /* max # of sets of rewriting rules */
69#define MAXPRIORITIES 25 /* max values for Precedence: field */
70#define MAXMXHOSTS 100 /* max # of MX records for one host */
71#define SMTPLINELIM 990 /* maximum SMTP line length */
72#define MAXKEY 128 /* maximum size of a database key */
73#define MEMCHUNKSIZE 1024 /* chunk size for memory allocation */

--- 138 unchanged lines hidden ---
69#define MAXPV 256 /* max # of parms to mailers */
70#define MAXATOM 1000 /* max atoms per address */
71#define MAXRWSETS 200 /* max # of sets of rewriting rules */
72#define MAXPRIORITIES 25 /* max values for Precedence: field */
73#define MAXMXHOSTS 100 /* max # of MX records for one host */
74#define SMTPLINELIM 990 /* maximum SMTP line length */
75#define MAXKEY 128 /* maximum size of a database key */
76#define MEMCHUNKSIZE 1024 /* chunk size for memory allocation */

--- 138 unchanged lines hidden ---