summaryrefslogtreecommitdiff
path: root/contrib/sendmail/src/conf.h
diff options
context:
space:
mode:
authorGregory Neil Shapiro <gshapiro@FreeBSD.org>2007-04-09 01:38:51 +0000
committerGregory Neil Shapiro <gshapiro@FreeBSD.org>2007-04-09 01:38:51 +0000
commitd0cef73d40a409e3116f095b83633b1364e95741 (patch)
tree2a4f38ae8ba223f3bf2402f56d35c997e5af6db5 /contrib/sendmail/src/conf.h
parent3a3ef73d37c9a94a369656b0ac2490c212e01cb1 (diff)
Diffstat (limited to 'contrib/sendmail/src/conf.h')
-rw-r--r--contrib/sendmail/src/conf.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/contrib/sendmail/src/conf.h b/contrib/sendmail/src/conf.h
index 5e8501571ffc4..f1386c4b61f6e 100644
--- a/contrib/sendmail/src/conf.h
+++ b/contrib/sendmail/src/conf.h
@@ -10,7 +10,7 @@
* the sendmail distribution.
*
*
- * $Id: conf.h,v 8.570 2005/12/09 18:37:27 ca Exp $
+ * $Id: conf.h,v 8.574 2006/11/29 00:36:06 ca Exp $
*/
/*
@@ -60,6 +60,11 @@ struct rusage; /* forward declaration to get gcc to shut up in wait.h */
**********************************************************************/
#define MAXLINE 2048 /* max line length */
+#if SASL
+# define MAXINPLINE 12288 /* max input line length (for AUTH) */
+#else /* SASL */
+# define MAXINPLINE MAXLINE /* max input line length */
+#endif /* SASL */
#define MAXNAME 256 /* max length of a name */
#ifndef MAXAUTHINFO
# define MAXAUTHINFO 100 /* max length of authinfo token */
@@ -71,11 +76,7 @@ struct rusage; /* forward declaration to get gcc to shut up in wait.h */
#define MAXMXHOSTS 100 /* max # of MX records for one host */
#define SMTPLINELIM 990 /* max SMTP line length */
#define MAXUDBKEY 128 /* max size of a database key (udb only) */
-#if _FFR_MAXKEY
-# define MAXKEY 1024 /* max size of a database key */
-#else /* _FFR_MAXKEY */
-# define MAXKEY (MAXNAME + 1) /* max size of a database key */
-#endif /* _FFR_MAXKEY */
+#define MAXKEY 1024 /* max size of a database key */
#define MEMCHUNKSIZE 1024 /* chunk size for memory allocation */
#define MAXUSERENVIRON 100 /* max envars saved, must be >= 3 */
#define MAXMAPSTACK 12 /* max # of stacked or sequenced maps */