]> arthur.barton.de Git - ngircd-alex.git/blobdiff - doc/sample-ngircd.conf
Merge branch 'master' of git://git.breakpoint.cc/fw/ngircd-fw
[ngircd-alex.git] / doc / sample-ngircd.conf
index d99ad969beba99db91f5ad8607d61da3a1f49a66..9f107a83f42e524da59a604d5879509d069a3e9f 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: sample-ngircd.conf,v 1.40 2007/10/04 10:14:52 alex Exp $
+# $Id: sample-ngircd.conf,v 1.44 2008/01/07 23:02:29 alex Exp $
 
 #
 # This is a sample configuration file for the ngIRCd, which must be adepted
        # Allow Pre-Defined Channels only (see Section [Channels])
        ;PredefChannelsOnly = no
 
+       # Don't do any DNS lookups when a client connects to the server.
+       ;NoDNS = no
+
+       # allow both ipv4 and ipv6 clients to connect by opening both
+       # ipv4 and ipv6 sockets
+       ;ListenIPv6 = yes
+       ;ListenIPv4 = yes
+
+       # try to connect to other irc servers using ipv4 and ipv6, if possible
+       ;ConnectIPv6 = yes
+       ;ConnectIPv4 = yes
+
        # Maximum number of simultaneous connection the server is allowed
-       # to accept (<=0: unlimited):
-       ;MaxConnections = -1
+       # to accept (0: unlimited):
+       ;MaxConnections = 0
 
        # Maximum number of simultaneous connections from a single IP address
-       # the server will accept (<=0: unlimited):
+       # the server will accept (0: unlimited):
        ;MaxConnectionsIP = 5
 
-       # Maximum number of channels a user can be member of (<=0: no limit):
+       # Maximum number of channels a user can be member of (0: no limit):
        ;MaxJoins = 10
 
+       # Maximum length of an user nick name (Default: 9, as in RFC 2812).
+       # Please note that all servers in an IRC network MUST use the same
+       # maximum nick name length!
+       ;MaxNickLength = 9
+
 [Operator]
        # [Operator] sections are used to define IRC Operators. There may be
        # more than one [Operator] block, one for each local operator.
        # this server should establish the connection).
        ;Host = connect-to-host.the.net
 
+       # IP address to use as _source_ address for the connection. if unspecified,
+       # ngircd will let the operating system pick an address.
+       ;Bind = 10.0.0.1
+
        # Port of the server to which the ngIRCd should connect. If you
        # assign no port the ngIRCd waits for incoming connections.
        ;Port = 6667