~registry/ngircd/testing

« back to all changes in this revision

Viewing changes to doc/sample-ngircd.conf.tmpl

  • Committer: DNS
  • Date: 2013-08-27 14:48:36 UTC
  • mfrom: (2671.5.8)
  • Revision ID: git-v1:bdb2850b399a7fac6a70fe24bd1f58dbd78cc307
Merge branch 'master' into testing

· Remove Conf_PreventLocalChans and Conf_PreventMLChans, obsolete now
· Remove RPL_HELP_MSG

Fixed conflicts with:
        doc/sample-ngircd.conf.tmpl
        man/ngircd.conf.5.tmpl
        src/ngircd/conf.c
        src/ngircd/irc-channel.c
        src/ngircd/irc-info.c
        src/ngircd/messages.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
        # behavior of ngIRCd. If you want to get started quickly, you most
129
129
        # probably don't have to make changes here -- they are all optional.
130
130
 
 
131
        # List of allowed channel types (channel prefixes) for newly created
 
132
        # channels on the local server. By default, all supported channel
 
133
        # types are allowed. Set this variable to the empty string to disallow
 
134
        # creation of new channels by local clients at all.
 
135
        ;AllowedChannelTypes = #&+
 
136
 
131
137
        # Are remote IRC operators allowed to control this server, e.g.
132
138
        # use commands like CONNECT, SQUIT, DIE, ...?
133
139
        ;AllowRemoteOper = no
159
165
        ;ConnectIPv6 = yes
160
166
        ;ConnectIPv4 = yes
161
167
 
162
 
        # Do any DNS lookups when a client connects to the server.
 
168
        # Default user mode(s) to set on new local clients. Please note that
 
169
        # only modes can be set that the client could set on itself, you can't
 
170
        # set "a" (away) or "o" (IRC Op), for example! Default: none.
 
171
        ;DefaultUserModes = i
 
172
 
 
173
        # Do DNS lookups when a client connects to the server.
163
174
        ;DNS = yes
164
175
 
165
176
        # Do IDENT lookups if ngIRCd has been compiled with support for it.
167
178
        # prepended to their user name.
168
179
        ;Ident = yes
169
180
 
 
181
        # Directory containing configuration snippets (*.conf), that should
 
182
        # be read in after parsing this configuration file.
 
183
        ;IncludeDir = :ETCDIR:/conf.d
 
184
 
170
185
        # Enhance user privacy slightly (useful for IRC server on TOR or I2P)
171
186
        # by censoring some information like idle time, logon time, etc.
172
187
        ;MorePrivacy = no
208
223
        # Allow Pre-Defined Channels only (see Section [Channels])
209
224
        ;PredefChannelsOnly = no
210
225
 
211
 
        # Disallow Local "&" Channels if not pre-defined (see Section [Channels])
212
 
        # (The &SERVER Channel will still work)
213
 
        ;PreventLocalChans = no
214
 
 
215
 
        # Disallow Modeless "+" Channels if not pre-defined (see Section [Channels])
216
 
        ;PreventMLChans = no
217
 
 
218
226
        # Let ngIRCd send an "authentication PING" when a new client connects,
219
227
        # and register this client only after receiving the corresponding
220
228
        # "PONG" reply.