summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2019-06-12 11:04:03 +0200
committermanuel <manuel@mausz.at>2019-06-12 11:04:03 +0200
commitc8dcce86c04f318de89fa0701962d7c33964726d (patch)
treed02c06658020f762750bd415f526f5c4eff70f39
parent42f639244bcadf9978299ae5c55034b32fa463f7 (diff)
downloadqmail-c8dcce86c04f318de89fa0701962d7c33964726d.tar.gz
qmail-c8dcce86c04f318de89fa0701962d7c33964726d.tar.bz2
qmail-c8dcce86c04f318de89fa0701962d7c33964726d.zip
increase recipients limit to 300
-rw-r--r--qmail-smtpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmail-smtpd.c b/qmail-smtpd.c
index 0b78265..fcda68c 100644
--- a/qmail-smtpd.c
+++ b/qmail-smtpd.c
@@ -54,7 +54,7 @@ unsigned int greetdelay = 0;
54unsigned int drop_pre_greet = 0; 54unsigned int drop_pre_greet = 0;
55int timeout = 1200; 55int timeout = 1200;
56int recipcount = 0; 56int recipcount = 0;
57unsigned int max_recipcount = 100; 57unsigned int max_recipcount = 300;
58 58
59const char *protocol = "SMTP"; 59const char *protocol = "SMTP";
60 60