diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/inspircd.conf.example | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index 9ecf02f5f..b0884a8f6 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -11,8 +11,9 @@ # This is an example of the config file for InspIRCd. # # Change the options to suit your network # # # -# Last updated on : 30/10/2002 # +# Last updated on : 24/04/2004 # # Written by : CC (cc@backchat.co.za) # +# Updated by : Brain (brain@inspircd.org) # # # ######################################################################## @@ -283,6 +284,39 @@ <module name="m_foobar.so"> +#-#-#-#-#-#-#-#-#-#-#-#-#-#- BAN OPTIONS -#-#-#-#-#-#-#-#-#-#-#-#-#-# +# # +# The ban tags define nick masks, host masks and ip ranges which are # +# banned from your server. All details in these tags are local to # +# Your server. # +# # +# # +# badip lines ban an ip range (same as a zline) # +# # +# ipmask - The ip range to ban (wildcards possible) # +# reason - Reason to display when disconnected # +# # +# badnick lines ban a nick mask (same as a qline) # +# # +# nick - Nick mask to ban (wildcards possible) # +# reason - Reason to display on /NICK # +# # +# badhost lines ban a user@host mask (same as a kline) # +# # +# host - ident@hostname (wildcards possible) # +# reason - Reason to display on disconnection # +# # + +<badip ipmask="69.69.69.69" reason="No porn here thanks."> + +<badnick nick="ChanServ" reason="Reserved For Services"> +<badnick nick="NickServ" reason="Reserved For Services"> +<badnick nick="OperServ" reason="Reserved For Services"> +<badnick nick="MemoServ" reason="Reserved For Services"> + +<badhost host="*@hundredz.n.hundredz.o.1337.kiddies.com" reason="Too many 1337 kiddiots"> +<badhost host="*@localhost" reason="No irc from localhost!"> + #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#- YAWN -#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # # @@ -297,3 +331,4 @@ # www.inspircd.org # # # ######################################################################### + |