diff options
author | 2012-10-07 14:55:48 +0000 | |
---|---|---|
committer | 2012-10-07 14:55:48 +0000 | |
commit | cdbe6f82bc280c514856b31c0428fdf5f0eba74e (patch) | |
tree | 7b535f627540f7dd7b327e96ca7915cc7b44f6cf | |
parent | truncate silent command output to two lines. okay millert@ (diff) | |
download | wireguard-openbsd-cdbe6f82bc280c514856b31c0428fdf5f0eba74e.tar.xz wireguard-openbsd-cdbe6f82bc280c514856b31c0428fdf5f0eba74e.zip |
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@
-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 */ |