diff options
author | Rutger <djslash+github@djslash.org> | 2012-04-01 21:11:25 +0200 |
---|---|---|
committer | Rutger <djslash+github@djslash.org> | 2012-04-01 21:11:25 +0200 |
commit | 10e0af3831cf29399541d4e2f6f2d6adfb7672bb (patch) | |
tree | 53437dad2cfc24964d4b25db74f1b280c4b1c2a3 /docs | |
parent | e73e4be15485f545ff485d3d372b513dd28bf759 (diff) |
Add <connect:maxconnwarn>
Created the maxconnwarn variable in the connect block, so you can make
connect blocks that only warns about max connections if you want to.
This reduces noise from connecting clients that have low maxlocal and/or
maxglobal. It is enabled by default.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/inspircd.conf.example | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index ffec002a2..322a6e820 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -268,6 +268,9 @@ # globalmax: Maximum global (network-wide) connections per IP (or CIDR mask, see below). globalmax="3" + # maxconnwarn: Enable warnings when localmax or globalmax is hit (defaults to on) + maxconnwarn="off" + # useident: Defines if users in this class MUST respond to a ident query or not. useident="no" |