diff options
| author | Florian Westphal <fw@strlen.de> | 2011-01-09 19:42:42 +0100 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2011-01-09 19:42:42 +0100 |
| commit | 1964bda252ceb499f4a1f76f3e06d996acc2c821 (patch) | |
| tree | 27ae0bbb5723b54249d06e4c7a1ee4412637d839 /doc/sample-ngircd.conf.tmpl | |
| parent | 23ce0393b23779f19d6d56103c46f9d929fdef53 (diff) | |
| download | ngircd-1964bda252ceb499f4a1f76f3e06d996acc2c821.tar.gz ngircd-1964bda252ceb499f4a1f76f3e06d996acc2c821.zip | |
conf: move 'run-time-feature-disable' options to new FEATURE section
Diffstat (limited to 'doc/sample-ngircd.conf.tmpl')
| -rw-r--r-- | doc/sample-ngircd.conf.tmpl | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/doc/sample-ngircd.conf.tmpl b/doc/sample-ngircd.conf.tmpl index 9bfa9d41..180bdcef 100644 --- a/doc/sample-ngircd.conf.tmpl +++ b/doc/sample-ngircd.conf.tmpl @@ -134,19 +134,6 @@ # Allow Pre-Defined Channels only (see Section [Channels]) ;PredefChannelsOnly = no - # Do any DNS lookups when a client connects to the server. - ;DNS = yes - - # Do any IDENT lookups if ngIRCd has been compiled with support for it. - ;Ident = yes - - # Use PAM if ngIRCd has been compiled with support for it. - ;PAM = no - - # Use ZeroConf service registration if ngIRCd has been - # compiled with support for it (e.g. Howl, Avahi, Mac OS X). - ;ZeroConf = no - # try to connect to other irc servers using ipv4 and ipv6, if possible ;ConnectIPv6 = yes ;ConnectIPv4 = yes @@ -167,6 +154,20 @@ # maximum nick name length! ;MaxNickLength = 9 +[Features] + # Do any DNS lookups when a client connects to the server. + ;DNS = yes + + # Do any IDENT lookups if ngIRCd has been compiled with support for it. + ;Ident = yes + + # Use PAM if ngIRCd has been compiled with support for it. + ;PAM = no + + # Use ZeroConf service registration if ngIRCd has been + # compiled with support for it (e.g. Howl, Avahi, Mac OS X). + ;ZeroConf = no + [Operator] # [Operator] sections are used to define IRC Operators. There may be # more than one [Operator] block, one for each local operator. |