diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2012-10-07 14:55:49 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2012-10-07 14:55:49 +0000 |
commit | bae56aedac673933f7ee13d3b728a058bca35a43 (patch) | |
tree | 13472e0b1755efff127defd99e2b92096dc0f2b7 /usr.sbin | |
parent | 430de9799983d9ee0f1a1d627e65dc936e5b4a2c (diff) |
bump max number of connections to a route from 5 to 10, the limit is too
low as experienced by myself and another user.
discussed with and ok eric@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/mta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/mta.c b/usr.sbin/smtpd/mta.c index 6817b7d6ba0..534aba48b35 100644 --- a/usr.sbin/smtpd/mta.c +++ b/usr.sbin/smtpd/mta.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mta.c,v 1.144 2012/09/28 14:03:00 chl Exp $ */ +/* $OpenBSD: mta.c,v 1.145 2012/10/07 14:55:48 gilles Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -43,7 +43,7 @@ #include "smtpd.h" #include "log.h" -#define MTA_MAXCONN 5 /* connections per route */ +#define MTA_MAXCONN 10 /* connections per route */ #define MTA_MAXMAIL 100 /* mails per session */ #define MTA_MAXRCPT 1000 /* rcpt per mail */ |