]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/inspircd.conf.example
Support port binding here
[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 # to u:line a server (give it extra privilages required for running   #
469 # services, Q, etc) you must include the <uline server> tag as shown  #
470 # in the example below. You can have as many of these as you like.    #
471 #                                                                     #
472 # WARNING: Unlike other ircds, u:lining a server allows ALL users on  #
473 # that server to operoverride modes. This should only be used for     #
474 # services and protected oper servers!                                #
475 #                                                                     #
476 # ------------------------------------------------------------------- #
477 #                                                                     #
478 # NOTE: If you have built your server as an ipv6 server, then when a  #
479 # DNS lookup of a server's host occurs, AAAA records (ipv6) are       #
480 # priorotized over A records (ipv4). Therefore, if the server you are #
481 # connecting to has both an IPV6 ip address and an IPV4 ip address in #
482 # its DNS entry, the IPV6 address will *always* be selected. To       #
483 # change this behaviour simply specify the IPV4 IP address rather     #
484 # than the hostname of the server.                                    #
485 #                                                                     #
486 # ------------------------------------------------------------------- #
487 #                                                                     #
488 #    ____                _   _____ _     _       ____  _ _   _        #
489 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
490 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
491 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
492 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
493 #                                                                     #
494 #  If you want to link servers to InspIRCd you must load the          #
495 #  m_spanningtree module! Please see the modules list below for       #
496 #  information on how to load this module! If you do not load this    #
497 #  module, server links will NOT work!                                #
498 #                                                                     #
499 #  Also, if you define any transports, you must load the modules for  #
500 #  these transports BEFORE you load m_spanningtree, e.g. place them   #
501 #  above it in the configuration file. Currently this means the three #
502 #  modules m_ssl_gnutls, m_ziplinks and m_ssl_openssl, depending on   #
503 #  which you choose to use.                                           #
504 #                                                                     #
505
506 <link name="hub.penguin.org"
507         ipaddr="penguin.box.com"
508         port="7000"
509         allowmask="69.58.44.0/24"
510         autoconnect="300"
511         failover="hub.other.net"
512         timeout="15"
513         transport="gnutls"
514         sendpass="outgoing!password"
515         recvpass="incoming!password">
516
517 <link name="services.antarctic.com"
518         ipaddr="localhost"
519         port="7000"
520         allowmask="127.0.0.0/8"
521         sendpass="penguins"
522         recvpass="polarbears">
523
524 <uline server="services.antarctic.com">
525
526
527 #-#-#-#-#-#-#-#-#-#-  MISCELLANEOUS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
528 #                                                                     #
529 #   These options let you define the path to your motd and rules      #
530 #   files. If these are relative paths, they are relative to the      #
531 #   configurtion directory.                                           #
532 #                                                                     #
533
534 <files  motd="inspircd.motd"
535         rules="inspircd.rules">
536
537 #-#-#-#-#-#-#-#-#-#-#-#-#-#-# DNS SERVER -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
538 #                                                                     #
539 # Define your DNS server address here. InspIRCd has its own resolver. #
540 # If you do not define this value, the first dns server from your     #
541 # /etc/resolv.conf file is read. If no entries are found in this file #
542 # or the file cannot be opened, the default value '127.0.0.1' is used #
543 # instead. The timeout value is in seconds.                           #
544 #                                                                     #
545 #    ____                _   _____ _     _       ____  _ _   _        #
546 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
547 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
548 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
549 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
550 #                                                                     #
551 # When choosing a server, be sure to choose one which will do a       #
552 # RECURSIVE LOOKUP. InspIRCd's resolver does not currently do these   #
553 # recursive lookups itself, to save time and resources. The dns       #
554 # server recommended by the InspIRCd team is bind, available from the #
555 # ISC website. If your DNS server does not do a recursive lookup, you #
556 # will be able to notice this by the fact that none of your users are #
557 # resolving even though the DNS server appears to be up! Most ISP and #
558 # hosting provider DNS servers support recursive lookups.             #
559 #                                                                     #
560 # ------------------------------------------------------------------- #
561 #                                                                     #
562 # NOTE: if you have built InspIRCd with IPV6 support, then both       #
563 # ipv6 and ipv4 addresses are allowed here, and also in the system    #
564 # resolv.conf file. Remember that an ipv4 dns server can still        #
565 # resolve ipv6 addresses, and vice versa.                             #
566 #                                                                     #
567
568 <dns server="127.0.0.1" timeout="5">
569
570 # An example of using an IPV6 nameserver
571 #<dns server="::1" timeout="5">
572
573 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#  PID FILE  -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
574 #                                                                     #
575 # Define the path to the PID file here. The PID file can be used to   #
576 # rehash the ircd from the shell or to terminate the ircd from the    #
577 # shell using shell scripts, perl scripts etc, and to monitor the     #
578 # ircd's state via cron jobs. If this is a relative path, it will be  #
579 # relative to the configuration directory, and if it is not defined,  #
580 # the default of 'inspircd.pid' is used.                              #
581 #                                                                     #
582
583 #<pid file="/path/to/inspircd.pid">
584
585 #-#-#-#-#-#-#-#-#-#-#-#-#- BANLIST LIMITS #-#-#-#-#-#-#-#-#-#-#-#-#-#-#
586 #                                                                     #
587 # Use these tags to customise the ban limits on a per channel basis.  #
588 # the tags are read from top to bottom, and any tag found which       #
589 # matches the channels name applies the banlimit to that channel.     #
590 # It is advisable to put an entry with the channel as '*' at the      #
591 # bottom of the list. If none are specified or no maxbans tag is      #
592 # matched, the banlist size defaults to 64 entries.                   #
593 #                                                                     #
594
595 <banlist chan="#morons" limit="128">
596 <banlist chan="*" limit="69">
597
598 #-#-#-#-#-#-#-#-#-#-#-  DISABLED COMMANDS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
599 #                                                                     #
600 # This tag is optional, and specifies one or more commands which are  #
601 # not available to non-operators. For example you may wish to disable #
602 # NICK and prevent non-opers from changing their nicknames.           #
603 # Note that any disabled commands take effect only after the user has #
604 # 'registered' (e.g. after the initial USER/NICK/PASS on connection)  #
605 # so for example disabling NICK will not cripple your network.        #
606 #                                                                     #
607
608 #<disabled commands="TOPIC MODE">
609
610
611 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-  RTFM LINE  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
612 #                                                                     #
613 #   Just remove this... Its here to make you read ALL of the config   #
614 #   file options ;)                                                   #
615
616 <die value="You should probably edit your config *PROPERLY* and try again.">
617
618
619
620 #-#-#-#-#-#-#-#-#-#-#-#-#-  SERVER OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
621 #                                                                     #
622 #   Settings to define which features are useable on your server.     #
623 #                                                                     #
624 #  prefixquit    - a prefix for a client's quit message               #
625 #                                                                     #
626 #  loglevel      - specifies what detail of messages to log in the    #
627 #                  log file. You may select from debug, verbose,      #
628 #                  default, sparse and none.                          #
629 #                                                                     #
630 #  allowhalfop   - allows the +h channel mode                         #
631 #                                                                     #
632 #  noservices    - If noservices is true, yes, or 1, then the first   #
633 #                  user into a channel gets founder status. This is   #
634 #                  only useful on networks running the m_chanprotect  #
635 #                  module without services.                           #
636 #                                                                     #
637 #  qaprefixes    - If qaprefixes is true, yes, or 1, then users       #
638 #                  with +q or +a will get the ~ or & prefixes         #
639 #                  used in unreal. This is only useful on networks    #
640 #                  running the m_chanprotect module                   #
641 #                                                                     #
642 #  deprotectself - If this value is set to yes, true, or 1, then any  #
643 #                  user with +q or +a may remove the +q or +a from    #
644 #                  themselves. The default setting is to not enable   #
645 #                  this feature, which stops even the founder taking  #
646 #                  away their founder status without using services.  #
647 #                                                                     #
648 #  cyclehosts    - If this is set to true, yes or 1, then when a      #
649 #                  user's hostname changes, they will appear to quit  #
650 #                  and then rejoin with their new host. This prevents #
651 #                  clients from being confused by host changes,       #
652 #                  especially in the case of bots, and it is          #
653 #                  recommended that this option is enabled.           #
654 #                                                                     #
655 #  netbuffersize - size of the buffer used to receive data from       #
656 #                  clients. The ircd may only read() this amount      #
657 #                  of text in one go at any time. (OPTIONAL)          #
658 #                                                                     #
659 #  maxwho        - The maximum number of results returned by a /WHO   #
660 #                  query. This is to prevent /WHO being used as a     #
661 #                  spam vector or means of flooding an ircd. The      #
662 #                  default is 128, it is not recommended to raise it  #
663 #                  above 1024. Values up to 65535 are permitted.      #
664 #                                                                     #
665 #  somaxconn     - The maximum number of sockets that may be waiting  #
666 #                  in the accept queue. This usually allows the ircd  #
667 #                  to soak up more connections in a shorter space of  #
668 #                  time when increased but please be aware there is a #
669 #                  system defined maximum value to this, the same way #
670 #                  there is a system defined maximum number of file   #
671 #                  descriptors. Some systems may only allow this to   #
672 #                  be up to 5 (ugh) while others such as FreeBSD will #
673 #                  default to a much nicer 128.                       #
674 #                                                                     #
675 #  moduledir     - This optional value indicates a runtime change of  #
676 #                  the location where modules are to be found. This   #
677 #                  does not add a supplementary directory. There can  #
678 #                  only be one module path.                           #
679 #                                                                     #
680 #  softlimit     - This optional feature allows a defined softlimit.  #
681 #                  if defined sets a soft maxconnections value, has   #
682 #                  to be less than the ./configure maxclients         #
683 #                                                                     #
684 #  userstats     - The userstats field is optional and specifies      #
685 #                  which stats characters in /STATS may be requested  #
686 #                  by non-operators. Stats characters in this field   #
687 #                  are case sensitive and are allowed to users        #
688 #                  independent of if they are in a module or the core #
689 #                                                                     #
690 #  operspywhois  - If this is set then when an IRC operator uses      #
691 #                  /WHOIS on a user they will see all channels, even  #
692 #                  ones if channels are secret (+s), private (+p) or  #
693 #                  if the target user is invisible +i.                #
694 #                                                                     #
695 #  customversion - If you specify this configuration item, and it is  #
696 #                  not set to an empty value, then when a user does   #
697 #                  a /VERSION command on the ircd, this string will   #
698 #                  be displayed as the second portion of the output,  #
699 #                  replacing the system 'uname', compile flags and    #
700 #                  socket engine/dns engine names. You may use this   #
701 #                  to enhance security, or simply for vanity.         #
702 #                                                                     #
703 #  maxtargets    - The maxtargets field is optional, and if not       #
704 #                  defined, defaults to 20. It indicates the maximum  #
705 #                  number of targets which may be given to commands   #
706 #                  such as PRIVMSG, KICK etc.                         #
707 #                                                                     #
708 #  hidesplits    - When set to 'yes', will hide split server names    #
709 #                  from non-opers. Non-opers will see '*.net *.split' #
710 #                  instead of the server names in the quit message,   #
711 #                  identical to the way IRCu displays them.           #
712 #                                                                     #
713 #  hidebans      - When set to 'yes', will hide gline, kline, zline   #
714 #                  and qline quit messages from non-opers. For        #
715 #                  example, user A who is not an oper will just see   #
716 #                  (G-Lined) while user B who is an oper will see the #
717 #                  text (G-Lined: Reason here) instead.               #
718 #                                                                     #
719 #  hidewhois     - When defined with a non-empty value, the given     #
720 #                  text will be used in place of the user's server    #
721 #                  in WHOIS, when a user is WHOISed by a non-oper.    #
722 #                  For example, most nets will want to set this to    #
723 #                  something like '*.netname.net' to conceal the      #
724 #                  actual server the user is on.                      #
725 #                                                                     #
726 #  flatlinks     - When you are using m_spanningtree.so, and this     #
727 #                  value is set to true, yes or 1, /MAP and /LINKS    #
728 #                  will be flattened when shown to a non-oper.        #
729 #                                                                     #
730 #  hideulines    - When you are using m_spanningtree.so, and this     #
731 #                  value is set to true, yes or 1, then U-lined       #
732 #                  servers will be hidden in /LINKS and /MAP. For non #
733 #                  opers. Please be aware that this will also hide    #
734 #                  any leaf servers of a U-lined server, e.g. jupes.  #
735 #                                                                     #
736 #  nouserdns     - If set to 'yes', 'true' or '1', no user dns        #
737 #                  lookups will be performed for connecting users.    #
738 #                  this can save a lot of resources on very busy irc  #
739 #                  servers.                                           #
740 #                                                                     #
741 #  syntaxhints   - If set to 'yes', 'true' or '1', when a user does   #
742 #                  not give enough parameters for a command, a syntax #
743 #                  hint will be given (using the RPL_TEXT numeric)    #
744 #                  as well as the standard ERR_NEEDMOREPARAMS.        #
745 #                                                                     #
746 #  announcets    - If this value is defined to 'yes', 'true' or '1',  #
747 #                  then if a channel's timestamp is updated the users #
748 #                  on the channel will be informed of the change via  #
749 #                  a server notice to the channel with the old and    #
750 #                  new TS values in the timestamp. If you think this  #
751 #                  is just pointless noise, define the value to 0.    #
752 #                                                                     #
753 #  ircumsgprefix - Use undernet style message prefix for channel      #
754 #                  NOTICE and PRIVMSG adding the prefix to the line   #
755 #                  of text sent out. Eg. NOTICE @#test :@ testing     #
756 #                  vs off: NOTICE @#test :testing                     #
757 #
758 #  notimesync    - If this value is 'yes', 'true', or '1', time       #
759 #                  synchronization is disabled on this server. This   #
760 #                  means any servers you are linked to will not       #
761 #                  automatically synchronize time with you, and in    #
762 #                  most cases will just result in more bounced modes  #
763 #                  on netsplits. This option should be the same on    #
764 #                  all servers.                                       #
765 #                                                                     #
766
767 <options prefixquit="Quit: "
768          loglevel="default"
769          netbuffersize="10240"
770          maxwho="128"
771          noservices="no"
772          qaprefixes="no"
773          deprotectself="no"
774          somaxconn="128"
775          softlimit="12800"
776          userstats="Pu"
777          operspywhois="no"
778          customversion=""
779          maxtargets="20"
780          hidesplits="no"
781          hidebans="no"
782          hidewhois=""
783          flatlinks="no"
784          hideulines="no"
785          nouserdns="no"
786          syntaxhints="no"
787          cyclehosts="yes"
788          ircumsgprefix="no"
789          announcets="yes"
790          notimesync="no"
791          allowhalfop="yes">
792
793 #-#-#-#-#-#-#-#-#-#-#-#-#-  WHOWAS OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
794 #                                                                     #
795 # This tag lets you define the behaviour of the /whowas command of    #
796 # your server.                                                        #
797 #                                                                     #
798 # groupsize      - Controls the maximum entries per nick shown when   #
799 #                  performing a /whowas nick. Setting this to 0 dis-  #
800 #                  ables whowas completely.                           #
801 #                                                                     #
802 # maxgroups      - The maximum number of nickgroups that can be added #
803 #                  to the list. If max is reached, oldest group will  #
804 #                  be deleted first like a FIFO. A groupsize of 3 and #
805 #                  a maxgroups of 5000 will allow for 5000 nicks to   #
806 #                  be stored with a history of 3, thus giving a total #
807 #                  of 3 * 5000 = 15000 entries. A setting of 0 dis-   #
808 #                  ables whowas completely.                           #
809 #                                                                     #
810 # maxkeep        - The maximum time a nick is kept in the whowas list #
811 #                  before being pruned. Time may be specified in      #
812 #                  seconds, or in the following format: 1y2w3d4h5m6s  #
813 #                  meaning one year, two weeks, three days, 4 hours,  #
814 #                  5 minutes and 6 seconds. All fields in this format #
815 #                  are optional. Minimum is 1 hour, if less InspIRCd  #
816 #                  will default back to 1 hour.                       #
817 #                                                                     #
818 #<whowas groupsize="10"                                               #
819 #        maxgroups="100000"                                           #
820 #        maxkeep="3d">                                                #
821
822
823 #-#-#-#-#-#-#-#-#-#-#-#-#-  MODULE OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
824 #                                                                     #
825 #  These tags define which modules will be loaded on startup by your  #
826 #  server. Add modules without any paths. When you make your ircd     #
827 #  using the 'make' command, all compiled modules will be moved into  #
828 #  the folder you specified when you ran ./configure. The module tag  #
829 #  automatically looks for modules in this location.                  #
830 #  If you attempt to load a module outside of this location, either   #
831 #  in the config, or via /LOADMODULE, you will receive an error.      #
832 #                                                                     #
833 #  By default, ALL modules are commented out. You must uncomment them #
834 #  or add lines to your config to load modules. Please refer to       #
835 #  http://www.inspircd.org/wiki/Modules_List for a list of modules and#
836 #  each modules link for any additional conf tags they require.       #
837 #                                                                     #
838 #  You may use wildcards in a <module> tag to load all modules which  #
839 #  match a glob pattern (e.g. m_sa????.so would load m_sajoin,        #
840 #  m_sapart, m_saquit and m_sanick)                                   #
841 #                                                                     #
842 #    ____                _   _____ _     _       ____  _ _   _        #
843 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
844 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
845 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
846 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
847 #                                                                     #
848 # To link servers to InspIRCd, you MUST load the m_spanningtree       #
849 # module, as shown below. If you DO NOT do this, server links will    #
850 # NOT work at all. ie. The ports will NOT bind, and /connect will not #
851 # work properly. This is by design, to allow for the implementation   #
852 # of other linking protocols in modules in the future.                #
853
854 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
855 # Spanning Tree module - allows linking of servers using the spanning
856 # tree protocol (see the READ THIS BIT section above).
857 #
858 #<module name="m_spanningtree.so">
859
860
861 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
862 # MD5 Module - Allows other modules to generate MD5 hashes, usually for
863 # cryptographic uses and security.
864 #
865 # IMPORTANT:
866 # Other modules such as m_cloaking.so and m_opermd5.so may rely on
867 # this module being loaded to function.
868 #
869 #<module name="m_md5.so">
870 #
871 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
872 # SHA256 Module - Allows other modules to generate SHA256 hashes,
873 # usually for cryptographic uses and security.
874 #
875 # IMPORTANT:
876 # Other modules such as m_opermd5.so may rely on this module being
877 # loaded to function.
878 #
879 #<module name="m_sha256.so">
880
881 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
882 # Alias module: Allows you to define server-side command aliases
883 #<module name="m_alias.so">
884 #
885 #-#-#-#-#-#-#-#-#-#-#-  ALIAS DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
886 #                                                                     #
887 # If you have the m_alias.so module loaded, you may also define       #
888 # aliases as shown below. They are commonly used to provide shortcut  #
889 # commands to services, however they are not limited to just this use.#
890 # An alias tag requires the following values to be defined in it:     #
891 #                                                                     #
892 # text        -      The text to detect as the actual command line,   #
893 #                    Cant contain spaces, but case insensitive.       #
894 #                    You may have multiple aliases with the same      #
895 #                    command name (text="" value), however the first  #
896 #                    found will be executed if its format value is    #
897 #                    matched, or it has no format value. Aliases are  #
898 #                    read from the top of the file to the bottom.     #
899 #                                                                     #
900 # format      -      If this is defined, the parameters of the alias  #
901 #                    must match this glob pattern. For example if you #
902 #                    want the first parameter to start with a # for   #
903 #                    the alias to be executed, set format="#*" in the #
904 #                    alias definition. Note that the :'s which are    #
905 #                    part of IRC formatted lines will be preserved    #
906 #                    for matching of this text. This value is         #
907 #                    optional.                                        #
908 #                                                                     #
909 # replace     -      The text to replace 'text' with. Usually this    #
910 #                    will be "PRIVMSG ServiceName :$2-" or similar.   #
911 #                    You may use the variables $1 through $9 in the   #
912 #                    replace string, which refer to the first through #
913 #                    ninth word in the original string typed by the   #
914 #                    user. You may also use $1- through $9- which     #
915 #                    refer to the first word onwards, through to the  #
916 #                    ninth word onwards, e.g. if the user types the   #
917 #                    command "foo bar baz qux quz" then $3- will hold #
918 #                    "baz qux quz" and $2 will contain "bar". You may #
919 #                    also use the special variables: $nick, $ident,   #
920 #                    $host and $vhost, and you may seperate multiple  #
921 #                    commands with \n. If you wish to use the ACTUAL  #
922 #                    characters \ and n together in a line, you must  #
923 #                    use the sequence "\\n".                          #
924 #                                                                     #
925 # requires    -      If you provide a value for 'requires' this means #
926 #                    the given nickname MUST be online for the alias  #
927 #                    to successfully trigger. If they are not, then   #
928 #                    the user receives a 'no such nick' 401 numeric.  #
929 #                                                                     #
930 # uline       -      Defining this value with 'yes', 'true' or '1'    #
931 #                    will ensure that the user given in 'requires'    #
932 #                    must also be on a u-lined server, as well as     #
933 #                    actually being on the network. If the user is    #
934 #                    online, but not on a u-lined server, then an     #
935 #                    oper-alert is sent out as this is possibly signs #
936 #                    of a user trying to impersonate a service.       #
937 #                                                                     #
938 # operonly    -      Defining this value, with a value of 'yes', '1'  #
939 #                    or true will make the alias oper only. If a non- #
940 #                    oper attempts to use the alias, it will appear   #
941 #                    to not exist.                                    #
942 #                                                                     #
943 #<alias text="NICKSERV" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
944 #<alias text="CHANSERV" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
945 #<alias text="OPERSERV" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
946 #<alias text="NS" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
947 #<alias text="CS" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
948 #<alias text="OS" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
949 #
950 # An example of using the format value to create an alias with two
951 # different behaviours depending on the format of the parameters.
952 #
953 #<alias text="ID" format="#*" replace="PRIVMSG ChanServ :IDENTIFY $2 $3"
954 #  requires="ChanServ" uline="yes">
955 #
956 #<alias text="ID" replace="PRIVMSG NickServ :IDENTIFY $2"
957 #  requires="NickServ" uline="yes">
958 #
959
960 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
961 # Alltime module: Shows time on all connected servers at once
962 #<module name="m_alltime.so">
963
964 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
965 # Antibear security module: Prevents 'bear.txt' based trojans from
966 # connecting to your network by sending them a numeric they can't handle.
967 #<module name="m_antibear.so">
968
969 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
970 # Antibottler module: Labels bottler leech bots
971 #<module name="m_antibottler.so">
972
973 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
974 # Ban except module: Adds support for channel ban exceptions (+e)
975 #<module name="m_banexception.so">
976
977 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
978 # Ban redirection module: Allows bans which redirect to a specified
979 # channel. e.g. +b nick!ident@host#channelbanneduserissentto
980 #<module name="m_banredirect.so">
981
982 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
983 # Block amsg module: Attempt to block all usage of /amsg and /ame
984 #<module name="m_blockamsg.so">
985 #
986 #-#-#-#-#-#-#-#-#-#-#-  BLOCKAMSG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
987 #                                                                     #
988 # If you have the m_blockamsg.so module loaded, you can configure it  #
989 # with the <blockamsg> tag:                                           #
990 #                                                                     #
991 # delay          -   How many seconds between two messages to force   #
992 #                    them to be recognised as unrelated.              #
993 # action         -   Any of 'notice', 'noticeopers', 'silent', 'kill' #
994 #                    or 'killopers'. Define how to take action when   #
995 #                    a user uses /amsg or /ame.                       #
996 #
997 #<blockamsg delay="3" action="killopers">
998
999 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1000 # Block CAPS module: Blocking all-CAPS messages with cmode +P
1001 #<module name="m_blockcaps.so">
1002 #                                                                     #
1003 #-#-#-#-#-#-#-#-#-#-#-  BLOCKCAPS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1004 #                                                                     #
1005 # percent        - How many percent of text must be caps before text  #
1006 #                  will be blocked.                                   #
1007 #                                                                     #
1008 # minlen         - The minimum length a line must be for the block    #
1009 #                  percent to have any effect.                        #
1010 #                                                                     #
1011 #<blockcaps percent="95" minlen="5">
1012
1013 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1014 # Block colour module: Blocking colour-coded messages with cmode +c
1015 #<module name="m_blockcolor.so">
1016
1017 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1018 # Botmode module: Adds the user mode +B
1019 #<module name="m_botmode.so">
1020
1021 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1022 # CBAN module: Lets you disallow channels from being used at runtime.
1023 #<module name="m_cban.so">
1024
1025 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1026 # Censor module: Adds the channel mode +G
1027 #<module name="m_censor.so">
1028 #
1029 #-#-#-#-#-#-#-#-#-#-#-  CENSOR  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
1030 #                                                                     #
1031 # Optional - If you specify to use the m_censor module, then you must #
1032 # specify some censor tags. See also:                                 #
1033 # http://www.inspircd.org/wiki/Censor_Module                          #
1034 #
1035 #<include file="censor.conf">
1036
1037 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1038 # Channel filter module: Allows channel-op defined message
1039 # filtering using simple string matches (channel mode +g)
1040 #<module name="m_chanfilter.so">
1041
1042 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1043 # Chanprotect module: gives +q and +a channel modes
1044 #<module name="m_chanprotect.so">
1045
1046 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1047 # CHGHOST module: Adds the /CHGHOST command
1048 #<module name="m_chghost.so">
1049
1050 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1051 # CHGIDENT module: Adds the /CHGIDENT command
1052 #<module name="m_chgident.so">
1053
1054 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1055 # Cloaking module: Adds usermode +x and cloaking support.
1056 # Relies on the module m_md5.so being loaded before m_cloaking.so in
1057 # the configuration file.
1058 #<module name="m_cloaking.so">
1059 #
1060 #-#-#-#-#-#-#-#-#-#-#- CLOAKING  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
1061 #                                                                     #
1062 # Optional - If you specify the m_cloaking.so module as above, you    #
1063 # must define cloak keys, and optionally a cloak prefix as shown      #
1064 # below. When using cloaking, the cloak keys are MANDITORY and must   #
1065 # be included. However, if prefix is not included, it will default    #
1066 # to your networks name from the <server> tag.                        #
1067 #                                                                     #
1068 # <cloak key1="0x2AF39F40"                                            #
1069 #        key2="0x78E10B32"                                            #
1070 #        key3="0x4F2D2E82"                                            #
1071 #        key4="0x043A4C81"                                            #
1072 #        prefix="mynet">                                              #
1073 #                                                                     #
1074 # Please note that the key values will accept any number, and should  #
1075 # be large numbers. Using small numbers such as "7" or "1924" will    #
1076 # seriously weaken the security of your cloak. It is recommended you  #
1077 # use hexdecimal numbers prefixed by "0x", as shown in this example,  #
1078 # with each key eight hex digits long.                                #
1079
1080 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1081 # Conn-Lusers: Shows the LUSERS output on connect
1082 #<module name="m_conn_lusers.so">
1083
1084 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1085 # Conn-Usermodes: Set modes on users when they connect
1086 # When this module is loaded <connect:allow> tags may have an optional
1087 # modes="" value, which contains modes to add or remove from users
1088 # when they connect to the server.
1089 #<module name="m_conn_umodes.so">
1090
1091 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1092 # Conn-Wait-for-Pong: Don't let a user connect until they PONG
1093 #<module name="m_conn_waitpong.so">
1094 #
1095 #-#-#-#-#-#-#-#-#-#-#-   WAITPONG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1096 #                                                                     #
1097 # If you have the m_conn_waitpong.so module loaded, configure it with #
1098 # the <waitpong> tag:                                                 #
1099 #                                                                     #
1100 # sendsnotice    -   Whether to send a snotice on connect, like other #
1101 #                    older ircds                                      #
1102 #                                                                     #
1103 # killonbadreply -   Whether to kill the user if they send the wrong  #
1104 #                    PONG reply.                                      #
1105 #                                                                     #
1106 #<waitpong sendsnotice="yes" killonbadreply="yes">
1107
1108 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1109 # Connection throttle module. Configuration:
1110 #<module name="m_connflood.so">
1111 #
1112 #-#-#-#-#-#-#-#-#-#-#- CONTHROTTLE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1113 #  seconds, maxconns -  Amount of connections per <seconds>.
1114 #
1115 #  timeout           -  Time to wait after the throttle was activated
1116 #                       before deactivating it. Be aware that the time
1117 #                       is seconds + timeout.
1118 #
1119 #  quitmsg           -  The message that users get if they attempt to
1120 #                       connect while the throttle is active.
1121 #
1122 #  bootwait          -  Amount of time to wait before enforcing the
1123 #                       throttling when the server just booted.
1124 #
1125 #<connflood seconds="30" maxconns="3" timeout="30"
1126 #   quitmsg="Throttled" bootwait="10">
1127
1128 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1129 # DCCALLOW module: Adds the /DCCALLOW command
1130 #<module name="m_dccallow.so">
1131 #
1132 #-#-#-#-#-#-#-#-#-#-#-  DCCALLOW CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1133 #  blockchat         - Whether to block DCC CHAT as well as DCC SEND
1134 #  length            - Default duration of entries in DCCALLOW list
1135 #  action            - Default action to take if no action is specified
1136 #                      can be 'block' or 'allow'
1137 #
1138 # File configuration:
1139 #  pattern           - The glob pattern to match against
1140 #  action            - Action to take if a user attempts to send a file
1141 #                      that matches this pattern, can be 'block' or 'allow'
1142 #
1143 #<dccallow blockchat="yes" length="5m" action="block">
1144 #<banfile pattern="*.exe" action="block">
1145 #<banfile pattern="*.txt" action="allow">
1146 #
1147 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1148
1149 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1150 # Deaf module: adds support for ircu style usermode +d - deaf to
1151 # channel messages and channel notices.
1152 #<module name="m_deaf.so">
1153
1154 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1155 # Deny Channels: Deny Channels from being used by users
1156 #<module name="m_denychans.so"> 
1157 #
1158 #-#-#-#-#-#-#-#-#-#-#-   DENYCHAN DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#
1159 #                                                                     #
1160 # If you have the m_denychans.so module loaded, you need to specify   #
1161 # the channels to deny:                                               #
1162 #                                                                     #
1163 # name        -      The channel name to deny.                        #
1164 #                                                                     #
1165 # allowopers  -      If operators are allowed to override the deny.   #
1166 #                                                                     #
1167 # reason      -      Reason given for the deny.                       #
1168 #                                                                     #
1169 #<badchan name="#gods" allowopers="yes" reason="Tortoises!">
1170
1171 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1172 # Devoice Module: Let users devoice themselves.
1173 #<module name="m_devoice.so">
1174
1175 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1176 # DNS Blacklist Module: Provides support for looking up IPs on one or #
1177 # more blacklists.                                                    #
1178 #<module name="m_dnsbl.so">                                           #
1179 #                                                                     #
1180 # For configuration options please see the wiki page for m_dnsbl at   #
1181 # http://inspircd.org/wiki/DNS_Blacklist_Module                       #
1182
1183 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1184 # Filter module: Provides glob-based message filtering
1185 #<module name="m_filter.so">
1186 # OR
1187 # PCRE filter module: Filters messages using regular expressions
1188 #<module name="m_filter_pcre.so">
1189 #
1190 # You may only use one or the other with these modules, network-wide.
1191 #
1192 #-#-#-#-#-#-#-#-#-#-#-  FILTER  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
1193 #                                                                     #
1194 # Optional - If you specify to use the m_filter or m_filter_pcre      #
1195 # modules, then specfiy below the path to the filter.conf file,       #
1196 # or define some <filter> tags.                                       #
1197 #                                                                     #
1198 #<include file="filter.conf">
1199
1200 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1201 # Foobar module: does nothing - historical relic
1202 #<module name="m_foobar.so">
1203
1204 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1205 # Globops module: gives /GLOBOPS and usermode +g
1206 #<module name="m_globops.so">
1207
1208 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1209 # Global load module: Allows loading and unloading of modules network-
1210 # wide (USE WITH EXTREME CAUTION!)
1211 #<module name="m_globalload.so">
1212
1213 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1214 # HELPOP module: Provides the /HELPOP command
1215 #<module name="m_helpop.so">
1216 #
1217 #-#-#-#-#-#-#-#-#-#-#-#-  HELPOP  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1218 #                                                                     #
1219 # Optional - If you specify to use the m_helpop.so module, then       #
1220 # specify below the path to the helpop.conf file, or if you like to   #
1221 # make a mess, define your helpop tags in this conf.                  #
1222 #                                                                     #
1223 #<include file="helpop.conf">
1224
1225 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1226 # HIDECHANS module: Allows opers to hide their channels list from non-
1227 # opers by setting user mode +I on themselves.
1228 # <module name="m_hidechans.so">
1229
1230 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1231 # HIDEOPER module: Allows opers to hide their oper status from non-
1232 # opers by setting user mode +H on themselves.
1233 # <module name="m_hideoper.so">
1234
1235 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1236 # Hostchange module: Allows a different style of cloaking
1237 #<module name="m_hostchange.so">
1238 #
1239 #-#-#-#-#-#-#-#-#-#-#-  HOSTCHANGE  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
1240 #                                                                     #
1241 # Optional - If you choose to use the m_hostchange.so module.         #
1242 # Config Help -  See http://www.inspircd.org/wiki/Host_Changer_Module #
1243 #                                                                     #
1244 #<host suffix="polarbears.org">
1245 #<hostchange mask="*@fbi.gov" action="addnick">
1246 #<hostchange mask="*r00t@*" action="suffix">
1247 #<hostchange mask="a@b.com" action="set" value="blah.blah.blah">
1248
1249 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1250 # httpd module: Provides http server support for InspIRCd
1251 #<module name="m_httpd.so">
1252 #
1253 #-#-#-#-#-#-#-#-#-#-#-#-  HTTPD   CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1254 #
1255 # Optional - If you choose to use the m_httpd.so module,  then you must
1256 # specify the port number and other details of your http server:
1257 #
1258 #<http ip="192.168.1.10" host="brainwave" port="32006"
1259 #      index="/home/brain/inspircd/http/index.html">
1260 #
1261 # You may have as many of these tags as you wish, each with a different
1262 # IP, port, host or index file. Each one will act as an independent
1263 # HTTP server.
1264 #
1265
1266 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1267 # http stats module: Provides basic stats pages over HTTP
1268 # Requires m_httpd.so to be loaded for it to function.
1269 #<module name="m_httpd_stats.so">
1270 #
1271 #-#-#-#-#-#-#-#-#-#-#-#- HTTPD STATS CONFIGURATION -#-#-#-#-#-#-#-#-#-#
1272 #
1273 #<httpstats stylesheet="http://remote.style/sheet.css">
1274 #
1275
1276 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1277 # Ident: Provides RFC 1413 ident lookup support
1278 #<module name="m_ident.so">
1279 #
1280 #-#-#-#-#-#-#-#-#-#-#-#-   IDENT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1281 #                                                                     #
1282 # Optional - If you are using the m_ident.so module, then you can     #
1283 # specify the timeout for ident lookups here. If not defined, it will #
1284 # default to one second. This is a non-blocking timeout which holds   #
1285 # the user in a 'connecting' state until the lookup is complete.      #
1286 #                                                                     #
1287 #<ident timeout="5">
1288
1289 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1290 # Invite except module: Adds support for channel invite exceptions (+I)
1291 #<module name="m_inviteexception.so">
1292
1293 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1294 # Join flood module: Adds support for join flood protection (+j)
1295 #<module name="m_joinflood.so">
1296
1297 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1298 # Anti-Auto-Rejoin: Adds support for prevention of auto-rejoin (+J)
1299 #<module name="m_kicknorejoin.so">
1300
1301 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1302 # Knock module: adds the /KNOCK command and +K channel mode
1303 #<module name="m_knock.so">
1304
1305 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1306 # Lock server module: Adds /LOCKSERV and /UNLOCKSERV commands that is #
1307 # used to temporarily close/open for new connections to the server.   #
1308 # These commands require OPER status and that the LOCKSERV UNLOCKSERV #
1309 # are specified in a <class> tag that the oper is part of. This is so #
1310 # you can control who has access to this possible dangerous command.  #
1311 # If your server is locked and you got disconnected, do a REHASH from #
1312 # shell to open up again.
1313 #<module name="m_lockserv.so">
1314
1315 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1316 # Msg flood module: Adds message/notice flood protection (+f)
1317 #<module name="m_messageflood.so">
1318
1319 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1320 # MySQL module: Allows other SQL modules to access MySQL databases
1321 # through a unified API. You must copy the source for this module
1322 # from the directory src/modules/extra, plus the file m_sqlv2.h
1323 #<module name="m_mysql.so">
1324 #
1325 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1326 #                                                                     #
1327 # m_mysql.so is more complex than described here, see the wiki for    #
1328 # more: http://www.inspircd.org/wiki/SQL_Service_Provider_Module      #
1329 #
1330 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database2">
1331
1332 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1333 # NAMESX module: Provides support for the NAMESX extension which allows
1334 # clients to see all the prefixes set on a user without getting confused.
1335 # This is supported by mIRC, x-chat, klient, and maybe more.
1336 #<module name="m_namesx.so">
1337
1338 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1339 # Nicklock module: Let opers change a user's nick and then stop that
1340 # user from changing their nick again.
1341 #<module name="m_nicklock.so">
1342
1343 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1344 # No ctcp module: Adds the channel mode +C to block CTCPs
1345 #<module name="m_noctcp.so">
1346
1347 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1348 # Noinvite module: Gives channel mode +V
1349 #<module name="m_noinvite.so">
1350
1351 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1352 # No kicks module: Adds the +Q channel mode
1353 #<module name="m_nokicks.so">
1354
1355 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1356 # No nicks module: Adds the +N channel mode
1357 #<module name="m_nonicks.so">
1358
1359 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1360 # No Notice module: adds the channel mode +T
1361 #<module name="m_nonotice.so">
1362
1363 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1364 # Oper channels mode: Adds the +O channel mode
1365 #<module name="m_operchans.so">
1366
1367 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1368 # Oper hash module: Allows hashed oper passwords
1369 # Relies on the module m_md5.so and/or m_sha256.so being loaded before
1370 # m_oper_hash.so in the configuration file.
1371 #<module name="m_oper_hash.so">
1372 #
1373 #-#-#-#-#-#-#-#-#-#-# OPER HASH CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#-#
1374 #
1375 # To use this module, you must define a hash type for each oper's
1376 # password you want to hash. For example:
1377 #
1378 #     <oper name="Brain"
1379 #           host="ident@dialup15.isp.com"
1380 #           hash="sha256"
1381 #           password="a41d730937a53b79f788c0ab13e9e1d5"
1382 #           type="NetAdmin">
1383
1384 # The types of hashing available vary depending on which hashing modules
1385 # you load, but usually if you load m_sha256.so and m_md5.so, both md5
1386 # and sha256 type hashing will be available (the most secure of which
1387 # is SHA256).
1388
1389 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1390 # Oper Join module: Forces opers to join a channel on oper-up
1391 #<module name="m_operjoin.so">
1392 #
1393 #-#-#-#-#-#-#-#-#-#-#   OPERJOIN CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1394 #                                                                     #
1395 # If you are using the m_operjoin.so module, specify the channel here #
1396 #                                                                     #
1397 #<operjoin channel="#channel">
1398
1399 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1400 # Oper MOTD module: Provides support for seperate message of the day
1401 # on oper-up
1402 #<module name="m_opermotd.so">
1403 #
1404 #-#-#-#-#-#-#-#-#-#-#   OPERMOTD CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1405 #                                                                     #
1406 # If you are using the m_opermotd.so module, specify the motd here    #
1407 #                                                                     #
1408 #<opermotd file="oper.motd">
1409
1410 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1411 # Override module: Adds support for oper override
1412 #<module name="m_override.so">
1413 #
1414 #-#-#-#-#-#-#-#-#-#-#   OVERRIDE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1415 #                                                                     #
1416 # m_override.so is too complex it describe here, see the wiki:        #
1417 # http://www.inspircd.org/wiki/Oper_Override_Module                   #
1418
1419 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1420 # Oper levels module: Gives each oper a level and prevents
1421 # actions being taken against higher level opers
1422 # Specify the level as the 'level' parameter of the <type> tag
1423 #<module name="m_operlevels.so">
1424
1425 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1426 # Oper modes module: Allows you to specify modes to add/remove on oper
1427 # Specify the modes as the 'modes' parameter of the <type> tag
1428 #<module name="m_opermodes.so">
1429
1430 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1431 # PostgreSQL module: Allows other SQL modules to access PgSQL databases
1432 # through a unified API. You must copy the source for this module
1433 # from the directory src/modules/extra, plus the file m_sqlv2.h
1434 #<module name="m_pgsql.so">
1435 #
1436 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1437 #                                                                     #
1438 # m_pgsql.so is more complex than described here, see the wiki for    #
1439 # more: http://www.inspircd.org/wiki/SQL_Service_Provider_Module      #
1440 #
1441 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database" ssl="no">
1442
1443 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1444 # Random Quote module: provides a random quote on connect.
1445 # NOTE: Some of these may mimic fatal errors and confuse users and 
1446 # opers alike! - BEWARE!
1447 #<module name="m_randquote.so">
1448 #
1449 #-#-#-#-#-#-#-#-#-#-  RANDOMQUOTES CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1450 #                                                                     #
1451 # Optional - If you specify to use the m_randquote.so module, then    #
1452 # specify below the path to the randquotes.conf file.                 #
1453 #                                                                     #
1454 #<randquote file="randquotes.conf">
1455
1456 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1457 # Redirect module: Adds channel redirection (mode +L)
1458 #<module name="m_redirect.so">
1459
1460 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1461 # Remove module: Adds the /REMOVE command which is a peaceful
1462 # alternative to /KICK
1463 #<module name="m_remove.so">
1464
1465 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1466 # Restrict banned users module:
1467 # Disallows banned users on a channel from messaging the channel,
1468 # changing nick, or changing the topic, if loaded.
1469 #<module name="m_restrictbanned.so">
1470
1471 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1472 # Restricted channels module: Allows only opers to create channels
1473 #<module name="m_restrictchans.so">
1474
1475 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1476 # Restrict message module: Allows users to only message opers
1477 #<module name="m_restrictmsg.so">
1478
1479 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1480 # Provide /LIST throttling (to prevent flooding) and /LIST safety to
1481 # prevent excess flood when the list is large.
1482 #<module name="m_safelist.so">
1483
1484 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1485 # SAJOIN module: Adds the /SAJOIN command
1486 #<module name="m_sajoin.so">
1487
1488 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1489 # SAMODE module: Adds the oper /SAMODE command
1490 #<module name="m_samode.so">
1491
1492 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1493 # SANICK module: Allows opers to change user's nicks
1494 #<module name="m_sanick.so">
1495
1496 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1497 # SAPART module: Adds the oper /SAPART command
1498 #<module name="m_sapart.so">
1499
1500 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1501 # SAQUIT module: Adds the oper /SAQUIT command (abusable!!!)
1502 #<module name="m_saquit.so">
1503
1504 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1505 # Secure list module: Prevent /LIST in the first minute of connection,
1506 # crippling most spambots and trojan spreader bots.
1507 #<module name="m_securelist.so">
1508 #
1509 #-#-#-#-#-#-#-#-#-# SECURELIST CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1510 #                                                                     #
1511 # Securelist can be harmful to some irc search engines such as        #
1512 # netsplit.de and searchirc.com. To prevent securelist blocking these #
1513 # sites from listing, define exception tags as shown below:           #
1514 <securelist exception="*@*.searchirc.org">
1515 <securelist exception="*@*.netsplit.de">
1516
1517 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1518 # Set Idle module: Adds a command for opers to change their
1519 # idle time (mainly a toy)
1520 #<module name="m_setidle.so">
1521
1522 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1523 # Services support module: Adds several usermodes such as +R and +M
1524 # this module implements the 'identified' state via user mode +r, which
1525 # is similar to the DALnet and dreamforge systems.
1526 #<module name="m_services.so">
1527
1528 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1529 # Services support module: Adds several usermodes such as +R and +M
1530 # this module implements the 'identified' state via account names (AC)
1531 # and is similar in operation to the way asuka and ircu handle services.
1532 # it cannot be used at the same time as m_services, above.
1533 #<module name="m_services_account.so">
1534
1535 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1536 # Sethost module: Adds the /SETHOST command
1537 #<module name="m_sethost.so">
1538
1539 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1540 # Setident module: Adds the /SETIDENT command
1541 #<module name="m_setident.so">
1542
1543 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1544 # SETNAME module: Adds the /SETNAME command
1545 #<module name="m_setname.so">
1546
1547 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1548 # Show Whois module: Adds the +W usermode which allows opers
1549 # to see when they are whois'ed (can be annoying).
1550 #<module name="m_showwhois.so">
1551
1552 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1553 # Spy module: Adds the commands SPYLIST and SPYNAMES that let opers
1554 # see who is in a +s channel, and list +s channels, show keys of keyed
1555 # channels the oper is not a member of etc. (standard 'abusive' features
1556 # of many other ircds, modulized here in InspIRCd).
1557 #<module name="m_spy.so">
1558
1559 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1560 # SSL channel mode module: Adds support for SSL-only channels (+z).
1561 # does not do anything useful without a working SSL module (see below)
1562 #<module name="m_sslmodes.so">
1563
1564 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1565 # Dummy ssl module: If you have other servers on your network which
1566 # have SSL, but your server does not have ssl enabled, you should load
1567 # this module, which will handle SSL metadata (e.g. the "Is using ssl"
1568 # field in the WHOIS information).
1569 #<module name="m_ssl_dummy.so">
1570
1571 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1572 # GnuTLS ssl module: Adds support for client-server SSL using GnuTLS,
1573 # if enabled. You must copy the source for this module from the directory
1574 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1575 # want to enable this, or it will not load.
1576 #<module name="m_ssl_gnutls.so">
1577 #
1578 #-#-#-#-#-#-#-#-#-#-#-  GNUTLS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1579 #                                                                     #
1580 # m_ssl_gnutls.so is too complex it describe here, see the wiki:      #
1581 # http://www.inspircd.org/wiki/GnuTLS_SSL_Module                      #
1582 #                                                                     #
1583 # NOTE: If you want to use this module to encrypt and sign your       #
1584 # server to server traffic, you MUST load it before m_spanningtree in #
1585 # your configuration file!                                            #
1586
1587 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1588 # SSL Info module: Allows users to retrieve information about other
1589 # user's peer SSL certificates and keys. This can be used by client
1590 # scripts to validate users. For this to work, one of m_ssl_gnutls.so
1591 # or m_ssl_openssl.so must be loaded. You must symlink the source for
1592 # this module from the directory src/modules/extra.
1593 #<module name="m_sslinfo.so">
1594
1595 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1596 # OpenSSL ssl module: Adds support for client-server SSL using OpenSSL,
1597 # if enabled. You must copy the source for this module from the directory
1598 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1599 # want to enable this, or it will not load.
1600 #<module name="m_ssl_openssl.so">
1601 #
1602 #-#-#-#-#-#-#-#-#-#-#- OPENSSL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1603 #                                                                     #
1604 # m_ssl_openssl.so is too complex it describe here, see the wiki:     #
1605 # http://www.inspircd.org/wiki/OpenSSL_SSL_Module                     #
1606 #                                                                     #
1607 # NOTE: If you want to use this module to encrypt and sign your       #
1608 # server to server traffic, you MUST load it before m_spanningtree in #
1609 # your configuration file!                                            #
1610
1611 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1612 # SSL Cert Oper module: Allows opers to oper up using the key fingerprint
1613 # stored within their SSL certificate and key pair.
1614 # When using this module, one of m_ssl_gnutls.so or m_ssl_openssl.so must
1615 # be loaded. An extra value should be added to enabled opers, which
1616 # is in the following format: fingerprint="<hash>". For more information,
1617 # see the example in the oper blocks.
1618 #<module name="m_ssl_oper_cert.so">
1619
1620 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1621 # Strip colour module: Adds the channel mode +S
1622 #<module name="m_stripcolor.so">
1623
1624 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1625 # SILENCE module: Adds support for /SILENCE
1626 #<module name="m_silence.so">
1627
1628 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1629 # Extended SILENCE module: Adds support for /SILENCE with additional
1630 # features to silence based on invites, channel messages, etc.
1631 #<module name="m_silence_ext.so">
1632
1633 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1634 # SQLite3 module: Allows other SQL modules to access SQLite3          #
1635 # databases through a unified API. You must link the source for this  #
1636 # module from the directory src/modules/extra to src/modules, plus    #
1637 # the file m_sqlv2.h                                                  #
1638 #<module name="m_sqlite3.so">
1639 #
1640 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1641 #                                                                     #
1642 # m_sqlite.so is more complex than described here, see the wiki for   #
1643 # more: http://www.inspircd.org/wiki/SQLite3_Service_Provider_Module  #
1644 #
1645 #<database hostname="/full/path/to/database.db" id="anytext">
1646
1647 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1648 # SQLutils module: Provides some utilities to SQL client modules, such
1649 # as mapping queries to users and channels. You must copy the source
1650 # for this module from the directory src/modules/extra/m_sqlutils.cpp
1651 # and src/modules/extra/m_sqlutils.h into /src/modules
1652 # Needed for, and loaded before: SQLauth and SQLoper
1653 #<module name="m_sqlutils.so">
1654
1655 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1656 # SQL authentication module: Allows IRCd connections to be tied into
1657 # a database table (for example a forum). You must copy the source for
1658 # this module from the directory src/modules/extra
1659 # Depends on the SQLutils module being loaded first.
1660 #<module name="m_sqlauth.so">
1661 #
1662 #-#-#-#-#-#-#-#-#-#-#- SQLAUTH CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1663 #                                                                     #
1664 # m_sqlauth.so is too complex it describe here, see the wiki:         #
1665 # http://www.inspircd.org/wiki/SQL_Authentication_Module              #
1666
1667 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1668 # SQL logging module: Allows you to log network-wide data for your
1669 # network in a fully normalized set of SQL tables. You must copy the
1670 # source for this module from the directory src/modules/extra
1671 #<module name="m_sqllog.so">
1672 #
1673 #-#-#-#-#-#-#-#-#-#-#-  SQLLOG CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1674 #                                                                     #
1675 # dbid       - Database ID to use (see m_sql)                         #
1676 #                                                                     #
1677 # See also: http://www.inspircd.org/wiki/SQL_Logging_Module           #
1678 #                                                                     #
1679 #<sqllog dbid="1">
1680
1681 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1682 # SQL oper module: Allows you to store oper credentials in an SQL table
1683 # You must copy the source for this module from the directory src/modules/extra
1684 # Depends on the SQLutils module being loaded first.
1685 #<module name="m_sqloper.so">
1686 #
1687 #-#-#-#-#-#-#-#-#-#-#- SQLOPER CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1688 #                                                                     #
1689 # dbid       - Database ID to use (see m_sql)                         #
1690 #                                                                     #
1691 # See also: http://www.inspircd.org/wiki/SQL_Oper_Storage_Module      #
1692 #                                                                     #
1693 #<sqloper dbid="1">
1694
1695 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1696 # SWHOIS module: Allows you to add arbitary lines to user WHOIS.
1697 #<module name="m_swhois.so">
1698
1699 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1700 # Test command module: Does nothing significant. Read: pointless.
1701 #<module name="m_testcommand.so">
1702
1703 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1704 # Timed bans module: Adds timed bans and the /TBAN command
1705 #<module name="m_timedbans.so">
1706
1707 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1708 # Test line module: Adds the /TLINE command, used to test how many
1709 # users a /GLINE or /ZLINE etc would match.
1710 #<module name="m_tline.so">
1711
1712 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1713 # Uninvite module: Adds the /UNINVITE command which lets users remove
1714 # pending invites from channels without waiting for the user to join.
1715 #<module name="m_uninvite.so">
1716
1717 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1718 # Userip module: Adds the /USERIP command
1719 #<module name="m_userip.so">
1720
1721 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1722 # Vhost module: Adds the VHOST command which allows for adding virtual
1723 # hosts which are accessible using a username and password in the config.
1724 #<module name="m_vhost.so">
1725 #
1726 #-#-#-#-#-#-#-#-#-#-#- VHOST CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1727 #                                                                     #
1728 # user       - Username for the vhost.                                #
1729 #                                                                     #
1730 # pass       - Password for the vhost.                                #
1731 #                                                                     #
1732 # host       - Vhost to set.                                          #
1733 #
1734 #<vhost user="some_username" pass="some_password" host="some.host">
1735
1736 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1737 # Watch module: Adds the WATCH command, which is used by clients to 
1738 # maintain notify lists.
1739 #<module name="m_watch.so">
1740
1741 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1742 # ZipLinks module: Adds support for zlib deflate on server to server
1743 # connections. Both ends of the connection must load this module.
1744 #
1745 #<module name="m_ziplink.so">
1746 #
1747 # To use this module, you must enable it as a transport type in your
1748 # <link> tags or <bind> tags using the transport name 'zip'.
1749 # See the documentation of <link> and <bind>, respectively.
1750 #
1751
1752 #-#-#-#-#-#-#-#-#-#-#-#-#-#-  BAN OPTIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
1753 #                                                                     #
1754 # The ban tags define nick masks, host masks and ip ranges which are  #
1755 # banned from your server. All details in these tags are local to     #
1756 # Your server.                                                        #
1757 #                                                                     #
1758 #                                                                     #
1759 # badip lines ban an ip range (same as a zline)                       #
1760 #                                                                     #
1761 # ipmask       -          The ip range to ban (wildcards possible)    #
1762 #                         CIDR is supported in the IP mask.           #
1763 # reason       -          Reason to display when disconnected         #
1764 #                                                                     #
1765 # badnick lines ban a nick mask (same as a qline)                     #
1766 #                                                                     #
1767 # nick         -          Nick mask to ban (wildcards possible)       #
1768 # reason       -          Reason to display on /NICK                  #
1769 #                                                                     #
1770 # badhost lines ban a user@host mask (same as a kline)                #
1771 #                                                                     #
1772 # host         -          ident@hostname (wildcards possible)         #
1773 #                         If you specify an IP, CIDR is supported.    #
1774 # reason       -          Reason to display on disconnection          #
1775 #                                                                     #
1776 # exception lines define a hostmask that is excempt from [kzg]lines   #
1777 #                                                                     #
1778 # host         -          ident@hostname (wildcards possible)         #
1779 #                         If you specify an IP, CIDR is supported.    #
1780 # reason       -          Reason, shown only in /stats e              #
1781 #                                                                     #
1782
1783 <badip ipmask="69.69.69.69" reason="No porn here thanks.">
1784
1785 <badnick nick="ChanServ" reason="Reserved For Services">
1786 <badnick nick="NickServ" reason="Reserved For Services">
1787 <badnick nick="OperServ" reason="Reserved For Services">
1788 <badnick nick="MemoServ" reason="Reserved For Services">
1789
1790 <badhost host="*@hundredz.n.hundredz.o.1337.kiddies.com" reason="Too many 1337 kiddiots">
1791 <badhost host="*@localhost" reason="No irc from localhost!">
1792 <badhost host="*@172.32.0.0/16" reason="This subnet is bad.">
1793
1794 <exception host="*@ircop.host.com" reason="Opers hostname">
1795
1796 #-#-#-#-#-#-#-#-#-#-#- INSANE BAN OPTIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
1797 #                                                                     #
1798 # This optional tag allows you to specify how wide a gline, eline,    #
1799 # kline, zline or qline can be before it is forbidden from being      #
1800 # set. By setting hostmasks="yes", you can allow all G, K, E lines,   #
1801 # no matter how many users the ban would cover. This is not           #
1802 # recommended! By setting ipmasks="yes", you can allow all Z lines,   #
1803 # no matter how many users these cover too. Needless to say we        #
1804 # don't recommend you do this, or, set nickmasks="yes", which will    #
1805 # allow any qline.                                                    #
1806 #                                                                     #
1807 # The trigger value indicates how wide any mask will be before it is  #
1808 # prevented from being set. The default value is 95.5% if this tag is #
1809 # not defined in your configuration file, meaning that if your        #
1810 # network has 1000 users, a gline matching over 955 of them will be   #
1811 # prevented from being added.                                         #
1812 #                                                                     #
1813 # Please note that remote servers (and services) are exempt from      #
1814 # these restrictions and expected to enforce their own policies       #
1815 # locally!                                                            #
1816 #                                                                     #
1817
1818 <insane hostmasks="no" ipmasks="no" nickmasks="no" trigger="95.5">
1819
1820 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#- YAWN  -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1821 #                                                                     #
1822 #   You should already know what to do here :)                        #
1823
1824 <die value="No, i wasnt joking. You should probably edit your config *PROPERLY* and try again.">
1825
1826
1827 #########################################################################
1828 #                                                                       #
1829 #                     - InspIRCd Development Team -                     #
1830 #                        http://www.inspircd.org                        #
1831 #                                                                       #
1832 #########################################################################