]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/inspircd.conf.example
Remove some debug
[user/henk/code/inspircd.git] / docs / inspircd.conf.example
1 ########################################################################
2 #                                                                      #
3 #               ___                ___ ____   ____    _                #
4 #              |_ _|_ __  ___ _ __|_ _|  _ \ / ___|__| |               #
5 #               | || '_ \/ __| '_ \| || |_) | |   / _` |               #
6 #               | || | | \__ \ |_) | ||  _ <| |__| (_| |               #
7 #              |___|_| |_|___/ .__/___|_| \_\\____\__,_|               #
8 #                            |_|                                       #
9 #      ____             __ _                       _   _               #
10 #     / ___|___  _ __  / _(_) __ _ _   _ _ __ __ _| |_(_) ___  _ __    #
11 #    | |   / _ \| '_ \| |_| |/ _` | | | | '__/ _` | __| |/ _ \| '_ \   #
12 #    | |__| (_) | | | |  _| | (_| | |_| | | | (_| | |_| | (_) | | | |  #
13 #     \____\___/|_| |_|_| |_|\__, |\__,_|_|  \__,_|\__|_|\___/|_| |_|  #
14 #                            |___/                                     #
15 #                                                                      #
16 ##################################||####################################
17                                  #||#                                   
18 ##################################||####################################
19 #                                                                      #
20 #         This is an example of the config file for InspIRCd.          #
21 #             Change the options to suit your network                  #
22 #                                                                      #
23 #                Last updated on : 03 Feb 2007                         #
24 #                                                                      #
25 #    ____                _   _____ _     _       ____  _ _   _         #
26 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |        #
27 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |        #
28 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|        #
29 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)        #
30 #                                                                      #
31 #   Lines prefixed with READ THIS BIT, as shown above, are IMPORTANT   #
32 #   lines, and you REALLY SHOULD READ THEM. Yes, THIS MEANS YOU. Even  #
33 #   if you've configured InspIRCd before, these probably indicate      #
34 #   something new or different to this version and you SHOULD READ IT. #
35 #                                                                      #
36 ########################################################################
37 #                                                                      #
38 #         Unalphabeticalise the modules list at your own risk          #
39 #                                                                      #
40 ########################################################################
41
42
43 #-#-#-#-#-#-#-#-#-#-#-#-  SERVER DESCRIPTION  -#-#-#-#-#-#-#-#-#-#-#-#-
44 #                                                                     #
45 #   Here is where you enter the information about your server.        #
46 #                                                                     #
47 #  Syntax is as follows:                                              #
48 #                                                                     #
49 #     <server name="server.name"                                      #
50 #      description="Server Description"                               #
51 #      network="MyNetwork">                                           #
52 #                                                                     #
53
54 <server name="penguin.omega.org.za"
55         description="Waddle World"
56         network="Omega">
57
58
59 #-#-#-#-#-#-#-#-#-#-#-#-   ADMIN INFORMATION   -#-#-#-#-#-#-#-#-#-#-#-#
60 #                                                                     #
61 #   Describes the Server Administrator's real name (optionally),      #
62 #   nick, and email address.                                          #
63 #                                                                     #
64 #  Syntax is as follows:                                              #
65 #       <admin name="real name"                                       #
66 #              nick="nick name"                                       #
67 #              email="email@address.com">                             #
68 #                                                                     #
69
70 <admin  name="Johnny English"
71         nick="MI5"
72         email="MI5@the.best.secret.agent">
73
74
75 #-#-#-#-#-#-#-#-#-#-#-#-   PORT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-
76 #                                                                     #
77 #   Enter the port and address bindings here.                         #
78 #                                                                     #
79 #  bind address - specifies which address ports bind to. Leaving this #
80 #                 field blank binds the port to all IPs available.    #
81 #                                                                     #
82 #  port         - The port number to bind to. You may specify a port  #
83 #                 range here, e.g. "6667-6669,7000,7001". If you do   #
84 #                 this, the server will count each port within your   #
85 #                 range as a seperate binding, making the above       #
86 #                 example equivalent to five seperate bind tags.      #
87 #                 A failure on one port in the range does not prevent #
88 #                 the entire range from being bound, just that one    #
89 #                 port number.                                        #
90 #                                                                     #
91 #  type         - can be 'clients' or 'servers'. The clients type is  #
92 #                 a standard tcp based socket, the servers type is a  #
93 #                 also a TCP based connection but of a different      #
94 #                 format. SSL support is provided by modules, to      #
95 #                 enable SSL support, please read the module section  #
96 #                 of this configuration file.                         #
97 #                                                                     #
98 #  ssl          - When using m_ssl_gnutls.so or m_ssl_openssl.so      #
99 #                 modules, you must define this value to use ssl on   #
100 #                 that port. valid values are 'gnutls' or 'openssl'   #
101 #                 respectively. If the module is not loaded, this     #
102 #                 setting is ignored.                                 #
103 #                                                                     #
104 #  transport    - If you have m_spanningtree.so loaded, along with    #
105 #                 either of the SSL modules (m_ssl_gnutls or          #
106 #                 m_ssl_openssl) or m_ziplinks.so, then you may make  #
107 #                 use of this value.                                  #
108 #                 setting it to 'openssl' or 'gnutls' or 'zip'        #
109 #                 indicates that the port should accept connections   #
110 #                 using the given transport name. Transports are      #
111 #                 layers which sit on top of a socket and change the  #
112 #                 way data is sent and received, e.g. encryption,     #
113 #                 compression, and other such things. Because this    #
114 #                 may not be limited in use to just encryption,       #
115 #                 the 'ssl' value used for client ports does not      #
116 #                 exist for servers, and this value is used instead.  #
117 #    ____                _   _____ _     _       ____  _ _   _        #
118 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
119 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
120 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
121 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
122 #                                                                     #
123 #  If you want to link servers to InspIRCd you must load the          #
124 #  m_spanningtree module! Please see the modules list below for       #
125 #  information on how to load this module! If you do not load this    #
126 #  module, server ports will NOT be bound!                            #
127 #                                                                     #
128 #  Leaving address empty binds to all available interfaces            #
129 #                                                                     #
130 #  Syntax is as follows:                                              #
131 #                                                                     #
132 # <bind address="ip address" port="port" type="clients">              #
133 # <bind address="ip address" port="port" type="servers">              #
134 #                                                                     #
135 # If InspIRCd is built for IPV6, and you wish to accept IPV4 clients, #
136 # then you can specify IPV4 ip addresses here to bind. You may also   #
137 # use the 4in6 notation, ::ffff:1.2.3.4, where 1.2.3.4 is the IPV4    #
138 # address to bind the port, but as of InspIRCd 1.1.1, this is not     #
139 # required.                                                           #
140 #                                                                     #
141 # ------------------------------------------------------------------- #
142 #                                                                     #
143 # PLEASE NOTE: If you have build InspIRCd as an ipv6 server, and you  #
144 # specify an empty bind address, the binding will be bound to ALL THE #
145 # IPV6 IP ADDRESSES, and not the ipv4 addresses. If you are using an  #
146 # ipv6 enabled InspIRCd and want to bind to multiple IPV4 addresses   #
147 # in this way, you must specify them by hand. If you have built the   #
148 # server for ipv4 connections only, then specifying an empty bind     #
149 # address binds the port to all ipv4 IP addresses, as expected.       #
150 #                                                                     #
151
152 <bind address="" port="6000" type="clients">
153 <bind address="" port="6660-6669" type="clients" ssl="gnutls">
154
155 # When linking servers, the openssl and gnutls transports are largely
156 # link-compatible and can be used alongside each other or either/or
157 # on each end of the link without any significant issues.
158
159 <bind address="" port="7000,7001" type="servers">
160 <bind address="1.2.3.4" port="7005" type="servers" transport="openssl">
161
162
163 #-#-#-#-#-#-#-#-#-#-  DIE/RESTART CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-
164 #                                                                     #
165 #   You can configure the passwords here which you wish to use for    #
166 #   the die and restart commands. Only trusted ircops who will        #
167 #   need this ability should know the die and restart password.       #
168 #                                                                     #
169 #  Syntax is as follows:                                              #
170 #       <power diepass="die password" restartpass="restart password"  #
171 #        pause="secs before dying">                                   #
172 #                                                                     #
173
174 <power diepass="diepass" restartpass="restartpass" pause="2">
175
176
177 #-#-#-#-#-#-#-#-#-#  INCLUDE CONFIGURATION  #-#-#-#-#-#-#-#-#-#-#-#-#-#
178 #                                                                     #
179 # This optional tag allows you to include another config file         #
180 # allowing you to keep your configuration tidy. The configuration     #
181 # file you include will be treated as part of the configuration file  #
182 # which includes it, in simple terms the inclusion is transparent.    #
183 #                                                                     #
184 # All paths to config files are relative to the directory of the main #
185 # config file inspircd.conf, unless the filename starts with a forward#
186 # slash (/) in which case it is treated as an absolute path.          #
187 #                                                                     #
188 # Syntax is as follows:                                               #
189 #<include file="file.conf">                                           #
190 #                                                                     #
191
192 #-#-#-#-#-#-#-#-#-#-  CONNECTIONS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
193 #                                                                     #
194 #   This is where you can configure which connections are allowed     #
195 #   and denied access onto your server.                               #
196 #   The password is optional.                                         #
197 #   You may have as many of these as you require.                     #
198 #   To allow/deny all connections use a *                             #
199 #                                                                     #
200 #  Syntax is as follows:                                              #
201 #                                                                     #
202 #       <connect allow="ip mask">                                     #
203 #       <connect allow="ip mask" password="blahblah">                 #
204 #       <connect allow="ip mask" password="blah" timeout="10">        #
205 #       <connect allow="ip mask" timeout="blah" flood="5">            #
206 #       <connect allow="ip mask" threshold="8" pingfreq="120">        #
207 #       <connect allow="ip mask" sendq="99999" revcq="696969">        #
208 #       <connect allow="ip mask" localmax="3" globalmax="3">          #
209 #       <connect deny="ip mask">                                      #
210 #                                                                     #
211 #   IP masks may be specified in CIDR format or wildcard format,      #
212 #   for IPV4 and IPV6.                                                #
213 #                                                                     #
214 #   You may optionally include timeout="x" on any allow line, which   #
215 #   specifies the amount of time given before an unknown connection   #
216 #   is closed if USER/NICK/PASS are not given. This value is in secs  #
217 #                                                                     #
218 #   You should also include a flood="x" line which indicates          #
219 #   the number of lines a user may place into their buffer at once    #
220 #   before they are disconnected for excess flood. This feature can   #
221 #   not be disabled, however it can be set to extremely high values,  #
222 #   rendering it effectively disabled. A recommended value is 10.     #
223 #   A counter is maintained for each user which is reset every        #
224 #   'threshold' seconds and specifying this threshold value with      #
225 #   threshold="X" indicates how often the counter is reset. For       #
226 #   example, with flood="5" and threshold="8", the user may not send  #
227 #   more than 5 lines in 8 secs.                                      #
228 #                                                                     #
229 #   You may optionally specify the sendq size and ping frequency of   #
230 #   each connect:allow line using the pingfreq="X" and sendq="X"      #
231 #   settings as shown in the full example below.                      #
232 #   The ping frequency is specified in seconds, and the sendq size    #
233 #   in bytes. It is recommended, although not enforced, that you      #
234 #   should never set your sendq size to less than 8k. Send Queues are #
235 #   dynamically allocated and can grow as needed up to the maximum    #
236 #   size specified.                                                   #
237 #                                                                     #
238 #   The optional recvq value is the maximum size which users in this  #
239 #   group may grow their receive queue to. This is recommended to be  #
240 #   kept pretty low compared to the sendq, as users will always       #
241 #   receive more than they send in normal circumstances. The default  #
242 #   if not specified is 4096.                                         #
243 #                                                                     #
244 #   IMPORTANT NOTE, CALL THE CONFUSION POLICE!                        #
245 #   The sendq is the data waiting to be sent TO THE USER.             #
246 #   The recvq is the data being received FROM THE USER.               #
247 #   The names sendq and recvq are from the SERVER'S PERSPECTIVE not   #
248 #   that of the user... Just to clear up any confusion or complaints  #
249 #   that these are backwards :p                                       #
250 #                                                                     #
251 #   The localmax and globalmax values can be used to enforce local    #
252 #   and global session limits on connections. The session limits are  #
253 #   counted against all users, but applied only to users within the   #
254 #   class. For example, if you had a class 'A' which has a session    #
255 #   limit of 3, and a class 'B' which has a session limit of 5, and   #
256 #   somehow, two users managed to get into class B which also match   #
257 #   class A, there is only one connection left for this IP now in A,  #
258 #   but if they can connect again to B, there are three. You get the  #
259 #   idea (i hope).                                                    #
260 #                                                                     #
261
262 <connect allow="196.12.*"  password="secret">
263 <connect allow="*" timeout="60" flood="20" threshold="1" pingfreq="120" sendq="262144" recvq="8192" localmax="3" globalmax="3">
264
265 <connect deny="69.254.*">
266 <connect deny="3ffe::0/32">
267
268
269 #-#-#-#-#-#-#-#-#-#-#-#-  CLASS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-
270 #                                                                     #
271 #   Classes are a group of commands which are grouped together        #
272 #   and given a unique name. They used to define which commands       #
273 #   are available to certain types of Operators.                      #
274 #                                                                     #
275 #  Syntax is as follows:                                              #
276 #                                                                     #
277 #       <class name="name" commands="oper commands">                  #
278 #                                                                     #
279 #    ____                _   _____ _     _       ____  _ _   _        #
280 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
281 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
282 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
283 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
284 #                                                                     #
285 #  You are not forced to give these classes the names given below.    #
286 #  You can create your own named classes, if you want, in fact that   #
287 #  is the whole idea of this system!                                  #
288 #                                                                     #
289 #  Note: It is possible to make a class which covers all available    #
290 #  commands. To do this, specify commands="*". This is not really     #
291 #  recommended, as it negates the whole purpose of the class system,  #
292 #  however it is provided for fast configuration (e.g. in test nets)  #
293 #                                                                     #
294
295 <class name="Shutdown" commands="DIE RESTART REHASH LOADMODULE UNLOADMODULE RELOAD">
296 <class name="ServerLink" commands="CONNECT SQUIT RCONNECT MKPASSWD MKSHA256">
297 <class name="BanControl" commands="KILL GLINE KLINE ZLINE QLINE ELINE">
298 <class name="OperChat" commands="WALLOPS GLOBOPS SETIDLE SPYLIST SPYNAMES">
299 <class name="HostCloak" commands="SETHOST SETIDENT SETNAME CHGHOST CHGIDENT">
300
301
302 #-#-#-#-#-#-#-#-#-#-#-#-  OPERATOR COMPOSITION   -#-#-#-#-#-#-#-#-#-#-#
303 #                                                                     #
304 #   This is where you specify which types of operators you have on    #
305 #   your server, as well as the commands they are allowed to use.     #
306 #   This works alongside with the classes specified above.            #
307 #                                                                     #
308 #  type name  - a name for the combined class types                   #
309 #               a type name cannot contain spaces, however if you     #
310 #               put an _ symbol in the name, it will be translated    #
311 #               to a space when displayed in a WHOIS.                 #
312 #                                                                     #
313 #  classes    - specified above, used for flexibility for the         #
314 #               server admin to decide on which operators get         #
315 #               what commands. Class names are case sensitive,        #
316 #               seperate multiple class names with spaces.            #
317 #                                                                     #
318 #  host       - optional hostmask operators will receive on oper-up.  #
319 #                                                                     #
320 #  Syntax is as follows:                                              #
321 #                                                                     #
322 #     <type name="name" classes="class names" host="oper hostmask">   #
323 #                                                                     #
324 #    ____                _   _____ _     _       ____  _ _   _        #
325 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
326 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
327 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
328 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
329 #                                                                     #
330 #  You are not forced to give these types the names given below.      #
331 #  You can create your own named types, if you want, in fact that     #
332 #  is the whole idea of this system!                                  #
333 #                                                                     #
334
335 <type name="NetAdmin" classes="OperChat BanControl HostCloak Shutdown ServerLink" host="netadmin.omega.org.za">
336 <type name="GlobalOp" classes="OperChat BanControl HostCloak ServerLink" host="ircop.omega.org.za">
337 <type name="Helper" classes="HostCloak" host="helper.omega.org.za">
338
339
340 #-#-#-#-#-#-#-#-#-#-#-  OPERATOR CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
341 #                                                                     #
342 #   Opers are defined here. This is a very important section.         #
343 #   Remember to only make operators out of truthworthy people.        #
344 #                                                                     #
345 #  name        - oper name, This is case sensitive, so it is best to  #
346 #                use lower-case.                                      #
347 #                                                                     #
348 #  password    - password to oper-up, also case sensitive.            #
349 #                encryption is supported via modules. You may load    #
350 #                modules for MD5 or SHA256 encryption, and if you do, #
351 #                this value will be a hash value, otherwise put a     #
352 #                plaintext password in this value.                    #
353 #                                                                     #
354 #  host        - hosts of client allowed to oper-up.                  #
355 #                wildcards accepted, seperate multiple hosts with a   #
356 #                space. You may also specify CIDR ip addresses.       #
357 #                                                                     #
358 #  fingerprint - When using the m_ssl_oper_cert.so module, you may    #
359 #                specify a key fingerprint here. This can be obtained #
360 #                using the /fingerprint command whilst the module is  #
361 #                loaded, or from the notice given to you when you     #
362 #                connect to the ircd using a client certificate,      #
363 #                and will lock this oper block to only the user who   #
364 #                has that specific key/certificate pair.              #
365 #                This enhances security a great deal, however it      #
366 #                requires that opers use clients which can send ssl   #
367 #                client certificates, if this is configured for that  #
368 #                oper. Note that if the m_ssl_oper.so module is not   #
369 #                loaded, and/or one of m_ssl_openssl or m_ssl_gnutls  #
370 #                is not loaded, this configuration option has no      #
371 #                effect and will be ignored.                          #
372 #                                                                     #
373 #  type        - Defines the kind of operator. This must match a type #
374 #                tag you defined above, and is case sensitive.        #
375 #                                                                     #
376 #  Syntax is as follows:                                              #
377 #       <oper name="login"                                            #
378 #             password="pass"                                         #
379 #             host="hostmask@of.oper"                                 #
380 #             fingerprint="hexsequence"                               #
381 #             type="oper type">                                       #
382 #                                                                     #
383
384 <oper   name="Brain"
385         password="s3cret"
386         host="ident@dialup15.isp.com *@localhost *@server.com *@3ffe::0/16"
387         type="NetAdmin">
388
389
390 #-#-#-#-#-#-#-#-#-#-#-  SERVER LINK CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
391 #                                                                     #
392 # Defines which servers can link to this one, and which servers this  #
393 # server may create outbound links to.                                #
394 #                                                                     #
395 # name        -   The name is the canocial name of the server, does   #
396 #                 not have to resolve - but it is expected to be set  #
397 #                 in the remote servers connection info.              #
398 #                                                                     #
399 # ipaddr      -   Valid host or ip address for remote server. These   #
400 #                 hosts are resolved on rehash, and cached, if you    #
401 #                 specify a hostname, so if you find that your server #
402 #                 is still trying to connect to an old IP after you   #
403 #                 have updated your dns, try rehashing and then       #
404 #                 attempting the connect again.                       #
405 #                                                                     #
406 # port        -   The TCP port for the remote server.                 #
407 #                                                                     #
408 # sendpass    -   Password to send to create an outbound connection   #
409 #                 to this server.                                     #
410 #                                                                     #
411 # recvpass    -   Password to receive to accept an inbound connection #
412 #                 from this server.                                   #
413 #                                                                     #
414 # autoconnect -   Sets the server to autoconnect. Where x is the num. #
415 # (optional)      of seconds between attempts. e.g. 300 = 5 minutes.  #
416 #                                                                     #
417 # transport     - If defined, this is a transport name implemented by #
418 #                 another module. Transports are layers on top of     #
419 #                 plaintext connections, which alter them in certain  #
420 #                 ways. Currently the three supported transports are  #
421 #                 'openssl' and 'gnutls' which are types of SSL       #
422 #                 encryption, and 'zip' which is for compression.     #
423 #                 If you define a transport, both ends of the         #
424 #                 connection must use a compatible transport for the  #
425 #                 link to succeed. OpenSSL and GnuTLS are link-       #
426 #                 compatible with each other.                         #
427 #                                                                     #
428 # hidden        - When using m_spanningtree.so for linking. you may   #
429 #                 set this to 'yes', and if you do, the IP address/   #
430 #                 hostname of this connection will NEVER be shown to  #
431 #                 any opers on the network. In /STATS c its address   #
432 #                 will show as *@<hidden>, and during CONNECT and     #
433 #                 inbound connections, its IP will show as <hidden>   #
434 #                 UNLESS the connection fails (e.g. due to a bad      #
435 #                 password or servername)                             #
436 #                                                                     #
437 # allowmask     - When this is defined, it indicates a range of IP    #
438 #                 addresses to allow for this link (You may use CIDR  #
439 #                 or wildcard form for this address).                 #
440 #                 e.g. if your server is going to connect to you from #
441 #                 the range 1.2.3.1 through 1.2.3.255, put 1.2.3.0/24 #
442 #                 into this value. If it is not defined, then only    #
443 #                 the ipaddr field of the server shall be allowed.    #
444 #                                                                     #
445 # failover      - If you define this option, it must be the name of a #
446 #                 different link tag in your configuration. This      #
447 #                 option causes the ircd to attempt a connection to   #
448 #                 the failover link in the event that the connection  #
449 #                 to this server fails. For example, you could define #
450 #                 two hub uplinks to a leaf server, and set an        #
451 #                 american server to autoconnect, with a european     #
452 #                 hub as its failover. In this situation, your ircd   #
453 #                 will only try the link to the european hub if the   #
454 #                 american hub is unreachable. NOTE that for the      #
455 #                 intents and purposes of this option, an unreachable #
456 #                 server is one which DOES NOT ANSWER THE CONNECTION. #
457 #                 If the server answers the connection with accept(), #
458 #                 EVEN IF THE CREDENTIALS ARE INVALID, the failover   #
459 #                 link will not be tried! Failover settings will also #
460 #                 apply to autoconnected servers as well as manually  #
461 #                 connected ones.                                     #
462 #                                                                     #
463 # timeout       - If this is defined, then outbound connections will  #
464 #                 time out if they are not connected within this many #
465 #                 seconds. If this is not defined, the default of ten #
466 #                 seconds is used.                                    #
467 #                                                                     #
468 # bind          - If you specify this value, then when creating an    #
469 #                 outbound connection to the given server, the IP you #
470 #                 place here will be bound to. This is for multi-     #
471 #                 homed servers which may have multiple IP addresses. #
472 #                 If you do not define this value, the first IP that  #
473 #                 is not empty or localhost from your <bind> tags     #
474 #                 will be bound to. This is usually acceptable,       #
475 #                 however if your server has multiple network cards   #
476 #                 then you may have to manually specify the bind      #
477 #                 value instead of leaving it to automatic binding.   #
478 #                 You can usually tell if you need to set this by     #
479 #                 looking for the error 'Could not assign requested   #
480 #                 address' in your log when connecting to servers.    #
481 #                                                                     #
482 # to u:line a server (give it extra privilages required for running   #
483 # services, Q, etc) you must include the <uline server> tag as shown  #
484 # in the example below. You can have as many of these as you like.    #
485 #                                                                     #
486 # WARNING: Unlike other ircds, u:lining a server allows ALL users on  #
487 # that server to operoverride modes. This should only be used for     #
488 # services and protected oper servers!                                #
489 #                                                                     #
490 # ------------------------------------------------------------------- #
491 #                                                                     #
492 # NOTE: If you have built your server as an ipv6 server, then when a  #
493 # DNS lookup of a server's host occurs, AAAA records (ipv6) are       #
494 # priorotized over A records (ipv4). Therefore, if the server you are #
495 # connecting to has both an IPV6 ip address and an IPV4 ip address in #
496 # its DNS entry, the IPV6 address will *always* be selected. To       #
497 # change this behaviour simply specify the IPV4 IP address rather     #
498 # than the hostname of the server.                                    #
499 #                                                                     #
500 # ------------------------------------------------------------------- #
501 #                                                                     #
502 #    ____                _   _____ _     _       ____  _ _   _        #
503 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
504 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
505 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
506 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
507 #                                                                     #
508 #  If you want to link servers to InspIRCd you must load the          #
509 #  m_spanningtree module! Please see the modules list below for       #
510 #  information on how to load this module! If you do not load this    #
511 #  module, server links will NOT work!                                #
512 #                                                                     #
513 #  Also, if you define any transports, you must load the modules for  #
514 #  these transports BEFORE you load m_spanningtree, e.g. place them   #
515 #  above it in the configuration file. Currently this means the three #
516 #  modules m_ssl_gnutls, m_ziplinks and m_ssl_openssl, depending on   #
517 #  which you choose to use.                                           #
518 #                                                                     #
519
520 <link name="hub.penguin.org"
521         ipaddr="penguin.box.com"
522         port="7000"
523         allowmask="69.58.44.0/24"
524         autoconnect="300"
525         failover="hub.other.net"
526         timeout="15"
527         transport="gnutls"
528         bind="1.2.3.4"
529         sendpass="outgoing!password"
530         recvpass="incoming!password">
531
532 <link name="services.antarctic.com"
533         ipaddr="localhost"
534         port="7000"
535         allowmask="127.0.0.0/8"
536         sendpass="penguins"
537         recvpass="polarbears">
538
539 <uline server="services.antarctic.com">
540
541
542 #-#-#-#-#-#-#-#-#-#-  MISCELLANEOUS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
543 #                                                                     #
544 #   These options let you define the path to your motd and rules      #
545 #   files. If these are relative paths, they are relative to the      #
546 #   configurtion directory.                                           #
547 #                                                                     #
548
549 <files  motd="inspircd.motd"
550         rules="inspircd.rules">
551
552 #-#-#-#-#-#-#-#-#-#-#-#-#-#-# DNS SERVER -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
553 #                                                                     #
554 # Define your DNS server address here. InspIRCd has its own resolver. #
555 # If you do not define this value, the first dns server from your     #
556 # /etc/resolv.conf file is read. If no entries are found in this file #
557 # or the file cannot be opened, the default value '127.0.0.1' is used #
558 # instead. The timeout value is in seconds.                           #
559 #                                                                     #
560 #    ____                _   _____ _     _       ____  _ _   _        #
561 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
562 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
563 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
564 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
565 #                                                                     #
566 # When choosing a server, be sure to choose one which will do a       #
567 # RECURSIVE LOOKUP. InspIRCd's resolver does not currently do these   #
568 # recursive lookups itself, to save time and resources. The dns       #
569 # server recommended by the InspIRCd team is bind, available from the #
570 # ISC website. If your DNS server does not do a recursive lookup, you #
571 # will be able to notice this by the fact that none of your users are #
572 # resolving even though the DNS server appears to be up! Most ISP and #
573 # hosting provider DNS servers support recursive lookups.             #
574 #                                                                     #
575 # ------------------------------------------------------------------- #
576 #                                                                     #
577 # NOTE: if you have built InspIRCd with IPV6 support, then both       #
578 # ipv6 and ipv4 addresses are allowed here, and also in the system    #
579 # resolv.conf file. Remember that an ipv4 dns server can still        #
580 # resolve ipv6 addresses, and vice versa.                             #
581 #                                                                     #
582
583 <dns server="127.0.0.1" timeout="5">
584
585 # An example of using an IPV6 nameserver
586 #<dns server="::1" timeout="5">
587
588 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#  PID FILE  -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
589 #                                                                     #
590 # Define the path to the PID file here. The PID file can be used to   #
591 # rehash the ircd from the shell or to terminate the ircd from the    #
592 # shell using shell scripts, perl scripts etc, and to monitor the     #
593 # ircd's state via cron jobs. If this is a relative path, it will be  #
594 # relative to the configuration directory, and if it is not defined,  #
595 # the default of 'inspircd.pid' is used.                              #
596 #                                                                     #
597
598 #<pid file="/path/to/inspircd.pid">
599
600 #-#-#-#-#-#-#-#-#-#-#-#-#- BANLIST LIMITS #-#-#-#-#-#-#-#-#-#-#-#-#-#-#
601 #                                                                     #
602 # Use these tags to customise the ban limits on a per channel basis.  #
603 # the tags are read from top to bottom, and any tag found which       #
604 # matches the channels name applies the banlimit to that channel.     #
605 # It is advisable to put an entry with the channel as '*' at the      #
606 # bottom of the list. If none are specified or no maxbans tag is      #
607 # matched, the banlist size defaults to 64 entries.                   #
608 #                                                                     #
609
610 <banlist chan="#morons" limit="128">
611 <banlist chan="*" limit="69">
612
613 #-#-#-#-#-#-#-#-#-#-#-  DISABLED COMMANDS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
614 #                                                                     #
615 # This tag is optional, and specifies one or more commands which are  #
616 # not available to non-operators. For example you may wish to disable #
617 # NICK and prevent non-opers from changing their nicknames.           #
618 # Note that any disabled commands take effect only after the user has #
619 # 'registered' (e.g. after the initial USER/NICK/PASS on connection)  #
620 # so for example disabling NICK will not cripple your network.        #
621 #                                                                     #
622
623 #<disabled commands="TOPIC MODE">
624
625
626 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-  RTFM LINE  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
627 #                                                                     #
628 #   Just remove this... Its here to make you read ALL of the config   #
629 #   file options ;)                                                   #
630
631 <die value="You should probably edit your config *PROPERLY* and try again.">
632
633
634
635 #-#-#-#-#-#-#-#-#-#-#-#-#-  SERVER OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
636 #                                                                     #
637 #   Settings to define which features are useable on your server.     #
638 #                                                                     #
639 #  prefixquit    - a prefix for a client's quit message               #
640 #                                                                     #
641 #  loglevel      - specifies what detail of messages to log in the    #
642 #                  log file. You may select from debug, verbose,      #
643 #                  default, sparse and none.                          #
644 #                                                                     #
645 #  allowhalfop   - allows the +h channel mode                         #
646 #                                                                     #
647 #  noservices    - If noservices is true, yes, or 1, then the first   #
648 #                  user into a channel gets founder status. This is   #
649 #                  only useful on networks running the m_chanprotect  #
650 #                  module without services.                           #
651 #                                                                     #
652 #  qaprefixes    - If qaprefixes is true, yes, or 1, then users       #
653 #                  with +q or +a will get the ~ or & prefixes         #
654 #                  used in unreal. This is only useful on networks    #
655 #                  running the m_chanprotect module                   #
656 #                                                                     #
657 #  deprotectself - If this value is set to yes, true, or 1, then any  #
658 #                  user with +q or +a may remove the +q or +a from    #
659 #                  themselves. The default setting is to not enable   #
660 #                  this feature, which stops even the founder taking  #
661 #                  away their founder status without using services.  #
662 #                                                                     #
663 #  cyclehosts    - If this is set to true, yes or 1, then when a      #
664 #                  user's hostname changes, they will appear to quit  #
665 #                  and then rejoin with their new host. This prevents #
666 #                  clients from being confused by host changes,       #
667 #                  especially in the case of bots, and it is          #
668 #                  recommended that this option is enabled.           #
669 #                                                                     #
670 #  netbuffersize - size of the buffer used to receive data from       #
671 #                  clients. The ircd may only read() this amount      #
672 #                  of text in one go at any time. (OPTIONAL)          #
673 #                                                                     #
674 #  maxwho        - The maximum number of results returned by a /WHO   #
675 #                  query. This is to prevent /WHO being used as a     #
676 #                  spam vector or means of flooding an ircd. The      #
677 #                  default is 128, it is not recommended to raise it  #
678 #                  above 1024. Values up to 65535 are permitted.      #
679 #                                                                     #
680 #  somaxconn     - The maximum number of sockets that may be waiting  #
681 #                  in the accept queue. This usually allows the ircd  #
682 #                  to soak up more connections in a shorter space of  #
683 #                  time when increased but please be aware there is a #
684 #                  system defined maximum value to this, the same way #
685 #                  there is a system defined maximum number of file   #
686 #                  descriptors. Some systems may only allow this to   #
687 #                  be up to 5 (ugh) while others such as FreeBSD will #
688 #                  default to a much nicer 128.                       #
689 #                                                                     #
690 #  moduledir     - This optional value indicates a runtime change of  #
691 #                  the location where modules are to be found. This   #
692 #                  does not add a supplementary directory. There can  #
693 #                  only be one module path.                           #
694 #                                                                     #
695 #  softlimit     - This optional feature allows a defined softlimit.  #
696 #                  if defined sets a soft maxconnections value, has   #
697 #                  to be less than the ./configure maxclients         #
698 #                                                                     #
699 #  userstats     - The userstats field is optional and specifies      #
700 #                  which stats characters in /STATS may be requested  #
701 #                  by non-operators. Stats characters in this field   #
702 #                  are case sensitive and are allowed to users        #
703 #                  independent of if they are in a module or the core #
704 #                                                                     #
705 #  operspywhois  - If this is set then when an IRC operator uses      #
706 #                  /WHOIS on a user they will see all channels, even  #
707 #                  ones if channels are secret (+s), private (+p) or  #
708 #                  if the target user is invisible +i.                #
709 #                                                                     #
710 #  customversion - If you specify this configuration item, and it is  #
711 #                  not set to an empty value, then when a user does   #
712 #                  a /VERSION command on the ircd, this string will   #
713 #                  be displayed as the second portion of the output,  #
714 #                  replacing the system 'uname', compile flags and    #
715 #                  socket engine/dns engine names. You may use this   #
716 #                  to enhance security, or simply for vanity.         #
717 #                                                                     #
718 #  maxtargets    - The maxtargets field is optional, and if not       #
719 #                  defined, defaults to 20. It indicates the maximum  #
720 #                  number of targets which may be given to commands   #
721 #                  such as PRIVMSG, KICK etc.                         #
722 #                                                                     #
723 #  hidesplits    - When set to 'yes', will hide split server names    #
724 #                  from non-opers. Non-opers will see '*.net *.split' #
725 #                  instead of the server names in the quit message,   #
726 #                  identical to the way IRCu displays them.           #
727 #                                                                     #
728 #  hidebans      - When set to 'yes', will hide gline, kline, zline   #
729 #                  and qline quit messages from non-opers. For        #
730 #                  example, user A who is not an oper will just see   #
731 #                  (G-Lined) while user B who is an oper will see the #
732 #                  text (G-Lined: Reason here) instead.               #
733 #                                                                     #
734 #  hidewhois     - When defined with a non-empty value, the given     #
735 #                  text will be used in place of the user's server    #
736 #                  in WHOIS, when a user is WHOISed by a non-oper.    #
737 #                  For example, most nets will want to set this to    #
738 #                  something like '*.netname.net' to conceal the      #
739 #                  actual server the user is on.                      #
740 #                                                                     #
741 #  flatlinks     - When you are using m_spanningtree.so, and this     #
742 #                  value is set to true, yes or 1, /MAP and /LINKS    #
743 #                  will be flattened when shown to a non-oper.        #
744 #                                                                     #
745 #  hideulines    - When you are using m_spanningtree.so, and this     #
746 #                  value is set to true, yes or 1, then U-lined       #
747 #                  servers will be hidden in /LINKS and /MAP. For non #
748 #                  opers. Please be aware that this will also hide    #
749 #                  any leaf servers of a U-lined server, e.g. jupes.  #
750 #                                                                     #
751 #  nouserdns     - If set to 'yes', 'true' or '1', no user dns        #
752 #                  lookups will be performed for connecting users.    #
753 #                  this can save a lot of resources on very busy irc  #
754 #                  servers.                                           #
755 #                                                                     #
756 #  syntaxhints   - If set to 'yes', 'true' or '1', when a user does   #
757 #                  not give enough parameters for a command, a syntax #
758 #                  hint will be given (using the RPL_TEXT numeric)    #
759 #                  as well as the standard ERR_NEEDMOREPARAMS.        #
760 #                                                                     #
761 #  announcets    - If this value is defined to 'yes', 'true' or '1',  #
762 #                  then if a channel's timestamp is updated the users #
763 #                  on the channel will be informed of the change via  #
764 #                  a server notice to the channel with the old and    #
765 #                  new TS values in the timestamp. If you think this  #
766 #                  is just pointless noise, define the value to 0.    #
767 #                                                                     #
768 #  ircumsgprefix - Use undernet style message prefix for channel      #
769 #                  NOTICE and PRIVMSG adding the prefix to the line   #
770 #                  of text sent out. Eg. NOTICE @#test :@ testing     #
771 #                  vs off: NOTICE @#test :testing                     #
772 #
773 #  notimesync    - If this value is 'yes', 'true', or '1', time       #
774 #                  synchronization is disabled on this server. This   #
775 #                  means any servers you are linked to will not       #
776 #                  automatically synchronize time with you, and in    #
777 #                  most cases will just result in more bounced modes  #
778 #                  on netsplits. This option should be the same on    #
779 #                  all servers.                                       #
780 #                                                                     #
781
782 <options prefixquit="Quit: "
783          loglevel="default"
784          netbuffersize="10240"
785          maxwho="128"
786          noservices="no"
787          qaprefixes="no"
788          deprotectself="no"
789          somaxconn="128"
790          softlimit="12800"
791          userstats="Pu"
792          operspywhois="no"
793          customversion=""
794          maxtargets="20"
795          hidesplits="no"
796          hidebans="no"
797          hidewhois=""
798          flatlinks="no"
799          hideulines="no"
800          nouserdns="no"
801          syntaxhints="no"
802          cyclehosts="yes"
803          ircumsgprefix="no"
804          announcets="yes"
805          notimesync="no"
806          allowhalfop="yes">
807
808 #-#-#-#-#-#-#-#-#-#-#-#-#-  WHOWAS OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
809 #                                                                     #
810 # This tag lets you define the behaviour of the /whowas command of    #
811 # your server.                                                        #
812 #                                                                     #
813 # groupsize      - Controls the maximum entries per nick shown when   #
814 #                  performing a /whowas nick. Setting this to 0 dis-  #
815 #                  ables whowas completely.                           #
816 #                                                                     #
817 # maxgroups      - The maximum number of nickgroups that can be added #
818 #                  to the list. If max is reached, oldest group will  #
819 #                  be deleted first like a FIFO. A groupsize of 3 and #
820 #                  a maxgroups of 5000 will allow for 5000 nicks to   #
821 #                  be stored with a history of 3, thus giving a total #
822 #                  of 3 * 5000 = 15000 entries. A setting of 0 dis-   #
823 #                  ables whowas completely.                           #
824 #                                                                     #
825 # maxkeep        - The maximum time a nick is kept in the whowas list #
826 #                  before being pruned. Time may be specified in      #
827 #                  seconds, or in the following format: 1y2w3d4h5m6s  #
828 #                  meaning one year, two weeks, three days, 4 hours,  #
829 #                  5 minutes and 6 seconds. All fields in this format #
830 #                  are optional. Minimum is 1 hour, if less InspIRCd  #
831 #                  will default back to 1 hour.                       #
832 #                                                                     #
833 #<whowas groupsize="10"                                               #
834 #        maxgroups="100000"                                           #
835 #        maxkeep="3d">                                                #
836
837
838 #-#-#-#-#-#-#-#-#-#-#-#-#-  MODULE OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
839 #                                                                     #
840 #  These tags define which modules will be loaded on startup by your  #
841 #  server. Add modules without any paths. When you make your ircd     #
842 #  using the 'make' command, all compiled modules will be moved into  #
843 #  the folder you specified when you ran ./configure. The module tag  #
844 #  automatically looks for modules in this location.                  #
845 #  If you attempt to load a module outside of this location, either   #
846 #  in the config, or via /LOADMODULE, you will receive an error.      #
847 #                                                                     #
848 #  By default, ALL modules are commented out. You must uncomment them #
849 #  or add lines to your config to load modules. Please refer to       #
850 #  http://www.inspircd.org/wiki/Modules_List for a list of modules and#
851 #  each modules link for any additional conf tags they require.       #
852 #                                                                     #
853 #  You may use wildcards in a <module> tag to load all modules which  #
854 #  match a glob pattern (e.g. m_sa????.so would load m_sajoin,        #
855 #  m_sapart, m_saquit and m_sanick)                                   #
856 #                                                                     #
857 #    ____                _   _____ _     _       ____  _ _   _        #
858 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
859 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
860 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
861 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
862 #                                                                     #
863 # To link servers to InspIRCd, you MUST load the m_spanningtree       #
864 # module, as shown below. If you DO NOT do this, server links will    #
865 # NOT work at all. ie. The ports will NOT bind, and /connect will not #
866 # work properly. This is by design, to allow for the implementation   #
867 # of other linking protocols in modules in the future.                #
868
869 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
870 # Spanning Tree module - allows linking of servers using the spanning
871 # tree protocol (see the READ THIS BIT section above).
872 #
873 #<module name="m_spanningtree.so">
874
875
876 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
877 # MD5 Module - Allows other modules to generate MD5 hashes, usually for
878 # cryptographic uses and security.
879 #
880 # IMPORTANT:
881 # Other modules such as m_cloaking.so and m_opermd5.so may rely on
882 # this module being loaded to function.
883 #
884 #<module name="m_md5.so">
885 #
886 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
887 # SHA256 Module - Allows other modules to generate SHA256 hashes,
888 # usually for cryptographic uses and security.
889 #
890 # IMPORTANT:
891 # Other modules such as m_opermd5.so may rely on this module being
892 # loaded to function.
893 #
894 #<module name="m_sha256.so">
895
896 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
897 # Alias module: Allows you to define server-side command aliases
898 #<module name="m_alias.so">
899 #
900 #-#-#-#-#-#-#-#-#-#-#-  ALIAS DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
901 #                                                                     #
902 # If you have the m_alias.so module loaded, you may also define       #
903 # aliases as shown below. They are commonly used to provide shortcut  #
904 # commands to services, however they are not limited to just this use.#
905 # An alias tag requires the following values to be defined in it:     #
906 #                                                                     #
907 # text        -      The text to detect as the actual command line,   #
908 #                    Cant contain spaces, but case insensitive.       #
909 #                    You may have multiple aliases with the same      #
910 #                    command name (text="" value), however the first  #
911 #                    found will be executed if its format value is    #
912 #                    matched, or it has no format value. Aliases are  #
913 #                    read from the top of the file to the bottom.     #
914 #                                                                     #
915 # format      -      If this is defined, the parameters of the alias  #
916 #                    must match this glob pattern. For example if you #
917 #                    want the first parameter to start with a # for   #
918 #                    the alias to be executed, set format="#*" in the #
919 #                    alias definition. Note that the :'s which are    #
920 #                    part of IRC formatted lines will be preserved    #
921 #                    for matching of this text. This value is         #
922 #                    optional.                                        #
923 #                                                                     #
924 # replace     -      The text to replace 'text' with. Usually this    #
925 #                    will be "PRIVMSG ServiceName :$2-" or similar.   #
926 #                    You may use the variables $1 through $9 in the   #
927 #                    replace string, which refer to the first through #
928 #                    ninth word in the original string typed by the   #
929 #                    user. You may also use $1- through $9- which     #
930 #                    refer to the first word onwards, through to the  #
931 #                    ninth word onwards, e.g. if the user types the   #
932 #                    command "foo bar baz qux quz" then $3- will hold #
933 #                    "baz qux quz" and $2 will contain "bar". You may #
934 #                    also use the special variables: $nick, $ident,   #
935 #                    $host and $vhost, and you may seperate multiple  #
936 #                    commands with \n. If you wish to use the ACTUAL  #
937 #                    characters \ and n together in a line, you must  #
938 #                    use the sequence "\\n".                          #
939 #                                                                     #
940 # requires    -      If you provide a value for 'requires' this means #
941 #                    the given nickname MUST be online for the alias  #
942 #                    to successfully trigger. If they are not, then   #
943 #                    the user receives a 'no such nick' 401 numeric.  #
944 #                                                                     #
945 # uline       -      Defining this value with 'yes', 'true' or '1'    #
946 #                    will ensure that the user given in 'requires'    #
947 #                    must also be on a u-lined server, as well as     #
948 #                    actually being on the network. If the user is    #
949 #                    online, but not on a u-lined server, then an     #
950 #                    oper-alert is sent out as this is possibly signs #
951 #                    of a user trying to impersonate a service.       #
952 #                                                                     #
953 # operonly    -      Defining this value, with a value of 'yes', '1'  #
954 #                    or true will make the alias oper only. If a non- #
955 #                    oper attempts to use the alias, it will appear   #
956 #                    to not exist.                                    #
957 #                                                                     #
958 #<alias text="NICKSERV" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
959 #<alias text="CHANSERV" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
960 #<alias text="OPERSERV" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
961 #<alias text="NS" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
962 #<alias text="CS" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
963 #<alias text="OS" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
964 #
965 # An example of using the format value to create an alias with two
966 # different behaviours depending on the format of the parameters.
967 #
968 #<alias text="ID" format="#*" replace="PRIVMSG ChanServ :IDENTIFY $2 $3"
969 #  requires="ChanServ" uline="yes">
970 #
971 #<alias text="ID" replace="PRIVMSG NickServ :IDENTIFY $2"
972 #  requires="NickServ" uline="yes">
973 #
974
975 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
976 # Alltime module: Shows time on all connected servers at once
977 #<module name="m_alltime.so">
978
979 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
980 # Antibear security module: Prevents 'bear.txt' based trojans from
981 # connecting to your network by sending them a numeric they can't handle.
982 #<module name="m_antibear.so">
983
984 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
985 # Antibottler module: Labels bottler leech bots
986 #<module name="m_antibottler.so">
987
988 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
989 # Ban except module: Adds support for channel ban exceptions (+e)
990 #<module name="m_banexception.so">
991
992 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
993 # Ban redirection module: Allows bans which redirect to a specified
994 # channel. e.g. +b nick!ident@host#channelbanneduserissentto
995 #<module name="m_banredirect.so">
996
997 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
998 # Block amsg module: Attempt to block all usage of /amsg and /ame
999 #<module name="m_blockamsg.so">
1000 #
1001 #-#-#-#-#-#-#-#-#-#-#-  BLOCKAMSG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1002 #                                                                     #
1003 # If you have the m_blockamsg.so module loaded, you can configure it  #
1004 # with the <blockamsg> tag:                                           #
1005 #                                                                     #
1006 # delay          -   How many seconds between two messages to force   #
1007 #                    them to be recognised as unrelated.              #
1008 # action         -   Any of 'notice', 'noticeopers', 'silent', 'kill' #
1009 #                    or 'killopers'. Define how to take action when   #
1010 #                    a user uses /amsg or /ame.                       #
1011 #
1012 #<blockamsg delay="3" action="killopers">
1013
1014 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1015 # Block CAPS module: Blocking all-CAPS messages with cmode +P
1016 #<module name="m_blockcaps.so">
1017 #                                                                     #
1018 #-#-#-#-#-#-#-#-#-#-#-  BLOCKCAPS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1019 #                                                                     #
1020 # percent        - How many percent of text must be caps before text  #
1021 #                  will be blocked.                                   #
1022 #                                                                     #
1023 # minlen         - The minimum length a line must be for the block    #
1024 #                  percent to have any effect.                        #
1025 #                                                                     #
1026 #<blockcaps percent="95" minlen="5">
1027
1028 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1029 # Block colour module: Blocking colour-coded messages with cmode +c
1030 #<module name="m_blockcolor.so">
1031
1032 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1033 # Botmode module: Adds the user mode +B
1034 #<module name="m_botmode.so">
1035
1036 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1037 # CBAN module: Lets you disallow channels from being used at runtime.
1038 #<module name="m_cban.so">
1039
1040 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1041 # Censor module: Adds the channel mode +G
1042 #<module name="m_censor.so">
1043 #
1044 #-#-#-#-#-#-#-#-#-#-#-  CENSOR  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
1045 #                                                                     #
1046 # Optional - If you specify to use the m_censor module, then you must #
1047 # specify some censor tags. See also:                                 #
1048 # http://www.inspircd.org/wiki/Censor_Module                          #
1049 #
1050 #<include file="censor.conf">
1051
1052 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1053 # Channel filter module: Allows channel-op defined message
1054 # filtering using simple string matches (channel mode +g)
1055 #<module name="m_chanfilter.so">
1056
1057 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1058 # Chanprotect module: gives +q and +a channel modes
1059 #<module name="m_chanprotect.so">
1060
1061 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1062 # CHGHOST module: Adds the /CHGHOST command
1063 #<module name="m_chghost.so">
1064
1065 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1066 # CHGIDENT module: Adds the /CHGIDENT command
1067 #<module name="m_chgident.so">
1068
1069 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1070 # Cloaking module: Adds usermode +x and cloaking support.
1071 # Relies on the module m_md5.so being loaded before m_cloaking.so in
1072 # the configuration file.
1073 #<module name="m_cloaking.so">
1074 #
1075 #-#-#-#-#-#-#-#-#-#-#- CLOAKING  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
1076 #                                                                     #
1077 # Optional - If you specify the m_cloaking.so module as above, you    #
1078 # must define cloak keys, and optionally a cloak prefix as shown      #
1079 # below. When using cloaking, the cloak keys are MANDITORY and must   #
1080 # be included. However, if prefix is not included, it will default    #
1081 # to your networks name from the <server> tag.                        #
1082 #                                                                     #
1083 # <cloak key1="0x2AF39F40"                                            #
1084 #        key2="0x78E10B32"                                            #
1085 #        key3="0x4F2D2E82"                                            #
1086 #        key4="0x043A4C81"                                            #
1087 #        prefix="mynet">                                              #
1088 #                                                                     #
1089 # Please note that the key values will accept any number, and should  #
1090 # be large numbers. Using small numbers such as "7" or "1924" will    #
1091 # seriously weaken the security of your cloak. It is recommended you  #
1092 # use hexdecimal numbers prefixed by "0x", as shown in this example,  #
1093 # with each key eight hex digits long.                                #
1094
1095 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1096 # Conn-Lusers: Shows the LUSERS output on connect
1097 #<module name="m_conn_lusers.so">
1098
1099 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1100 # Conn-Usermodes: Set modes on users when they connect
1101 # When this module is loaded <connect:allow> tags may have an optional
1102 # modes="" value, which contains modes to add or remove from users
1103 # when they connect to the server.
1104 #<module name="m_conn_umodes.so">
1105
1106 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1107 # Conn-Wait-for-Pong: Don't let a user connect until they PONG
1108 #<module name="m_conn_waitpong.so">
1109 #
1110 #-#-#-#-#-#-#-#-#-#-#-   WAITPONG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1111 #                                                                     #
1112 # If you have the m_conn_waitpong.so module loaded, configure it with #
1113 # the <waitpong> tag:                                                 #
1114 #                                                                     #
1115 # sendsnotice    -   Whether to send a snotice on connect, like other #
1116 #                    older ircds                                      #
1117 #                                                                     #
1118 # killonbadreply -   Whether to kill the user if they send the wrong  #
1119 #                    PONG reply.                                      #
1120 #                                                                     #
1121 #<waitpong sendsnotice="yes" killonbadreply="yes">
1122
1123 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1124 # Connection throttle module. Configuration:
1125 #<module name="m_connflood.so">
1126 #
1127 #-#-#-#-#-#-#-#-#-#-#- CONTHROTTLE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1128 #  seconds, maxconns -  Amount of connections per <seconds>.
1129 #
1130 #  timeout           -  Time to wait after the throttle was activated
1131 #                       before deactivating it. Be aware that the time
1132 #                       is seconds + timeout.
1133 #
1134 #  quitmsg           -  The message that users get if they attempt to
1135 #                       connect while the throttle is active.
1136 #
1137 #  bootwait          -  Amount of time to wait before enforcing the
1138 #                       throttling when the server just booted.
1139 #
1140 #<connflood seconds="30" maxconns="3" timeout="30"
1141 #   quitmsg="Throttled" bootwait="10">
1142
1143 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1144 # DCCALLOW module: Adds the /DCCALLOW command
1145 #<module name="m_dccallow.so">
1146 #
1147 #-#-#-#-#-#-#-#-#-#-#-  DCCALLOW CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1148 #  blockchat         - Whether to block DCC CHAT as well as DCC SEND
1149 #  length            - Default duration of entries in DCCALLOW list
1150 #  action            - Default action to take if no action is specified
1151 #                      can be 'block' or 'allow'
1152 #
1153 # File configuration:
1154 #  pattern           - The glob pattern to match against
1155 #  action            - Action to take if a user attempts to send a file
1156 #                      that matches this pattern, can be 'block' or 'allow'
1157 #
1158 #<dccallow blockchat="yes" length="5m" action="block">
1159 #<banfile pattern="*.exe" action="block">
1160 #<banfile pattern="*.txt" action="allow">
1161 #
1162 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1163
1164 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1165 # Deaf module: adds support for ircu style usermode +d - deaf to
1166 # channel messages and channel notices.
1167 #<module name="m_deaf.so">
1168
1169 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1170 # Deny Channels: Deny Channels from being used by users
1171 #<module name="m_denychans.so"> 
1172 #
1173 #-#-#-#-#-#-#-#-#-#-#-   DENYCHAN DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#
1174 #                                                                     #
1175 # If you have the m_denychans.so module loaded, you need to specify   #
1176 # the channels to deny:                                               #
1177 #                                                                     #
1178 # name        -      The channel name to deny.                        #
1179 #                                                                     #
1180 # allowopers  -      If operators are allowed to override the deny.   #
1181 #                                                                     #
1182 # reason      -      Reason given for the deny.                       #
1183 #                                                                     #
1184 #<badchan name="#gods" allowopers="yes" reason="Tortoises!">
1185
1186 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1187 # Devoice Module: Let users devoice themselves.
1188 #<module name="m_devoice.so">
1189
1190 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1191 # DNS Blacklist Module: Provides support for looking up IPs on one or #
1192 # more blacklists.                                                    #
1193 #<module name="m_dnsbl.so">                                           #
1194 #                                                                     #
1195 # For configuration options please see the wiki page for m_dnsbl at   #
1196 # http://inspircd.org/wiki/DNS_Blacklist_Module                       #
1197
1198 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1199 # Filter module: Provides glob-based message filtering
1200 #<module name="m_filter.so">
1201 # OR
1202 # PCRE filter module: Filters messages using regular expressions
1203 #<module name="m_filter_pcre.so">
1204 #
1205 # You may only use one or the other with these modules, network-wide.
1206 #
1207 #-#-#-#-#-#-#-#-#-#-#-  FILTER  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
1208 #                                                                     #
1209 # Optional - If you specify to use the m_filter or m_filter_pcre      #
1210 # modules, then specfiy below the path to the filter.conf file,       #
1211 # or define some <filter> tags.                                       #
1212 #                                                                     #
1213 #<include file="filter.conf">
1214
1215 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1216 # Foobar module: does nothing - historical relic
1217 #<module name="m_foobar.so">
1218
1219 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1220 # Globops module: gives /GLOBOPS and usermode +g
1221 #<module name="m_globops.so">
1222
1223 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1224 # Global load module: Allows loading and unloading of modules network-
1225 # wide (USE WITH EXTREME CAUTION!)
1226 #<module name="m_globalload.so">
1227
1228 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1229 # HELPOP module: Provides the /HELPOP command
1230 #<module name="m_helpop.so">
1231 #
1232 #-#-#-#-#-#-#-#-#-#-#-#-  HELPOP  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1233 #                                                                     #
1234 # Optional - If you specify to use the m_helpop.so module, then       #
1235 # specify below the path to the helpop.conf file, or if you like to   #
1236 # make a mess, define your helpop tags in this conf.                  #
1237 #                                                                     #
1238 #<include file="helpop.conf">
1239
1240 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1241 # HIDECHANS module: Allows opers to hide their channels list from non-
1242 # opers by setting user mode +I on themselves.
1243 # <module name="m_hidechans.so">
1244
1245 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1246 # HIDEOPER module: Allows opers to hide their oper status from non-
1247 # opers by setting user mode +H on themselves.
1248 # <module name="m_hideoper.so">
1249
1250 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1251 # Hostchange module: Allows a different style of cloaking
1252 #<module name="m_hostchange.so">
1253 #
1254 #-#-#-#-#-#-#-#-#-#-#-  HOSTCHANGE  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
1255 #                                                                     #
1256 # Optional - If you choose to use the m_hostchange.so module.         #
1257 # Config Help -  See http://www.inspircd.org/wiki/Host_Changer_Module #
1258 #                                                                     #
1259 #<host suffix="polarbears.org">
1260 #<hostchange mask="*@fbi.gov" action="addnick">
1261 #<hostchange mask="*r00t@*" action="suffix">
1262 #<hostchange mask="a@b.com" action="set" value="blah.blah.blah">
1263
1264 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1265 # httpd module: Provides http server support for InspIRCd
1266 #<module name="m_httpd.so">
1267 #
1268 #-#-#-#-#-#-#-#-#-#-#-#-  HTTPD   CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1269 #
1270 # Optional - If you choose to use the m_httpd.so module,  then you must
1271 # specify the port number and other details of your http server:
1272 #
1273 #<http ip="192.168.1.10" host="brainwave" port="32006"
1274 #      index="/home/brain/inspircd/http/index.html">
1275 #
1276 # You may have as many of these tags as you wish, each with a different
1277 # IP, port, host or index file. Each one will act as an independent
1278 # HTTP server.
1279 #
1280
1281 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1282 # http stats module: Provides basic stats pages over HTTP
1283 # Requires m_httpd.so to be loaded for it to function.
1284 #<module name="m_httpd_stats.so">
1285 #
1286 #-#-#-#-#-#-#-#-#-#-#-#- HTTPD STATS CONFIGURATION -#-#-#-#-#-#-#-#-#-#
1287 #
1288 #<httpstats stylesheet="http://remote.style/sheet.css">
1289 #
1290
1291 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1292 # Ident: Provides RFC 1413 ident lookup support
1293 #<module name="m_ident.so">
1294 #
1295 #-#-#-#-#-#-#-#-#-#-#-#-   IDENT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1296 #                                                                     #
1297 # Optional - If you are using the m_ident.so module, then you can     #
1298 # specify the timeout for ident lookups here. If not defined, it will #
1299 # default to one second. This is a non-blocking timeout which holds   #
1300 # the user in a 'connecting' state until the lookup is complete.      #
1301 #                                                                     #
1302 #<ident timeout="5">
1303
1304 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1305 # Invite except module: Adds support for channel invite exceptions (+I)
1306 #<module name="m_inviteexception.so">
1307
1308 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1309 # Join flood module: Adds support for join flood protection (+j)
1310 #<module name="m_joinflood.so">
1311
1312 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1313 # Anti-Auto-Rejoin: Adds support for prevention of auto-rejoin (+J)
1314 #<module name="m_kicknorejoin.so">
1315
1316 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1317 # Knock module: adds the /KNOCK command and +K channel mode
1318 #<module name="m_knock.so">
1319
1320 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1321 # Lock server module: Adds /LOCKSERV and /UNLOCKSERV commands that is #
1322 # used to temporarily close/open for new connections to the server.   #
1323 # These commands require OPER status and that the LOCKSERV UNLOCKSERV #
1324 # are specified in a <class> tag that the oper is part of. This is so #
1325 # you can control who has access to this possible dangerous command.  #
1326 # If your server is locked and you got disconnected, do a REHASH from #
1327 # shell to open up again.
1328 #<module name="m_lockserv.so">
1329
1330 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1331 # Msg flood module: Adds message/notice flood protection (+f)
1332 #<module name="m_messageflood.so">
1333
1334 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1335 # MySQL module: Allows other SQL modules to access MySQL databases
1336 # through a unified API. You must copy the source for this module
1337 # from the directory src/modules/extra, plus the file m_sqlv2.h
1338 #<module name="m_mysql.so">
1339 #
1340 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1341 #                                                                     #
1342 # m_mysql.so is more complex than described here, see the wiki for    #
1343 # more: http://www.inspircd.org/wiki/SQL_Service_Provider_Module      #
1344 #
1345 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database2">
1346
1347 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1348 # NAMESX module: Provides support for the NAMESX extension which allows
1349 # clients to see all the prefixes set on a user without getting confused.
1350 # This is supported by mIRC, x-chat, klient, and maybe more.
1351 #<module name="m_namesx.so">
1352
1353 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1354 # Nicklock module: Let opers change a user's nick and then stop that
1355 # user from changing their nick again.
1356 #<module name="m_nicklock.so">
1357
1358 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1359 # No ctcp module: Adds the channel mode +C to block CTCPs
1360 #<module name="m_noctcp.so">
1361
1362 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1363 # Noinvite module: Gives channel mode +V
1364 #<module name="m_noinvite.so">
1365
1366 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1367 # No kicks module: Adds the +Q channel mode
1368 #<module name="m_nokicks.so">
1369
1370 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1371 # No nicks module: Adds the +N channel mode
1372 #<module name="m_nonicks.so">
1373
1374 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1375 # No Notice module: adds the channel mode +T
1376 #<module name="m_nonotice.so">
1377
1378 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1379 # Oper channels mode: Adds the +O channel mode
1380 #<module name="m_operchans.so">
1381
1382 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1383 # Oper hash module: Allows hashed oper passwords
1384 # Relies on the module m_md5.so and/or m_sha256.so being loaded before
1385 # m_oper_hash.so in the configuration file.
1386 #<module name="m_oper_hash.so">
1387 #
1388 #-#-#-#-#-#-#-#-#-#-# OPER HASH CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#-#
1389 #
1390 # To use this module, you must define a hash type for each oper's
1391 # password you want to hash. For example:
1392 #
1393 #     <oper name="Brain"
1394 #           host="ident@dialup15.isp.com"
1395 #           hash="sha256"
1396 #           password="a41d730937a53b79f788c0ab13e9e1d5"
1397 #           type="NetAdmin">
1398
1399 # The types of hashing available vary depending on which hashing modules
1400 # you load, but usually if you load m_sha256.so and m_md5.so, both md5
1401 # and sha256 type hashing will be available (the most secure of which
1402 # is SHA256).
1403
1404 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1405 # Oper Join module: Forces opers to join a channel on oper-up
1406 #<module name="m_operjoin.so">
1407 #
1408 #-#-#-#-#-#-#-#-#-#-#   OPERJOIN CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1409 #                                                                     #
1410 # If you are using the m_operjoin.so module, specify the channel here #
1411 #                                                                     #
1412 #<operjoin channel="#channel">
1413
1414 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1415 # Oper MOTD module: Provides support for seperate message of the day
1416 # on oper-up
1417 #<module name="m_opermotd.so">
1418 #
1419 #-#-#-#-#-#-#-#-#-#-#   OPERMOTD CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1420 #                                                                     #
1421 # If you are using the m_opermotd.so module, specify the motd here    #
1422 #                                                                     #
1423 #<opermotd file="oper.motd">
1424
1425 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1426 # Override module: Adds support for oper override
1427 #<module name="m_override.so">
1428 #
1429 #-#-#-#-#-#-#-#-#-#-#   OVERRIDE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1430 #                                                                     #
1431 # m_override.so is too complex it describe here, see the wiki:        #
1432 # http://www.inspircd.org/wiki/Oper_Override_Module                   #
1433
1434 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1435 # Oper levels module: Gives each oper a level and prevents
1436 # actions being taken against higher level opers
1437 # Specify the level as the 'level' parameter of the <type> tag
1438 #<module name="m_operlevels.so">
1439
1440 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1441 # Oper modes module: Allows you to specify modes to add/remove on oper
1442 # Specify the modes as the 'modes' parameter of the <type> tag
1443 #<module name="m_opermodes.so">
1444
1445 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1446 # PostgreSQL module: Allows other SQL modules to access PgSQL databases
1447 # through a unified API. You must copy the source for this module
1448 # from the directory src/modules/extra, plus the file m_sqlv2.h
1449 #<module name="m_pgsql.so">
1450 #
1451 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1452 #                                                                     #
1453 # m_pgsql.so is more complex than described here, see the wiki for    #
1454 # more: http://www.inspircd.org/wiki/SQL_Service_Provider_Module      #
1455 #
1456 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database" ssl="no">
1457
1458 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1459 # Random Quote module: provides a random quote on connect.
1460 # NOTE: Some of these may mimic fatal errors and confuse users and 
1461 # opers alike! - BEWARE!
1462 #<module name="m_randquote.so">
1463 #
1464 #-#-#-#-#-#-#-#-#-#-  RANDOMQUOTES CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1465 #                                                                     #
1466 # Optional - If you specify to use the m_randquote.so module, then    #
1467 # specify below the path to the randquotes.conf file.                 #
1468 #                                                                     #
1469 #<randquote file="randquotes.conf">
1470
1471 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1472 # Redirect module: Adds channel redirection (mode +L)
1473 #<module name="m_redirect.so">
1474
1475 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1476 # Remove module: Adds the /REMOVE command which is a peaceful
1477 # alternative to /KICK
1478 #<module name="m_remove.so">
1479
1480 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1481 # Restrict banned users module:
1482 # Disallows banned users on a channel from messaging the channel,
1483 # changing nick, or changing the topic, if loaded.
1484 #<module name="m_restrictbanned.so">
1485
1486 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1487 # Restricted channels module: Allows only opers to create channels
1488 #<module name="m_restrictchans.so">
1489
1490 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1491 # Restrict message module: Allows users to only message opers
1492 #<module name="m_restrictmsg.so">
1493
1494 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1495 # Provide /LIST throttling (to prevent flooding) and /LIST safety to
1496 # prevent excess flood when the list is large.
1497 #<module name="m_safelist.so">
1498
1499 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1500 # SAJOIN module: Adds the /SAJOIN command
1501 #<module name="m_sajoin.so">
1502
1503 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1504 # SAMODE module: Adds the oper /SAMODE command
1505 #<module name="m_samode.so">
1506
1507 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1508 # SANICK module: Allows opers to change user's nicks
1509 #<module name="m_sanick.so">
1510
1511 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1512 # SAPART module: Adds the oper /SAPART command
1513 #<module name="m_sapart.so">
1514
1515 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1516 # SAQUIT module: Adds the oper /SAQUIT command (abusable!!!)
1517 #<module name="m_saquit.so">
1518
1519 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1520 # Secure list module: Prevent /LIST in the first minute of connection,
1521 # crippling most spambots and trojan spreader bots.
1522 #<module name="m_securelist.so">
1523 #
1524 #-#-#-#-#-#-#-#-#-# SECURELIST CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1525 #                                                                     #
1526 # Securelist can be harmful to some irc search engines such as        #
1527 # netsplit.de and searchirc.com. To prevent securelist blocking these #
1528 # sites from listing, define exception tags as shown below:           #
1529 <securelist exception="*@*.searchirc.org">
1530 <securelist exception="*@*.netsplit.de">
1531
1532 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1533 # Set Idle module: Adds a command for opers to change their
1534 # idle time (mainly a toy)
1535 #<module name="m_setidle.so">
1536
1537 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1538 # Services support module: Adds several usermodes such as +R and +M
1539 # this module implements the 'identified' state via user mode +r, which
1540 # is similar to the DALnet and dreamforge systems.
1541 #<module name="m_services.so">
1542
1543 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1544 # Services support module: Adds several usermodes such as +R and +M
1545 # this module implements the 'identified' state via account names (AC)
1546 # and is similar in operation to the way asuka and ircu handle services.
1547 # it cannot be used at the same time as m_services, above.
1548 #<module name="m_services_account.so">
1549
1550 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1551 # Sethost module: Adds the /SETHOST command
1552 #<module name="m_sethost.so">
1553
1554 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1555 # Setident module: Adds the /SETIDENT command
1556 #<module name="m_setident.so">
1557
1558 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1559 # SETNAME module: Adds the /SETNAME command
1560 #<module name="m_setname.so">
1561
1562 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1563 # Show Whois module: Adds the +W usermode which allows opers
1564 # to see when they are whois'ed (can be annoying).
1565 #<module name="m_showwhois.so">
1566
1567 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1568 # Spy module: Adds the commands SPYLIST and SPYNAMES that let opers
1569 # see who is in a +s channel, and list +s channels, show keys of keyed
1570 # channels the oper is not a member of etc. (standard 'abusive' features
1571 # of many other ircds, modulized here in InspIRCd).
1572 #<module name="m_spy.so">
1573
1574 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1575 # SSL channel mode module: Adds support for SSL-only channels (+z).
1576 # does not do anything useful without a working SSL module (see below)
1577 #<module name="m_sslmodes.so">
1578
1579 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1580 # Dummy ssl module: If you have other servers on your network which
1581 # have SSL, but your server does not have ssl enabled, you should load
1582 # this module, which will handle SSL metadata (e.g. the "Is using ssl"
1583 # field in the WHOIS information).
1584 #<module name="m_ssl_dummy.so">
1585
1586 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1587 # GnuTLS ssl module: Adds support for client-server SSL using GnuTLS,
1588 # if enabled. You must copy the source for this module from the directory
1589 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1590 # want to enable this, or it will not load.
1591 #<module name="m_ssl_gnutls.so">
1592 #
1593 #-#-#-#-#-#-#-#-#-#-#-  GNUTLS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1594 #                                                                     #
1595 # m_ssl_gnutls.so is too complex it describe here, see the wiki:      #
1596 # http://www.inspircd.org/wiki/GnuTLS_SSL_Module                      #
1597 #                                                                     #
1598 # NOTE: If you want to use this module to encrypt and sign your       #
1599 # server to server traffic, you MUST load it before m_spanningtree in #
1600 # your configuration file!                                            #
1601
1602 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1603 # SSL Info module: Allows users to retrieve information about other
1604 # user's peer SSL certificates and keys. This can be used by client
1605 # scripts to validate users. For this to work, one of m_ssl_gnutls.so
1606 # or m_ssl_openssl.so must be loaded. You must symlink the source for
1607 # this module from the directory src/modules/extra.
1608 #<module name="m_sslinfo.so">
1609
1610 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1611 # OpenSSL ssl module: Adds support for client-server SSL using OpenSSL,
1612 # if enabled. You must copy the source for this module from the directory
1613 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1614 # want to enable this, or it will not load.
1615 #<module name="m_ssl_openssl.so">
1616 #
1617 #-#-#-#-#-#-#-#-#-#-#- OPENSSL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1618 #                                                                     #
1619 # m_ssl_openssl.so is too complex it describe here, see the wiki:     #
1620 # http://www.inspircd.org/wiki/OpenSSL_SSL_Module                     #
1621 #                                                                     #
1622 # NOTE: If you want to use this module to encrypt and sign your       #
1623 # server to server traffic, you MUST load it before m_spanningtree in #
1624 # your configuration file!                                            #
1625
1626 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1627 # SSL Cert Oper module: Allows opers to oper up using the key fingerprint
1628 # stored within their SSL certificate and key pair.
1629 # When using this module, one of m_ssl_gnutls.so or m_ssl_openssl.so must
1630 # be loaded. An extra value should be added to enabled opers, which
1631 # is in the following format: fingerprint="<hash>". For more information,
1632 # see the example in the oper blocks.
1633 #<module name="m_ssl_oper_cert.so">
1634
1635 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1636 # Strip colour module: Adds the channel mode +S
1637 #<module name="m_stripcolor.so">
1638
1639 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1640 # SILENCE module: Adds support for /SILENCE
1641 #<module name="m_silence.so">
1642
1643 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1644 # Extended SILENCE module: Adds support for /SILENCE with additional
1645 # features to silence based on invites, channel messages, etc.
1646 #<module name="m_silence_ext.so">
1647
1648 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1649 # SQLite3 module: Allows other SQL modules to access SQLite3          #
1650 # databases through a unified API. You must link the source for this  #
1651 # module from the directory src/modules/extra to src/modules, plus    #
1652 # the file m_sqlv2.h                                                  #
1653 #<module name="m_sqlite3.so">
1654 #
1655 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1656 #                                                                     #
1657 # m_sqlite.so is more complex than described here, see the wiki for   #
1658 # more: http://www.inspircd.org/wiki/SQLite3_Service_Provider_Module  #
1659 #
1660 #<database hostname="/full/path/to/database.db" id="anytext">
1661
1662 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1663 # SQLutils module: Provides some utilities to SQL client modules, such
1664 # as mapping queries to users and channels. You must copy the source
1665 # for this module from the directory src/modules/extra/m_sqlutils.cpp
1666 # and src/modules/extra/m_sqlutils.h into /src/modules
1667 # Needed for, and loaded before: SQLauth and SQLoper
1668 #<module name="m_sqlutils.so">
1669
1670 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1671 # SQL authentication module: Allows IRCd connections to be tied into
1672 # a database table (for example a forum). You must copy the source for
1673 # this module from the directory src/modules/extra
1674 # Depends on the SQLutils module being loaded first.
1675 #<module name="m_sqlauth.so">
1676 #
1677 #-#-#-#-#-#-#-#-#-#-#- SQLAUTH CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1678 #                                                                     #
1679 # m_sqlauth.so is too complex it describe here, see the wiki:         #
1680 # http://www.inspircd.org/wiki/SQL_Authentication_Module              #
1681
1682 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1683 # SQL logging module: Allows you to log network-wide data for your
1684 # network in a fully normalized set of SQL tables. You must copy the
1685 # source for this module from the directory src/modules/extra
1686 #<module name="m_sqllog.so">
1687 #
1688 #-#-#-#-#-#-#-#-#-#-#-  SQLLOG CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1689 #                                                                     #
1690 # dbid       - Database ID to use (see m_sql)                         #
1691 #                                                                     #
1692 # See also: http://www.inspircd.org/wiki/SQL_Logging_Module           #
1693 #                                                                     #
1694 #<sqllog dbid="1">
1695
1696 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1697 # SQL oper module: Allows you to store oper credentials in an SQL table
1698 # You must copy the source for this module from the directory src/modules/extra
1699 # Depends on the SQLutils module being loaded first.
1700 #<module name="m_sqloper.so">
1701 #
1702 #-#-#-#-#-#-#-#-#-#-#- SQLOPER CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1703 #                                                                     #
1704 # dbid       - Database ID to use (see m_sql)                         #
1705 #                                                                     #
1706 # See also: http://www.inspircd.org/wiki/SQL_Oper_Storage_Module      #
1707 #                                                                     #
1708 #<sqloper dbid="1">
1709
1710 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1711 # SWHOIS module: Allows you to add arbitary lines to user WHOIS.
1712 #<module name="m_swhois.so">
1713
1714 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1715 # Test command module: Does nothing significant. Read: pointless.
1716 #<module name="m_testcommand.so">
1717
1718 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1719 # Timed bans module: Adds timed bans and the /TBAN command
1720 #<module name="m_timedbans.so">
1721
1722 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1723 # Test line module: Adds the /TLINE command, used to test how many
1724 # users a /GLINE or /ZLINE etc would match.
1725 #<module name="m_tline.so">
1726
1727 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1728 # Uninvite module: Adds the /UNINVITE command which lets users remove
1729 # pending invites from channels without waiting for the user to join.
1730 #<module name="m_uninvite.so">
1731
1732 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1733 # Userip module: Adds the /USERIP command
1734 #<module name="m_userip.so">
1735
1736 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1737 # Vhost module: Adds the VHOST command which allows for adding virtual
1738 # hosts which are accessible using a username and password in the config.
1739 #<module name="m_vhost.so">
1740 #
1741 #-#-#-#-#-#-#-#-#-#-#- VHOST CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1742 #                                                                     #
1743 # user       - Username for the vhost.                                #
1744 #                                                                     #
1745 # pass       - Password for the vhost.                                #
1746 #                                                                     #
1747 # host       - Vhost to set.                                          #
1748 #
1749 #<vhost user="some_username" pass="some_password" host="some.host">
1750
1751 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1752 # Watch module: Adds the WATCH command, which is used by clients to 
1753 # maintain notify lists.
1754 #<module name="m_watch.so">
1755
1756 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1757 # ZipLinks module: Adds support for zlib deflate on server to server
1758 # connections. Both ends of the connection must load this module.
1759 #
1760 #<module name="m_ziplink.so">
1761 #
1762 # To use this module, you must enable it as a transport type in your
1763 # <link> tags or <bind> tags using the transport name 'zip'.
1764 # See the documentation of <link> and <bind>, respectively.
1765 #
1766
1767 #-#-#-#-#-#-#-#-#-#-#-#-#-#-  BAN OPTIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
1768 #                                                                     #
1769 # The ban tags define nick masks, host masks and ip ranges which are  #
1770 # banned from your server. All details in these tags are local to     #
1771 # Your server.                                                        #
1772 #                                                                     #
1773 #                                                                     #
1774 # badip lines ban an ip range (same as a zline)                       #
1775 #                                                                     #
1776 # ipmask       -          The ip range to ban (wildcards possible)    #
1777 #                         CIDR is supported in the IP mask.           #
1778 # reason       -          Reason to display when disconnected         #
1779 #                                                                     #
1780 # badnick lines ban a nick mask (same as a qline)                     #
1781 #                                                                     #
1782 # nick         -          Nick mask to ban (wildcards possible)       #
1783 # reason       -          Reason to display on /NICK                  #
1784 #                                                                     #
1785 # badhost lines ban a user@host mask (same as a kline)                #
1786 #                                                                     #
1787 # host         -          ident@hostname (wildcards possible)         #
1788 #                         If you specify an IP, CIDR is supported.    #
1789 # reason       -          Reason to display on disconnection          #
1790 #                                                                     #
1791 # exception lines define a hostmask that is excempt from [kzg]lines   #
1792 #                                                                     #
1793 # host         -          ident@hostname (wildcards possible)         #
1794 #                         If you specify an IP, CIDR is supported.    #
1795 # reason       -          Reason, shown only in /stats e              #
1796 #                                                                     #
1797
1798 <badip ipmask="69.69.69.69" reason="No porn here thanks.">
1799
1800 <badnick nick="ChanServ" reason="Reserved For Services">
1801 <badnick nick="NickServ" reason="Reserved For Services">
1802 <badnick nick="OperServ" reason="Reserved For Services">
1803 <badnick nick="MemoServ" reason="Reserved For Services">
1804
1805 <badhost host="*@hundredz.n.hundredz.o.1337.kiddies.com" reason="Too many 1337 kiddiots">
1806 <badhost host="*@localhost" reason="No irc from localhost!">
1807 <badhost host="*@172.32.0.0/16" reason="This subnet is bad.">
1808
1809 <exception host="*@ircop.host.com" reason="Opers hostname">
1810
1811 #-#-#-#-#-#-#-#-#-#-#- INSANE BAN OPTIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
1812 #                                                                     #
1813 # This optional tag allows you to specify how wide a gline, eline,    #
1814 # kline, zline or qline can be before it is forbidden from being      #
1815 # set. By setting hostmasks="yes", you can allow all G, K, E lines,   #
1816 # no matter how many users the ban would cover. This is not           #
1817 # recommended! By setting ipmasks="yes", you can allow all Z lines,   #
1818 # no matter how many users these cover too. Needless to say we        #
1819 # don't recommend you do this, or, set nickmasks="yes", which will    #
1820 # allow any qline.                                                    #
1821 #                                                                     #
1822 # The trigger value indicates how wide any mask will be before it is  #
1823 # prevented from being set. The default value is 95.5% if this tag is #
1824 # not defined in your configuration file, meaning that if your        #
1825 # network has 1000 users, a gline matching over 955 of them will be   #
1826 # prevented from being added.                                         #
1827 #                                                                     #
1828 # Please note that remote servers (and services) are exempt from      #
1829 # these restrictions and expected to enforce their own policies       #
1830 # locally!                                                            #
1831 #                                                                     #
1832
1833 <insane hostmasks="no" ipmasks="no" nickmasks="no" trigger="95.5">
1834
1835 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#- YAWN  -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1836 #                                                                     #
1837 #   You should already know what to do here :)                        #
1838
1839 <die value="No, i wasnt joking. You should probably edit your config *PROPERLY* and try again.">
1840
1841
1842 #########################################################################
1843 #                                                                       #
1844 #                     - InspIRCd Development Team -                     #
1845 #                        http://www.inspircd.org                        #
1846 #                                                                       #
1847 #########################################################################