Skip to content

Commit

Permalink
More documentation to example configs [jdhore]
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11166 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
danieldg committed Mar 4, 2009
1 parent 2089dfc commit 08d55d0
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
23 changes: 23 additions & 0 deletions conf/inspircd.conf.example
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@
# 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.
Expand Down Expand Up @@ -199,6 +205,16 @@
<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.*"

Expand All @@ -218,6 +234,10 @@
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="*"

Expand Down Expand Up @@ -247,6 +267,9 @@
# 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"

Expand Down
12 changes: 6 additions & 6 deletions conf/modules.conf.example
Original file line number Diff line number Diff line change
Expand Up @@ -867,9 +867,6 @@
# 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.
#
Expand Down Expand Up @@ -1047,11 +1044,13 @@
#<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">

#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
Expand All @@ -1067,7 +1066,8 @@
#<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">

#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
Expand Down

0 comments on commit 08d55d0

Please sign in to comment.