diff options
author | Peter Powell <petpow@saberuk.com> | 2018-09-04 14:10:19 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-09-17 22:32:42 +0100 |
commit | de4e4860091fe5a9a530acdb25f9a17e22323acf (patch) | |
tree | 60d30381eff96f2ddae193d0860b9bb400287e7a /docs/conf/modules.conf.example | |
parent | 9a312de26b742e9c399a84a70b175a88fb4bc1ac (diff) |
Improvements and bugfixes to the cgiirc module.
- Allow the ident for ident type hosts to be set in the config.
- Consistently check clone counts, connect classes, and xlines for
all users regardless of their cgiirc host type.
- Remove some obsolete code from when gateway clients had their IP
changed in OnCheckReady.
- Don't allow a gateway client to match both a WebIRC and an ident
host.
Diffstat (limited to 'docs/conf/modules.conf.example')
-rw-r--r-- | docs/conf/modules.conf.example | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 5635e717a..9ee8bf819 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -357,11 +357,17 @@ # address in the ident sent by the user. This is not recommended as it # only works with IPv4 connections. # -# When using this method you must specify a wildcard mask or CIDR range to -# allow gateway connections from. -# -# <cgihost type="ident" mask="198.51.100.0/24"> -# <cgihost type="ident" mask="*.ident.gateway.example.com"> +# When using this method you must specify a wildcard mask or CIDR range to allow +# gateway connections from. You can also optionally configure the static value +# that replaces the IP in the ident to avoid leaking the real IP address of +# gateway clients (defaults to "gateway" if not set). +# +# <cgihost type="ident" +# mask="198.51.100.0/24" +# newident="wibble"> +# <cgihost type="ident" +# mask="*.ident.gateway.example.com" +# newident="wobble"> # # By default gateway connections are logged to the +w snomask. If you # do not want this to happen then you can uncomment this to disable it. |