]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
More documentation to example configs [jdhore]
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 4 Mar 2009 00:46:12 +0000 (00:46 +0000)
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 4 Mar 2009 00:46:12 +0000 (00:46 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11166 e03df62e-2008-0410-955e-edbf42e46eb7

conf/inspircd.conf.example
conf/modules.conf.example

index 1cfbeb40b0331fe8435e68669a8eefc53c05e9b2..85796cfc522afedc19c05a0b7d7818aa02c6ab62 100644 (file)
         # description: Server description. Spaces are allowed.
         description="Waddle World"
 
+        # id: The SID to use for this server. This should not be uncommented
+        # unless there is a SID conflict. This must be three characters long.  
+        # The first character must be a digit [0-9], the remaining two chars 
+        # may be letters [A-Z] or digits.
+        #id="97K"
+
         # network: Network name given on connect to clients.
         # Should be the same on all servers on the network and
         # not contain spaces.
 <connect deny="3ffe::0/32">
 
 <connect 
+         # name: Name to use for this connect block. Mainly used for
+         # connect class inheriting.
+         name="secret"
+
+         # parent: This setting is to specify if this connect class
+         # inherits settings from any other. Put the other class' name
+         # in here to use it's settings. It will use all settings from
+         # the parent class unless any are changed in this class.
+         parent="main"
+
          # allow: What IP addresses/hosts to allow for this block.
          allow="196.12.*"
 
          port="6667">
 
 <connect 
+         # name: Name to use for this connect block. Mainly used for
+         # connect class inheriting.
+         name="main"
+
          # allow: What IP addresses/hosts to allow for this block.
          allow="*"
 
          # globalmax: Maximum global (network-wide) connections per IP.
          globalmax="3"
 
+         # useident: Defines if users in this class must respond to a ident query or not.
+         useident="no"
+
          # limit: How many users are allowed in this class
          limit="5000"
 
index 2b99e5b6e550f6e3b0ec46054b91e5ee52ab742e..21185cc57965e04c0c92a27d9a6be68067bf16e7 100644 (file)
 # oper go 'invisible' similar to unrealircd 3.1's +I mode. Note that
 # opers are still able to see invisible users, and if an oper with +Q
 # deopers, they will become visible. 
-# 
-# IMPORTANT NOTE: To allow this mode to be used by a type of oper, you
-# must first add the value canquiet="yes" to that oper's type tag.
 #
 # This module is oper-only.
 #
 #<module name="m_nicklock.so">
 
 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
-# No ctcp module: Adds the channel mode +C to block CTCPs
+# No ctcp module: Adds the channel mode +C to block CTCPs and extban C
+# to block CTCPs sent by specific users.
 #<module name="m_noctcp.so">
 
 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
-# No kicks module: Adds the +Q channel mode
+# No kicks module: Adds the +Q channel mode and the Q: extban to deny
+# certain users from kicking.
 #<module name="m_nokicks.so">
 
 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
 #<module name="m_nopartmsg.so">
 
 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
-# No Notice module: adds the channel mode +T
+# No Notice module: adds the channel mode +T and the extban T to block
+# specific users from noticing the channel.
 #<module name="m_nonotice.so">
 
 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#