diff options
author | Robby <robby@chatbelgie.be> | 2020-11-29 22:16:44 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-11-29 22:22:15 +0000 |
commit | b04cc4a74eec93f16eb0370eed47d96bde582d15 (patch) | |
tree | 5aba95d55692b3c06fcef5c5bcc6dccdd263a751 /docs | |
parent | 6d54b264e94003f773e37a4542a3e2659bbd3022 (diff) |
Document that exemptions configured in <options:exemptchanops> can be negated.
Change the <badnick> example in inspircd.conf.example to another nick, since ChanServ is already covered by examples/services/generic.conf.example.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf/inspircd.conf.example | 9 | ||||
-rw-r--r-- | docs/conf/modules.conf.example | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index 32bb9ad50..77b7db622 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -685,8 +685,9 @@ # - stripcolor Channel mode +S - strips formatting codes from # messages (requires the stripcolor module). # - topiclock Channel mode +t - limits changing the topic to (half)ops - # You can also configure this on a per-channel basis with a channel mode. - # See m_exemptchanops in modules.conf.example for more details. + # You can also configure this on a per-channel basis with a channel mode and + # even negate the configured exemptions below. + # See exemptchanops in modules.conf.example for more details. exemptchanops="censor:o filter:o nickflood:o nonick:v regmoderated:o" # invitebypassmodes: This allows /INVITE to bypass other channel modes. @@ -962,10 +963,10 @@ <badnick # nick: Nick to disallow. Wildcards are supported. - nick="ChanServ" + nick="Tr0ll123" # reason: Reason to display on /NICK. - reason="Reserved for a network service"> + reason="Don't use this nick."> <badhost # host: ident@hostname to ban. diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 228244980..7b80c902b 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -883,6 +883,8 @@ # See <options:exemptchanops> in inspircd.conf.example for a more # # detailed list of the restriction modes that can be exempted. # # These are settable using: /MODE #chan +X <restriction>:<status> # +# Furthermore, the exemptions configured in <options:exemptchanops> # +# can also be negated by using: /MODE #chan +X <restriction>:* # #<module name="exemptchanops"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# |