2002-04-02 20:14:33 +02:00
|
|
|
.\"
|
2008-12-06 00:20:59 +01:00
|
|
|
.\" ngircd.conf(5) manual page template
|
2002-04-02 20:14:33 +02:00
|
|
|
.\"
|
2008-12-06 00:20:59 +01:00
|
|
|
.TH ngircd.conf 5 "Dec 2008" ngircd "ngIRCd Manual"
|
2002-04-02 20:14:33 +02:00
|
|
|
.SH NAME
|
2003-03-10 01:23:50 +01:00
|
|
|
ngircd.conf \- configuration file of ngIRCd
|
2002-04-02 20:14:33 +02:00
|
|
|
.SH SYNOPSIS
|
2006-12-25 17:13:26 +01:00
|
|
|
.B :ETCDIR:/ngircd.conf
|
2002-04-02 20:14:33 +02:00
|
|
|
.SH DESCRIPTION
|
2003-03-10 01:35:51 +01:00
|
|
|
.BR ngircd.conf
|
2005-08-12 15:20:54 +02:00
|
|
|
is the configuration file of the
|
2003-03-10 01:35:51 +01:00
|
|
|
.BR ngircd (8)
|
2005-08-12 15:20:54 +02:00
|
|
|
Internet Relay Chat (IRC) daemon which you should adept to your local
|
|
|
|
preferences and needs.
|
2003-03-10 01:58:06 +01:00
|
|
|
.SH "FILE FORMAT"
|
2003-03-10 01:23:50 +01:00
|
|
|
The file consists of sections and parameters. A section begins with the name
|
|
|
|
of the section in square brackets and continues until the next section
|
|
|
|
begins.
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2003-03-10 01:23:50 +01:00
|
|
|
Sections contain parameters of the form
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2003-03-10 01:23:50 +01:00
|
|
|
.RS
|
|
|
|
.I name
|
|
|
|
=
|
|
|
|
.I value
|
|
|
|
.RE
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2005-08-12 15:20:54 +02:00
|
|
|
Empty lines and any line beginning with a semicolon (';') or a hash ('#')
|
2008-05-11 17:08:46 +02:00
|
|
|
character are treated as a comment and will be ignored. Leading and trailing
|
|
|
|
whitespaces are trimmed before any processing takes place.
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2008-05-11 17:08:46 +02:00
|
|
|
The file format is line-based - that means, each non-empty newline-terminated
|
|
|
|
line represents either a comment, a section name, or a parameter.
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2003-03-10 01:23:50 +01:00
|
|
|
Section and parameter names are not case sensitive.
|
2003-03-10 01:58:06 +01:00
|
|
|
.SH "SECTION OVERVIEW"
|
2005-06-04 15:39:20 +02:00
|
|
|
The file can contain blocks of four types: [Global], [Operator], [Server],
|
2003-03-10 01:23:50 +01:00
|
|
|
and [Channel].
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2008-05-11 17:08:46 +02:00
|
|
|
The main configuration of the server is stored in the
|
2003-03-10 01:23:50 +01:00
|
|
|
.I [Global]
|
2008-05-11 17:08:46 +02:00
|
|
|
section, like the server name, administrative information and the
|
2005-06-04 15:39:20 +02:00
|
|
|
ports on which the server should be listening. IRC operators of this
|
2003-03-10 01:23:50 +01:00
|
|
|
server are defined in
|
|
|
|
.I [Operator]
|
|
|
|
blocks.
|
|
|
|
.I [Server]
|
|
|
|
is the section where server links are configured. And
|
|
|
|
.I [Channel]
|
|
|
|
blocks are used to configure pre-defined ("persistent") IRC channels.
|
2005-06-04 15:39:20 +02:00
|
|
|
.PP
|
|
|
|
There can be more than one [Operator], [Server] and [Channel] sections
|
|
|
|
per configuration file, but only one [Global] section.
|
2003-03-10 01:23:50 +01:00
|
|
|
.SH [GLOBAL]
|
|
|
|
The
|
|
|
|
.I [Global]
|
|
|
|
section is used to define the server main configuration, like the server
|
|
|
|
name and the ports on which the server should be listening.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBName\fR
|
2008-05-11 17:08:46 +02:00
|
|
|
Server name in the IRC network, must contain at least one dot (".").
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBInfo\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Info text of the server. This will be shown by WHOIS and LINKS requests for
|
|
|
|
example.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBAdminInfo1\fR, \fBAdminInfo2\fR, \fBAdminEMail\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Information about the server and the administrator, used by the ADMIN
|
|
|
|
command.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBPorts\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Ports on which the server should listen. There may be more than one port,
|
2005-02-14 01:42:41 +01:00
|
|
|
separated with ','. Default: 6667.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
2008-09-13 15:10:08 +02:00
|
|
|
\fBSSLPorts\fR
|
|
|
|
Same as \fBPorts\fR , except that ngircd will expect incoming connections
|
|
|
|
to be SSL/TLS encrypted. Default: None
|
|
|
|
.TP
|
|
|
|
\fBSSLKeyFile\fR
|
|
|
|
Filename of SSL Server Key to be used for SSL connections. This is required for
|
|
|
|
SSL/TLS support.
|
|
|
|
.TP
|
|
|
|
\fBSSLKeyFilePassword\fR
|
|
|
|
(OpenSSL only:) Password to decrypt private key.
|
|
|
|
.TP
|
|
|
|
\fBSSLCertFile\fR
|
|
|
|
Certificate of the private key
|
|
|
|
.TP
|
|
|
|
\fBSSLDHFile\fR
|
2008-11-21 21:31:29 +01:00
|
|
|
Name of the Diffie-Hellman Parameter file. Can be created with gnutls
|
|
|
|
"certtool \-\-generate-dh-params" or "openssl dhparam".
|
2008-09-13 15:10:08 +02:00
|
|
|
If this file is not present, it will be generated on startup when ngircd
|
|
|
|
was compiled with gnutls support (this may take some time). If ngircd
|
|
|
|
was compiled with OpenSSL, then (Ephemeral)-Diffie-Hellman Key Exchanges and several
|
|
|
|
Cipher Suites will not be available.
|
|
|
|
.TP
|
2003-09-11 14:05:28 +02:00
|
|
|
\fBListen\fR
|
2008-05-19 00:12:41 +02:00
|
|
|
A comma seperated list of IP address on which the server should listen.
|
|
|
|
If unset, the defaults value is "0.0.0.0", or, if ngircd was compiled
|
|
|
|
with IPv6 support, "::,0.0.0.0", so the server listens on all configured
|
|
|
|
IP addresses and interfaces by default.
|
2003-09-11 14:05:28 +02:00
|
|
|
.TP
|
2003-03-10 01:58:06 +01:00
|
|
|
\fBMotdFile\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Text file with the "message of the day" (MOTD). This message will be shown
|
|
|
|
to all users connecting to the server.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
2004-05-07 13:19:20 +02:00
|
|
|
\fBMotdPhrase\fR
|
2005-04-13 23:40:49 +02:00
|
|
|
A simple Phrase (<256 chars) if you don't want to use a MOTD file.
|
2008-05-11 17:08:46 +02:00
|
|
|
If it is set no MotdFile will be read at all which can be handy if the
|
|
|
|
daemon should run inside a chroot directory.
|
2004-05-07 13:19:20 +02:00
|
|
|
.TP
|
2003-03-10 01:58:06 +01:00
|
|
|
\fBServerUID\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
User ID under which the server should run; you can use the name of the user
|
|
|
|
or the numerical ID.
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
|
|
|
.RS
|
2003-03-10 01:23:50 +01:00
|
|
|
.B Attention:
|
2003-03-10 01:58:06 +01:00
|
|
|
.br
|
2003-03-10 01:23:50 +01:00
|
|
|
For this to work the server must have been
|
|
|
|
started with root privileges! In addition, the configuration and MOTD files
|
|
|
|
must be readable by this user, otherwise RESTART and REHASH won't work!
|
2003-03-10 01:58:06 +01:00
|
|
|
.RE
|
|
|
|
.TP
|
|
|
|
\fBServerGID\fR
|
2003-03-10 01:35:51 +01:00
|
|
|
Group ID under which the ngIRCd should run; you can use the name of the
|
2003-03-10 01:23:50 +01:00
|
|
|
group or the numerical ID.
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
|
|
|
.RS
|
2003-03-10 01:23:50 +01:00
|
|
|
.B Attention:
|
2003-03-10 01:58:06 +01:00
|
|
|
.br
|
2003-03-10 01:23:50 +01:00
|
|
|
For this to work the server must have
|
|
|
|
been started with root privileges!
|
2003-03-10 01:58:06 +01:00
|
|
|
.RE
|
|
|
|
.TP
|
2004-05-07 13:19:20 +02:00
|
|
|
\fBChrootDir\fR
|
|
|
|
A directory to chroot in when everything is initialized. It doesn't need
|
|
|
|
to be populated if ngIRCd is compiled as a static binary. By default ngIRCd
|
|
|
|
won't use the chroot() feature.
|
|
|
|
.PP
|
|
|
|
.RS
|
|
|
|
.B Attention:
|
|
|
|
.br
|
|
|
|
For this to work the server must have
|
|
|
|
been started with root privileges!
|
|
|
|
.RE
|
|
|
|
.TP
|
2005-02-14 01:42:41 +01:00
|
|
|
\fBPidFile\fR
|
|
|
|
This tells ngIRCd to write its current process ID to a file. Note that the
|
|
|
|
pidfile is written AFTER chroot and switching the user ID, i. e. the
|
|
|
|
directory the pidfile resides in must be writeable by the ngIRCd user and
|
|
|
|
exist in the chroot directory (if configured, see above).
|
|
|
|
.RE
|
|
|
|
.TP
|
2003-03-10 01:58:06 +01:00
|
|
|
\fBPingTimeout\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
After <PingTimeout> seconds of inactivity the server will send a PING to
|
|
|
|
the peer to test whether it is alive or not. Default: 120.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBPongTimeout\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
If a client fails to answer a PING with a PONG within <PongTimeout>
|
|
|
|
seconds, it will be disconnected by the server. Default: 20.
|
2003-05-02 22:51:42 +02:00
|
|
|
.TP
|
2003-03-10 01:58:06 +01:00
|
|
|
\fBConnectRetry\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
The server tries every <ConnectRetry> seconds to establish a link to not yet
|
|
|
|
(or no longer) connected servers. Default: 60.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBOperCanUseMode\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Should IRC Operators be allowed to use the MODE command even if they are
|
|
|
|
not(!) channel-operators? Default: no.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
2005-03-15 17:56:16 +01:00
|
|
|
\fBOperServerMode\fR
|
|
|
|
If OperCanUseMode is enabled, this may lead the compatibility problems with
|
|
|
|
Servers that run the ircd-irc2 Software. This Option "masks" mode requests
|
|
|
|
by non-chanops as if they were coming from the server. Default: no.
|
|
|
|
.TP
|
2006-12-11 23:07:09 +01:00
|
|
|
\fBPredefChannelsOnly\fR
|
|
|
|
If enabled, no new channels can be created. Useful if
|
|
|
|
you do not want to have channels other than those defined in
|
|
|
|
the config file.
|
2007-10-25 13:01:19 +02:00
|
|
|
Default: No.
|
|
|
|
.TP
|
|
|
|
\fBNoDNS\fR
|
2008-11-19 19:11:39 +01:00
|
|
|
If set to true, ngircd will not make DNS lookups when clients connect.
|
2007-10-25 13:01:19 +02:00
|
|
|
If you configure ngircd to connect to other servers, ngircd may still
|
|
|
|
perform a DNS lookup if required.
|
2008-11-19 19:11:39 +01:00
|
|
|
Default: false.
|
|
|
|
.TP
|
|
|
|
\fBNoIdent\fR
|
|
|
|
If ngircd is compiled with IDENT support this can be used to disable IDENT
|
|
|
|
lookups at run time.
|
|
|
|
Default: false.
|
2006-12-11 23:07:09 +01:00
|
|
|
.TP
|
2008-04-21 00:45:19 +02:00
|
|
|
\fBConnectIPv4\fR
|
|
|
|
Set this to no if you do not want ngircd to connect to other irc servers using ipv4.
|
|
|
|
This allows use of ngircd in ipv6-only setups.
|
|
|
|
Default: Yes.
|
|
|
|
.TP
|
|
|
|
\fBConnectIPv6\fR
|
|
|
|
Set this to no if you do not want ngircd to connect to other irc servers using ipv6.
|
|
|
|
Default: Yes.
|
|
|
|
.TP
|
2003-03-10 01:58:06 +01:00
|
|
|
\fBMaxConnections\fR
|
2008-11-12 01:23:33 +01:00
|
|
|
Maximum number of simultaneous in- and outbound connections the server is
|
|
|
|
allowed to accept (0: unlimited). Default: 0.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
2003-11-05 22:41:01 +01:00
|
|
|
\fBMaxConnectionsIP\fR
|
|
|
|
Maximum number of simultaneous connections from a single IP address that
|
2007-10-13 22:45:11 +02:00
|
|
|
the server will accept (0: unlimited). This configuration options lowers
|
2003-11-05 22:41:01 +01:00
|
|
|
the risk of denial of service attacks (DoS). Default: 5.
|
|
|
|
.TP
|
2003-03-10 01:58:06 +01:00
|
|
|
\fBMaxJoins\fR
|
2007-10-13 22:45:11 +02:00
|
|
|
Maximum number of channels a user can be member of (0: no limit).
|
2003-03-10 01:23:50 +01:00
|
|
|
Default: 10.
|
2007-11-21 13:16:33 +01:00
|
|
|
.TP
|
|
|
|
\fBMaxNickLength\fR
|
|
|
|
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!
|
2008-12-29 23:34:20 +01:00
|
|
|
.TP
|
2008-09-13 15:10:08 +02:00
|
|
|
\fBSSLConnect\fR
|
|
|
|
Connect to the remote server using TLS/SSL (Default: false)
|
2003-03-10 01:23:50 +01:00
|
|
|
.SH [OPERATOR]
|
|
|
|
.I [Operator]
|
|
|
|
sections are used to define IRC Operators. There may be more than one
|
|
|
|
.I [Operator]
|
|
|
|
block, one for each local operator.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBName\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
ID of the operator (may be different of the nick name).
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBPassword\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Password of the IRC operator.
|
2005-03-02 17:07:30 +01:00
|
|
|
.TP
|
|
|
|
\fBMask\fR
|
|
|
|
Mask that is to be checked before an /OPER for this account is accepted.
|
|
|
|
Example: nick!ident@*.example.com
|
2003-03-10 01:23:50 +01:00
|
|
|
.SH [SERVER]
|
|
|
|
Other servers are configured in
|
|
|
|
.I [Server]
|
2003-03-10 01:35:51 +01:00
|
|
|
sections. If you configure a port for the connection, then this ngIRCd
|
2008-05-11 17:08:46 +02:00
|
|
|
tries to connect to to the other server on the given port (active);
|
|
|
|
if not, it waits for the other server to connect (passive).
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2008-05-11 17:08:46 +02:00
|
|
|
ngIRCd supports "server groups": You can assign an "ID" to every server
|
|
|
|
with which you want this ngIRCd to link, and the daemon ensures that at
|
|
|
|
any given time only one direct link exists to servers with the same ID.
|
|
|
|
So if a server of a group won't answer, ngIRCd tries to connect to the next
|
|
|
|
server in the given group (="with the same ID"), but never tries to connect
|
|
|
|
to more than one server of this group simultaneously.
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2003-03-10 01:35:51 +01:00
|
|
|
There may be more than one
|
|
|
|
.I [Server]
|
|
|
|
block.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBName\fR
|
2008-05-11 17:08:46 +02:00
|
|
|
IRC name of the remote server.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBHost\fR
|
2008-05-11 17:08:46 +02:00
|
|
|
Internet host name (or IP address) of the peer.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
2007-11-23 17:26:03 +01:00
|
|
|
\fBBind\fR
|
|
|
|
IP address to use as source IP for the outgoing connection. Default ist
|
|
|
|
to let the operating system decide.
|
|
|
|
.TP
|
2003-03-10 01:58:06 +01:00
|
|
|
\fBPort\fR
|
2008-05-11 17:08:46 +02:00
|
|
|
Port of the remote server to which ngIRCd should connect (active).
|
|
|
|
If no port is assigned to a configured server, the daemon only waits for
|
|
|
|
incoming connections (passive).
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBMyPassword\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Own password for this connection. This password has to be configured as
|
2005-09-02 16:38:59 +02:00
|
|
|
"PeerPassword" on the other server. Must not have ':' as first character.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBPeerPassword\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Foreign password for this connection. This password has to be configured as
|
|
|
|
"MyPassword" on the other server.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBGroup\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Group of this server (optional).
|
2008-05-11 17:08:46 +02:00
|
|
|
.TP
|
2007-06-28 07:15:12 +02:00
|
|
|
\fBPassive\fR
|
|
|
|
Disable automatic connection even if port value is specified. Default: false.
|
|
|
|
You can use the IRC Operator command CONNECT later on to create the link.
|
2008-08-16 02:56:21 +02:00
|
|
|
.TP
|
|
|
|
\fBServiceMask\fR
|
|
|
|
Define a (case insensitive) mask matching nick names that sould be treated as
|
|
|
|
IRC services when introduced via this remote server. REGULAR SERVERS DON'T NEED
|
|
|
|
this parameter, so leave it empty (which is the default).
|
|
|
|
.PP
|
|
|
|
.RS
|
|
|
|
When you are connecting IRC services which mask as a IRC server and which use
|
|
|
|
"virtual users" to communicate with, for example "NickServ" amd "ChanServ",
|
|
|
|
you should set this parameter to something like "*Serv".
|
2003-03-10 01:35:51 +01:00
|
|
|
.SH [CHANNEL]
|
|
|
|
Pre-defined channels can be configured in
|
|
|
|
.I [Channel]
|
|
|
|
sections. Such channels are created by the server when starting up and even
|
|
|
|
persist when there are no more members left.
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2003-03-10 01:23:50 +01:00
|
|
|
Persistent channels are marked with the mode 'P', which can be set and unset
|
|
|
|
by IRC operators like other modes on the fly.
|
2003-03-10 01:58:06 +01:00
|
|
|
.PP
|
2003-03-10 01:35:51 +01:00
|
|
|
There may be more than one
|
|
|
|
.I [Channel]
|
|
|
|
block.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBName\fR
|
2008-05-11 17:08:46 +02:00
|
|
|
Name of the channel, including channel prefix ("#").
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBTopic\fR
|
2008-05-11 17:08:46 +02:00
|
|
|
Topic for this channel.
|
2003-03-10 01:58:06 +01:00
|
|
|
.TP
|
|
|
|
\fBModes\fR
|
2003-03-10 01:23:50 +01:00
|
|
|
Initial channel modes.
|
2006-12-29 15:09:48 +01:00
|
|
|
.TP
|
|
|
|
\fBKey\fR
|
2008-05-11 17:08:46 +02:00
|
|
|
Sets initial channel key (only relevant if mode k is set).
|
2006-12-29 15:09:48 +01:00
|
|
|
.TP
|
|
|
|
\fBMaxUsers\fR
|
2008-05-11 17:08:46 +02:00
|
|
|
Set maximum user limit for this channel (only relevant if mode l is set).
|
2003-03-10 01:35:51 +01:00
|
|
|
.SH HINTS
|
2008-11-21 21:31:29 +01:00
|
|
|
It's wise to use "ngircd \-\-configtest" to validate the configuration file
|
2003-03-10 01:35:51 +01:00
|
|
|
after changing it. See
|
|
|
|
.BR ngircd (8)
|
|
|
|
for details.
|
2002-04-02 20:14:33 +02:00
|
|
|
.SH AUTHOR
|
2002-04-02 22:24:24 +02:00
|
|
|
Alexander Barton,
|
|
|
|
.UR mailto:alex@barton.de
|
|
|
|
alex@barton.de
|
|
|
|
.UE
|
2002-04-02 22:44:27 +02:00
|
|
|
.br
|
2002-04-02 22:24:24 +02:00
|
|
|
Homepage:
|
2005-08-12 15:20:54 +02:00
|
|
|
.UR http://ngircd.barton.de/
|
|
|
|
http://ngircd.barton.de/
|
2002-04-02 22:44:27 +02:00
|
|
|
.UE
|
2002-04-02 20:14:33 +02:00
|
|
|
.SH "SEE ALSO"
|
|
|
|
.BR ngircd (8)
|
2002-04-02 22:19:22 +02:00
|
|
|
.\"
|
2002-04-02 20:14:33 +02:00
|
|
|
.\" -eof-
|