diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-24 20:01:06 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-24 20:01:06 +0000 |
commit | 9927dccff26955e79f3c193e931afac019c35ce2 (patch) | |
tree | 5053182414206b6693e738d58dbca43c0f542170 /docs | |
parent | 800ebbf95d489010e3a99b4975c9b864d96cd0d2 (diff) |
Q-lines fully working, can add and remove other types of ban (but not enforced yet)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@714 e03df62e-2008-0410-955e-edbf42e46eb7
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 # # # ######################################################################### + |