Blame
Date:
Fri Jan 1 19:03:58 2021 UTC
Message:
Update Platforms.txt - Add aarch64/apple/darwin (Apple CLang 12.0.0) - Add x86_64/unknown/openbsd6.7 (gcc 4.2.1) Thanks to Götz Hoffart
001
2010-11-03
fw
#
002
2010-11-03
fw
# This is a sample configuration file for the ngIRCd IRC daemon, which must
003
2010-11-03
fw
# be customized to the local preferences and needs.
004
2010-11-03
fw
#
005
2010-11-03
fw
# Comments are started with "#" or ";".
006
2010-11-03
fw
#
007
2010-11-03
fw
# A lot of configuration options in this file start with a ";". You have
008
2010-11-03
fw
# to remove the ";" in front of each variable to actually set a value!
009
2010-11-03
fw
# The disabled variables are shown with example values for completeness only
010
2010-11-03
fw
# and the daemon is using compiled-in default settings.
011
2010-11-03
fw
#
012
2010-11-03
fw
# Use "ngircd --configtest" (see manual page ngircd(8)) to validate that the
013
2010-11-03
fw
# server interprets the configuration file as expected!
014
2010-11-03
fw
#
015
2011-06-26
alex
# Please see ngircd.conf(5) for a complete list of configuration options
016
2011-06-26
alex
# and their descriptions.
017
2010-11-03
fw
#
018
2010-11-03
fw
019
2010-11-03
fw
[Global]
020
2010-11-03
fw
# The [Global] section of this file is used to define the main
021
2010-11-03
fw
# configuration of the server, like the server name and the ports
022
2010-11-03
fw
# on which the server should be listening.
023
2011-06-26
alex
# These settings depend on your personal preferences, so you should
024
2011-06-26
alex
# make sure that they correspond to your installation and setup!
025
2010-11-03
fw
026
2010-11-03
fw
# Server name in the IRC network, must contain at least one dot
027
2010-11-03
fw
# (".") and be unique in the IRC network. Required!
028
2011-03-18
alex
Name = irc.example.net
029
2010-11-03
fw
030
2010-11-03
fw
# Information about the server and the administrator, used by the
031
2010-11-03
fw
# ADMIN command. Not required by server but by RFC!
032
2010-11-03
fw
;AdminInfo1 = Description
033
2010-11-03
fw
;AdminInfo2 = Location
034
2010-11-03
fw
;AdminEMail = admin@irc.server
035
2010-11-03
fw
036
2013-01-02
alex
# Text file which contains the ngIRCd help text. This file is required
037
2013-01-02
alex
# to display help texts when using the "HELP <cmd>" command.
038
2013-01-02
alex
;HelpFile = :DOCDIR:/Commands.txt
039
2013-01-02
alex
040
2011-06-26
alex
# Info text of the server. This will be shown by WHOIS and
041
2011-06-26
alex
# LINKS requests for example.
042
2011-06-26
alex
Info = Server Info Text
043
2010-11-03
fw
044
2011-06-26
alex
# Comma separated list of IP addresses on which the server should
045
2010-11-03
fw
# listen. Default values are:
046
2010-11-03
fw
# "0.0.0.0" or (if compiled with IPv6 support) "::,0.0.0.0"
047
2010-11-03
fw
# so the server listens on all IP addresses of the system by default.
048
2010-11-03
fw
;Listen = 127.0.0.1,192.168.0.1
049
2010-11-03
fw
050
2010-11-03
fw
# Text file with the "message of the day" (MOTD). This message will
051
2010-11-03
fw
# be shown to all users connecting to the server:
052
2010-11-03
alex
;MotdFile = :ETCDIR:/ngircd.motd
053
2010-11-03
fw
054
2019-01-03
alex
# A simple Phrase (<127 chars) if you don't want to use a motd file.
055
2010-11-03
fw
;MotdPhrase = "Hello world!"
056
2010-11-03
fw
057
2014-01-01
alex
# The name of the IRC network to which this server belongs. This name
058
2014-01-01
alex
# is optional, should only contain ASCII characters, and can't contain
059
2014-01-01
alex
# spaces. It is only used to inform clients. The default is empty,
060
2014-01-01
alex
# so no network name is announced to clients.
061
2014-01-01
alex
;Network = aIRCnetwork
062
2014-01-01
alex
063
2011-06-26
alex
# Global password for all users needed to connect to the server.
064
2011-06-26
alex
# (Default: not set)
065
2011-06-26
alex
;Password = abc
066
2011-06-26
alex
067
2011-06-26
alex
# This tells ngIRCd to write its current process ID to a file.
068
2011-06-26
alex
# Note that the pidfile is written AFTER chroot and switching the
069
2011-06-26
alex
# user ID, e.g. the directory the pidfile resides in must be
070
2011-06-28
alex
# writable by the ngIRCd user and exist in the chroot directory.
071
2011-06-26
alex
;PidFile = /var/run/ngircd/ngircd.pid
072
2011-06-26
alex
073
2011-06-26
alex
# Ports on which the server should listen. There may be more than
074
2011-06-26
alex
# one port, separated with ",". (Default: 6667)
075
2011-06-26
alex
;Ports = 6667, 6668, 6669
076
2011-06-26
alex
077
2011-06-26
alex
# Group ID under which the ngIRCd should run; you can use the name
078
2011-06-26
alex
# of the group or the numerical ID. ATTENTION: For this to work the
079
2011-06-26
alex
# server must have been started with root privileges!
080
2011-06-26
alex
;ServerGID = 65534
081
2011-06-26
alex
082
2010-11-03
fw
# User ID under which the server should run; you can use the name
083
2010-11-03
fw
# of the user or the numerical ID. ATTENTION: For this to work the
084
2010-11-03
fw
# server must have been started with root privileges! In addition,
085
2010-11-03
fw
# the configuration and MOTD files must be readable by this user,
086
2010-11-03
fw
# otherwise RESTART and REHASH won't work!
087
2010-11-03
fw
;ServerUID = 65534
088
2010-11-03
fw
089
2011-06-26
alex
[Limits]
090
2011-06-26
alex
# Define some limits and timeouts for this ngIRCd instance. Default
091
2011-06-26
alex
# values should be safe, but it is wise to double-check :-)
092
2010-11-03
fw
093
2010-11-03
fw
# The server tries every <ConnectRetry> seconds to establish a link
094
2010-11-03
fw
# to not yet (or no longer) connected servers.
095
2010-11-03
fw
;ConnectRetry = 60
096
2010-11-03
fw
097
2013-02-10
alex
# Number of seconds after which the whole daemon should shutdown when
098
2013-02-10
alex
# no connections are left active after handling at least one client
099
2013-02-10
alex
# (0: never, which is the default).
100
2013-02-10
alex
# This can be useful for testing or when ngIRCd is started using
101
2013-02-10
alex
# "socket activation" with systemd(8), for example.
102
2013-02-10
alex
;IdleTimeout = 0
103
2013-02-10
alex
104
2010-11-03
fw
# Maximum number of simultaneous in- and outbound connections the
105
2010-11-03
fw
# server is allowed to accept (0: unlimited):
106
2010-11-03
fw
;MaxConnections = 0
107
2010-11-03
fw
108
2010-11-03
fw
# Maximum number of simultaneous connections from a single IP address
109
2010-11-03
fw
# the server will accept (0: unlimited):
110
2010-11-03
fw
;MaxConnectionsIP = 5
111
2010-11-03
fw
112
2010-11-03
fw
# Maximum number of channels a user can be member of (0: no limit):
113
2010-11-03
fw
;MaxJoins = 10
114
2010-11-03
fw
115
2012-11-02
alex
# Maximum length of an user nickname (Default: 9, as in RFC 2812).
116
2010-11-03
fw
# Please note that all servers in an IRC network MUST use the same
117
2012-11-02
alex
# maximum nickname length!
118
2010-11-03
fw
;MaxNickLength = 9
119
2010-11-03
fw
120
2018-11-28
noreply
# Maximum penalty time increase in seconds, per penalty event. Set to -1
121
2018-11-28
noreply
# for no limit (the default), 0 to disable penalties altogether. The
122
2018-11-28
noreply
# daemon doesn't use penalty increases higher than 2 seconds during
123
2018-11-28
noreply
# normal operation, so values greater than 1 rarely make sense.
124
2018-11-28
noreply
;MaxPenaltyTime = -1
125
2018-11-28
noreply
126
2012-10-25
brett
# Maximum number of channels returned in response to a /list
127
2012-10-25
brett
# command (0: unlimited):
128
2012-10-25
brett
;MaxListSize = 100
129
2012-10-25
brett
130
2011-06-26
alex
# After <PingTimeout> seconds of inactivity the server will send a
131
2011-06-26
alex
# PING to the peer to test whether it is alive or not.
132
2011-06-26
alex
;PingTimeout = 120
133
2011-03-27
alex
134
2011-06-26
alex
# If a client fails to answer a PING with a PONG within <PongTimeout>
135
2011-06-26
alex
# seconds, it will be disconnected by the server.
136
2011-06-26
alex
;PongTimeout = 20
137
2011-03-27
alex
138
2011-06-26
alex
[Options]
139
2011-06-26
alex
# Optional features and configuration options to further tweak the
140
2011-06-28
alex
# behavior of ngIRCd. If you want to get started quickly, you most
141
2011-06-26
alex
# probably don't have to make changes here -- they are all optional.
142
2011-06-26
alex
143
2013-08-04
alex
# List of allowed channel types (channel prefixes) for newly created
144
2013-08-04
alex
# channels on the local server. By default, all supported channel
145
2013-08-04
alex
# types are allowed. Set this variable to the empty string to disallow
146
2013-08-04
alex
# creation of new channels by local clients at all.
147
2013-08-04
alex
;AllowedChannelTypes = #&+
148
2013-08-04
alex
149
2011-06-26
alex
# Are remote IRC operators allowed to control this server, e.g.
150
2011-06-26
alex
# use commands like CONNECT, SQUIT, DIE, ...?
151
2011-06-26
alex
;AllowRemoteOper = no
152
2011-06-26
alex
153
2011-06-26
alex
# A directory to chroot in when everything is initialized. It
154
2011-06-26
alex
# doesn't need to be populated if ngIRCd is compiled as a static
155
2011-06-26
alex
# binary. By default ngIRCd won't use the chroot() feature.
156
2011-06-26
alex
# ATTENTION: For this to work the server must have been started
157
2011-06-26
alex
# with root privileges!
158
2011-06-26
alex
;ChrootDir = /var/empty
159
2011-06-26
alex
160
2011-03-19
alex
# Set this hostname for every client instead of the real one.
161
2012-08-03
sebkoehl
# Use %x to add the hashed value of the original hostname.
162
2012-06-11
alex
;CloakHost = cloaked.host
163
2011-03-16
alex
164
2012-06-11
alex
# Use this hostname for hostname cloaking on clients that have the
165
2012-06-11
alex
# user mode "+x" set, instead of the name of the server.
166
2012-08-03
sebkoehl
# Use %x to add the hashed value of the original hostname.
167
2012-06-11
alex
;CloakHostModeX = cloaked.user
168
2012-06-11
alex
169
2012-08-03
sebkoehl
# The Salt for cloaked hostname hashing. When undefined a random
170
2012-08-03
sebkoehl
# hash is generated after each server start.
171
2012-08-03
sebkoehl
;CloakHostSalt = abcdefghijklmnopqrstuvwxyz
172
2012-08-03
sebkoehl
173
2012-11-02
alex
# Set every clients' user name to their nickname
174
2011-03-19
alex
;CloakUserToNick = yes
175
2011-03-16
alex
176
2011-06-26
alex
# Try to connect to other IRC servers using IPv4 and IPv6, if possible.
177
2011-06-26
alex
;ConnectIPv6 = yes
178
2011-06-26
alex
;ConnectIPv4 = yes
179
2011-06-26
alex
180
2013-08-26
alex
# Default user mode(s) to set on new local clients. Please note that
181
2014-03-18
alex
# only modes can be set that the client could set using regular MODE
182
2014-03-18
alex
# commands, you can't set "a" (away) for example! Default: none.
183
2013-08-26
alex
;DefaultUserModes = i
184
2013-08-26
alex
185
2013-08-26
alex
# Do DNS lookups when a client connects to the server.
186
2011-01-09
fw
;DNS = yes
187
2011-01-09
fw
188
2011-06-26
alex
# Do IDENT lookups if ngIRCd has been compiled with support for it.
189
2011-01-01
alex
# Users identified using IDENT are registered without the "~" character
190
2011-01-01
alex
# prepended to their user name.
191
2011-01-09
fw
;Ident = yes
192
2011-01-09
fw
193
2013-05-24
alex
# Directory containing configuration snippets (*.conf), that should
194
2013-05-24
alex
# be read in after parsing this configuration file.
195
2013-05-24
alex
;IncludeDir = :ETCDIR:/conf.d
196
2013-05-24
alex
197
2011-06-26
alex
# Enhance user privacy slightly (useful for IRC server on TOR or I2P)
198
2011-06-26
alex
# by censoring some information like idle time, logon time, etc.
199
2011-06-26
alex
;MorePrivacy = no
200
2011-06-26
alex
201
2011-06-26
alex
# Normally ngIRCd doesn't send any messages to a client until it is
202
2015-08-01
alex
# registered. Enable this option to let the daemon send "NOTICE *"
203
2011-06-26
alex
# messages to clients while connecting.
204
2015-08-01
alex
;NoticeBeforeRegistration = no
205
2011-06-26
alex
206
2011-06-26
alex
# Should IRC Operators be allowed to use the MODE command even if
207
2011-06-26
alex
# they are not(!) channel-operators?
208
2011-06-26
alex
;OperCanUseMode = no
209
2011-06-26
alex
210
2012-09-25
alex
# Should IRC Operators get AutoOp (+o) in persistent (+P) channels?
211
2012-09-25
alex
;OperChanPAutoOp = yes
212
2012-09-25
alex
213
2011-06-26
alex
# Mask IRC Operator mode requests as if they were coming from the
214
2011-06-26
alex
# server? (This is a compatibility hack for ircd-irc2 servers)
215
2011-06-26
alex
;OperServerMode = no
216
2011-06-26
alex
217
2011-01-09
fw
# Use PAM if ngIRCd has been compiled with support for it.
218
2011-01-01
alex
# Users identified using PAM are registered without the "~" character
219
2011-01-01
alex
# prepended to their user name.
220
2011-11-08
alex
;PAM = yes
221
2011-01-09
fw
222
2011-01-01
alex
# When PAM is enabled, all clients are required to be authenticated
223
2011-01-01
alex
# using PAM; connecting to the server without successful PAM
224
2011-01-01
alex
# authentication isn't possible.
225
2011-01-01
alex
# If this option is set, clients not sending a password are still
226
2011-01-01
alex
# allowed to connect: they won't become "identified" and keep the "~"
227
2011-01-01
alex
# character prepended to their supplied user name.
228
2011-01-01
alex
# Please note: To make some use of this behavior, it most probably
229
2011-01-01
alex
# isn't useful to enable "Ident", "PAM" and "PAMIsOptional" at the
230
2011-01-01
alex
# same time, because you wouldn't be able to distinguish between
231
2011-01-01
alex
# Ident'ified and PAM-authenticated users: both don't have a "~"
232
2011-01-01
alex
# character prepended to their respective user names!
233
2011-01-01
alex
;PAMIsOptional = no
234
2011-01-01
alex
235
2016-06-05
alex
# When PAM is enabled, this value determines the used PAM
236
2016-06-05
alex
# configuration.
237
2016-06-05
alex
# This setting allows to run multiple ngIRCd instances with
238
2016-06-05
alex
# different PAM configurations on each instance.
239
2016-06-05
alex
# If you set it to "ngircd-foo", PAM will use
240
2016-06-05
alex
# /etc/pam.d/ngircd-foo instead of the default
241
2016-06-05
alex
# /etc/pam.d/ngircd.
242
2016-06-05
alex
;PAMServiceName = ngircd
243
2016-06-05
alex
244
2011-06-26
alex
# Let ngIRCd send an "authentication PING" when a new client connects,
245
2011-06-26
alex
# and register this client only after receiving the corresponding
246
2011-06-26
alex
# "PONG" reply.
247
2011-06-26
alex
;RequireAuthPing = no
248
2011-06-26
alex
249
2011-06-28
alex
# Silently drop all incoming CTCP requests.
250
2011-06-26
alex
;ScrubCTCP = no
251
2011-06-26
alex
252
2011-06-26
alex
# Syslog "facility" to which ngIRCd should send log messages.
253
2011-06-26
alex
# Possible values are system dependent, but most probably auth, daemon,
254
2011-06-26
alex
# user and local1 through local7 are possible values; see syslog(3).
255
2011-06-26
alex
# Default is "local5" for historical reasons, you probably want to
256
2011-06-26
alex
# change this to "daemon", for example.
257
2011-06-26
alex
;SyslogFacility = local1
258
2011-06-26
alex
259
2011-06-26
alex
# Password required for using the WEBIRC command used by some
260
2011-06-26
alex
# Web-to-IRC gateways. If not set/empty, the WEBIRC command can't
261
2011-06-26
alex
# be used. (Default: not set)
262
2011-06-26
alex
;WebircPassword = xyz
263
2011-06-26
alex
264
2011-06-26
alex
;[SSL]
265
2011-06-26
alex
# SSL-related configuration options. Please note that this section
266
2011-06-26
alex
# is only available when ngIRCd is compiled with support for SSL!
267
2011-06-26
alex
# So don't forget to remove the ";" above if this is the case ...
268
2011-06-26
alex
269
2011-06-26
alex
# SSL Server Key Certificate
270
2011-06-26
alex
;CertFile = :ETCDIR:/ssl/server-cert.pem
271
2011-06-26
alex
272
2013-09-16
alex
# Select cipher suites allowed for SSL/TLS connections. This defaults
273
2013-09-17
fgsch
# to HIGH:!aNULL:@STRENGTH (OpenSSL) or SECURE128 (GnuTLS).
274
2013-09-17
fgsch
# See 'man 1ssl ciphers' (OpenSSL) or 'man 3 gnutls_priority_init'
275
2013-09-16
alex
# (GnuTLS) for details.
276
2013-09-16
alex
# For OpenSSL:
277
2014-10-26
alex
;CipherList = HIGH:!aNULL:@STRENGTH:!SSLv3
278
2013-09-16
alex
# For GnuTLS:
279
2014-10-26
alex
;CipherList = SECURE128:-VERS-SSL3.0
280
2013-09-16
alex
281
2011-06-26
alex
# Diffie-Hellman parameters
282
2011-06-26
alex
;DHFile = :ETCDIR:/ssl/dhparams.pem
283
2011-06-26
alex
284
2011-06-26
alex
# SSL Server Key
285
2011-06-26
alex
;KeyFile = :ETCDIR:/ssl/server-key.pem
286
2011-06-26
alex
287
2011-06-26
alex
# password to decrypt SSLKeyFile (OpenSSL only)
288
2011-06-26
alex
;KeyFilePassword = secret
289
2011-06-26
alex
290
2011-06-26
alex
# Additional Listen Ports that expect SSL/TLS encrypted connections
291
2011-06-26
alex
;Ports = 6697, 9999
292
2011-06-26
alex
293
2010-11-03
fw
[Operator]
294
2010-11-03
fw
# [Operator] sections are used to define IRC Operators. There may be
295
2010-11-03
fw
# more than one [Operator] block, one for each local operator.
296
2010-11-03
fw
297
2012-11-02
alex
# ID of the operator (may be different of the nickname)
298
2010-11-03
fw
;Name = TheOper
299
2010-11-03
fw
300
2010-11-03
fw
# Password of the IRC operator
301
2010-11-03
fw
;Password = ThePwd
302
2010-11-03
fw
303
2010-11-03
fw
# Optional Mask from which /OPER will be accepted
304
2010-11-03
fw
;Mask = *!ident@somewhere.example.com
305
2010-11-03
fw
306
2010-11-03
fw
[Operator]
307
2010-11-03
fw
# More [Operator] sections, if you like ...
308
2010-11-03
fw
309
2010-11-03
fw
[Server]
310
2010-11-03
fw
# Other servers are configured in [Server] sections. If you
311
2010-11-03
fw
# configure a port for the connection, then this ngircd tries to
312
2019-07-21
alex
# connect to the other server on the given port; if not it waits
313
2010-11-03
fw
# for the other server to connect.
314
2010-11-03
fw
# There may be more than one server block, one for each server.
315
2010-11-03
fw
#
316
2010-11-03
fw
# Server Groups:
317
2010-11-03
fw
# The ngIRCd allows "server groups": You can assign an "ID" to every
318
2010-11-03
fw
# server with which you want this ngIRCd to link. If a server of a
319
2010-11-03
fw
# group won't answer, the ngIRCd tries to connect to the next server
320
2010-11-03
fw
# in the given group. But the ngircd never tries to connect to two
321
2010-11-03
fw
# servers with the same group ID.
322
2010-11-03
fw
323
2010-11-03
fw
# IRC name of the remote server, must match the "Name" variable in
324
2010-11-03
fw
# the [Global] section of the other server (when using ngIRCd).
325
2011-03-18
alex
;Name = irc2.example.net
326
2010-11-03
fw
327
2010-11-03
fw
# Internet host name or IP address of the peer (only required when
328
2010-11-03
fw
# this server should establish the connection).
329
2011-03-18
alex
;Host = connect-to-host.example.net
330
2010-11-03
fw
331
2010-11-03
fw
# IP address to use as _source_ address for the connection. if
332
2010-11-03
fw
# unspecified, ngircd will let the operating system pick an address.
333
2010-11-03
fw
;Bind = 10.0.0.1
334
2010-11-03
fw
335
2010-11-03
fw
# Port of the server to which the ngIRCd should connect. If you
336
2010-11-03
fw
# assign no port the ngIRCd waits for incoming connections.
337
2010-11-03
fw
;Port = 6667
338
2010-11-03
fw
339
2010-11-03
fw
# Own password for the connection. This password has to be configured
340
2010-11-03
fw
# as "PeerPassword" on the other server.
341
2010-11-03
fw
;MyPassword = MySecret
342
2010-11-03
fw
343
2010-11-03
fw
# Foreign password for this connection. This password has to be
344
2010-11-03
fw
# configured as "MyPassword" on the other server.
345
2010-11-03
fw
;PeerPassword = PeerSecret
346
2010-11-03
fw
347
2010-11-03
fw
# Group of this server (optional)
348
2010-11-03
fw
;Group = 123
349
2010-11-03
fw
350
2010-11-03
fw
# Set the "Passive" option to "yes" if you don't want this ngIRCd to
351
2010-11-03
fw
# connect to the configured peer (same as leaving the "Port" variable
352
2010-11-03
fw
# empty). The advantage of this option is that you can actually
353
2010-11-03
fw
# configure a port an use the IRC command CONNECT more easily to
354
2010-11-03
fw
# manually connect this specific server later.
355
2010-11-03
fw
;Passive = no
356
2010-11-03
fw
357
2010-11-03
fw
# Connect to the remote server using TLS/SSL (Default: false)
358
2010-11-03
fw
;SSLConnect = yes
359
2010-11-03
fw
360
2012-11-02
alex
# Define a (case insensitive) list of masks matching nicknames that
361
2012-08-26
alex
# should be treated as IRC services when introduced via this remote
362
2012-08-26
alex
# server, separated by commas (",").
363
2010-11-03
fw
# REGULAR SERVERS DON'T NEED this parameter, so leave it empty
364
2010-11-03
fw
# (which is the default).
365
2010-11-03
fw
# When you are connecting IRC services which mask as a IRC server
366
2010-11-03
fw
# and which use "virtual users" to communicate with, for example
367
2010-11-03
fw
# "NickServ" and "ChanServ", you should set this parameter to
368
2012-08-26
alex
# something like "*Serv" or "NickServ,ChanServ,XyzServ".
369
2012-08-26
alex
;ServiceMask = *Serv,Global
370
2010-11-03
fw
371
2010-11-03
fw
[Server]
372
2010-11-03
fw
# More [Server] sections, if you like ...
373
2010-11-03
fw
374
2010-11-03
fw
[Channel]
375
2010-11-03
fw
# Pre-defined channels can be configured in [Channel] sections.
376
2010-11-03
fw
# Such channels are created by the server when starting up and even
377
2010-11-03
fw
# persist when there are no more members left.
378
2010-11-03
fw
# Persistent channels are marked with the mode 'P', which can be set
379
2010-11-03
fw
# and unset by IRC operators like other modes on the fly.
380
2010-11-03
fw
# There may be more than one [Channel] block, one for each channel.
381
2010-11-03
fw
382
2010-11-03
fw
# Name of the channel
383
2010-11-03
fw
;Name = #TheName
384
2010-11-03
fw
385
2010-11-03
fw
# Topic for this channel
386
2010-11-03
fw
;Topic = a great topic
387
2010-11-03
fw
388
2020-03-29
alex
# Initial channel modes, as used in "MODE" commands. Modifying lists
389
2020-03-29
alex
# (ban list, invite list, exception list) is supported.
390
2020-03-29
alex
# This option can be specified multiple times, evaluated top to bottom.
391
2020-03-29
alex
;Modes = +tnk mykey +l 5
392
2020-03-29
alex
;Modes = +b nick!~user@bad.host.example.com
393
2010-11-03
fw
394
2010-11-03
fw
# Key file, syntax for each line: "<user>:<nick>:<key>".
395
2010-11-03
fw
# Default: none.
396
2010-11-03
alex
;KeyFile = :ETCDIR:/#chan.key
397
2010-11-03
fw
398
2010-11-03
fw
[Channel]
399
2010-11-03
fw
# More [Channel] sections, if you like ...
400
2010-11-03
fw
401
2010-11-03
fw
# -eof-
IRCNow