ngircd.conf 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. #
  2. # This is a sample configuration file for the ngIRCd IRC daemon, which must
  3. # be customized to the local preferences and needs.
  4. #
  5. # Comments are started with "#" or ";".
  6. #
  7. # A lot of configuration options in this file start with a ";". You have
  8. # to remove the ";" in front of each variable to actually set a value!
  9. # The disabled variables are shown with example values for completeness only
  10. # and the daemon is using compiled-in default settings.
  11. #
  12. # Use "ngircd --configtest" (see manual page ngircd(8)) to validate that the
  13. # server interprets the configuration file as expected!
  14. #
  15. # Please see ngircd.conf(5) for a complete list of configuration options
  16. # and their descriptions.
  17. #
  18. # The original can be found at:
  19. # /usr/share/doc/ngircd/sample-ngircd.conf.gz
  20. [Global]
  21. # The [Global] section of this file is used to define the main
  22. # configuration of the server, like the server name and the ports
  23. # on which the server should be listening.
  24. # These settings depend on your personal preferences, so you should
  25. # make sure that they correspond to your installation and setup!
  26. # Server name in the IRC network, must contain at least one dot
  27. # (".") and be unique in the IRC network. Required!
  28. Name = irc.example.net
  29. # Information about the server and the administrator, used by the
  30. # ADMIN command. Not required by server but by RFC!
  31. AdminInfo1 = Debian User
  32. AdminInfo2 = Debian City
  33. AdminEMail = irc@irc.example.com
  34. # Info text of the server. This will be shown by WHOIS and
  35. # LINKS requests for example.
  36. Info = Yet another IRC Server running on Debian GNU/Linux
  37. # Comma separated list of IP addresses on which the server should
  38. # listen. Default values are:
  39. # "0.0.0.0" or (if compiled with IPv6 support) "::,0.0.0.0"
  40. # so the server listens on all IP addresses of the system by default.
  41. ;Listen = 127.0.0.1,192.168.0.1
  42. # Text file with the "message of the day" (MOTD). This message will
  43. # be shown to all users connecting to the server:
  44. MotdFile = /etc/ngircd/ngircd.motd
  45. # A simple Phrase (<256 chars) if you don't want to use a motd file.
  46. ;MotdPhrase = "Hello. This is the Debian default MOTD sentence"
  47. # The name of the IRC network to which this server belongs. This name
  48. # is optional, should only contain ASCII characters, and can't contain
  49. # spaces. It is only used to inform clients. The default is empty,
  50. # so no network name is announced to clients.
  51. ;Network = aIRCnetwork
  52. # Global password for all users needed to connect to the server.
  53. # (Default: not set)
  54. ;Password = wealllikedebian
  55. # This tells ngIRCd to write its current process ID to a file.
  56. # Note that the pidfile is written AFTER chroot and switching the
  57. # user ID, e.g. the directory the pidfile resides in must be
  58. # writable by the ngIRCd user and exist in the chroot directory.
  59. # Keep this setting in sync with PIDFILE in /etc/init.d/ngircd
  60. PidFile = /var/run/ngircd/ngircd.pid
  61. # Ports on which the server should listen. There may be more than
  62. # one port, separated with ",". (Default: 6667)
  63. ;Ports = 6667, 6668, 6669
  64. # Group ID under which the ngIRCd should run; you can use the name
  65. # of the group or the numerical ID. ATTENTION: For this to work the
  66. # server must have been started with root privileges!
  67. # Keep this setting in sync with DAEMONUSER in /etc/init.d/ngircd
  68. ServerGID = irc
  69. # User ID under which the server should run; you can use the name
  70. # of the user or the numerical ID. ATTENTION: For this to work the
  71. # server must have been started with root privileges! In addition,
  72. # the configuration and MOTD files must be readable by this user,
  73. # otherwise RESTART and REHASH won't work!
  74. # Keep this setting in sync with DAEMONUSER in /etc/init.d/ngircd
  75. ServerUID = irc
  76. [Limits]
  77. # Define some limits and timeouts for this ngIRCd instance. Default
  78. # values should be safe, but it is wise to double-check :-)
  79. # The server tries every <ConnectRetry> seconds to establish a link
  80. # to not yet (or no longer) connected servers.
  81. ConnectRetry = 60
  82. # Number of seconds after which the whole daemon should shutdown when
  83. # no connections are left active after handling at least one client
  84. # (0: never, which is the default).
  85. # This can be useful for testing or when ngIRCd is started using
  86. # "socket activation" with systemd(8), for example.
  87. ;IdleTimeout = 0
  88. # Maximum number of simultaneous in- and outbound connections the
  89. # server is allowed to accept (0: unlimited):
  90. MaxConnections = 500
  91. # Maximum number of simultaneous connections from a single IP address
  92. # the server will accept (0: unlimited):
  93. MaxConnectionsIP = 10
  94. # Maximum number of channels a user can be member of (0: no limit):
  95. MaxJoins = 10
  96. # Maximum length of an user nickname (Default: 9, as in RFC 2812).
  97. # Please note that all servers in an IRC network MUST use the same
  98. # maximum nickname length!
  99. ;MaxNickLength = 9
  100. # Maximum number of channels returned in response to a /list
  101. # command (0: unlimited):
  102. ;MaxListSize = 100
  103. # After <PingTimeout> seconds of inactivity the server will send a
  104. # PING to the peer to test whether it is alive or not.
  105. PingTimeout = 120
  106. # If a client fails to answer a PING with a PONG within <PongTimeout>
  107. # seconds, it will be disconnected by the server.
  108. PongTimeout = 20
  109. [Options]
  110. # Optional features and configuration options to further tweak the
  111. # behavior of ngIRCd. If you want to get started quickly, you most
  112. # probably don't have to make changes here -- they are all optional.
  113. # List of allowed channel types (channel prefixes) for newly created
  114. # channels on the local server. By default, all supported channel
  115. # types are allowed. Set this variable to the empty string to disallow
  116. # creation of new channels by local clients at all.
  117. ;AllowedChannelTypes = #&+
  118. # Are remote IRC operators allowed to control this server, e.g.
  119. # use commands like CONNECT, SQUIT, DIE, ...?
  120. ;AllowRemoteOper = no
  121. # A directory to chroot in when everything is initialized. It
  122. # doesn't need to be populated if ngIRCd is compiled as a static
  123. # binary. By default ngIRCd won't use the chroot() feature.
  124. # ATTENTION: For this to work the server must have been started
  125. # with root privileges!
  126. ;ChrootDir = /var/empty
  127. # Set this hostname for every client instead of the real one.
  128. # Use %x to add the hashed value of the original hostname.
  129. ;CloakHost = cloaked.host
  130. # Use this hostname for hostname cloaking on clients that have the
  131. # user mode "+x" set, instead of the name of the server.
  132. # Use %x to add the hashed value of the original hostname.
  133. ;CloakHostModeX = cloaked.user
  134. # The Salt for cloaked hostname hashing. When undefined a random
  135. # hash is generated after each server start.
  136. ;CloakHostSalt = abcdefghijklmnopqrstuvwxyz
  137. # Set every clients' user name to their nickname
  138. ;CloakUserToNick = yes
  139. # Try to connect to other IRC servers using IPv4 and IPv6, if possible.
  140. ;ConnectIPv6 = yes
  141. ;ConnectIPv4 = yes
  142. # Default user mode(s) to set on new local clients. Please note that
  143. # only modes can be set that the client could set using regular MODE
  144. # commands, you can't set "a" (away) for example! Default: none.
  145. ;DefaultUserModes = i
  146. # Do DNS lookups when a client connects to the server.
  147. ;DNS = yes
  148. # Do IDENT lookups if ngIRCd has been compiled with support for it.
  149. # Users identified using IDENT are registered without the "~" character
  150. # prepended to their user name.
  151. ;Ident = yes
  152. # Directory containing configuration snippets (*.conf), that should
  153. # be read in after parsing this configuration file.
  154. ;IncludeDir = /etc/ngircd/conf.d
  155. # Enhance user privacy slightly (useful for IRC server on TOR or I2P)
  156. # by censoring some information like idle time, logon time, etc.
  157. ;MorePrivacy = no
  158. # Normally ngIRCd doesn't send any messages to a client until it is
  159. # registered. Enable this option to let the daemon send "NOTICE AUTH"
  160. # messages to clients while connecting.
  161. ;NoticeAuth = no
  162. # Should IRC Operators be allowed to use the MODE command even if
  163. # they are not(!) channel-operators?
  164. OperCanUseMode = yes
  165. # Should IRC Operators get AutoOp (+o) in persistent (+P) channels?
  166. ;OperChanPAutoOp = yes
  167. # Mask IRC Operator mode requests as if they were coming from the
  168. # server? (This is a compatibility hack for ircd-irc2 servers)
  169. ;OperServerMode = no
  170. # Use PAM if ngIRCd has been compiled with support for it.
  171. # Users identified using PAM are registered without the "~" character
  172. # prepended to their user name.
  173. PAM = no
  174. # When PAM is enabled, all clients are required to be authenticated
  175. # using PAM; connecting to the server without successful PAM
  176. # authentication isn't possible.
  177. # If this option is set, clients not sending a password are still
  178. # allowed to connect: they won't become "identified" and keep the "~"
  179. # character prepended to their supplied user name.
  180. # Please note: To make some use of this behavior, it most probably
  181. # isn't useful to enable "Ident", "PAM" and "PAMIsOptional" at the
  182. # same time, because you wouldn't be able to distinguish between
  183. # Ident'ified and PAM-authenticated users: both don't have a "~"
  184. # character prepended to their respective user names!
  185. ;PAMIsOptional = no
  186. # Let ngIRCd send an "authentication PING" when a new client connects,
  187. # and register this client only after receiving the corresponding
  188. # "PONG" reply.
  189. ;RequireAuthPing = no
  190. # Silently drop all incoming CTCP requests.
  191. ;ScrubCTCP = no
  192. # Syslog "facility" to which ngIRCd should send log messages.
  193. # Possible values are system dependent, but most probably auth, daemon,
  194. # user and local1 through local7 are possible values; see syslog(3).
  195. # Default is "local5" for historical reasons, you probably want to
  196. # change this to "daemon", for example.
  197. SyslogFacility = local1
  198. # Password required for using the WEBIRC command used by some
  199. # Web-to-IRC gateways. If not set/empty, the WEBIRC command can't
  200. # be used. (Default: not set)
  201. ;WebircPassword = xyz
  202. [SSL]
  203. # SSL-related configuration options.
  204. # SSL Server Key Certificate
  205. ;CertFile = /etc/ssl/certs/server.crt
  206. # Select cipher suites allowed for SSL/TLS connections. This defaults
  207. # to HIGH:!aNULL:@STRENGTH (OpenSSL) or SECURE128 (GnuTLS).
  208. # See 'man 1ssl ciphers' (OpenSSL) or 'man 3 gnutls_priority_init'
  209. # (GnuTLS) for details.
  210. # For OpenSSL:
  211. ;CipherList = HIGH:!aNULL:@STRENGTH:!SSLv3
  212. # For GnuTLS (this Debian package was linked against GnuTLS):
  213. CipherList = SECURE128:-VERS-SSL3.0
  214. # Diffie-Hellman parameters
  215. ;DHFile = /etc/ngircd/dhparams.pem
  216. # SSL Server Key
  217. ;KeyFile = /etc/ssl/private/server.key
  218. # password to decrypt SSLKeyFile (OpenSSL only)
  219. # Note that this Debian package is linked against GnuTLS so this
  220. # option has no effect.
  221. ;KeyFilePassword = secret
  222. # Additional Listen Ports that expect SSL/TLS encrypted connections
  223. ;Ports = 6697, 9999
  224. [Operator]
  225. # [Operator] sections are used to define IRC Operators. There may be
  226. # more than one [Operator] block, one for each local operator.
  227. # ID of the operator (may be different of the nickname)
  228. ;Name = TheOper
  229. # Password of the IRC operator
  230. ;Password = ThePwd
  231. # Optional Mask from which /OPER will be accepted
  232. ;Mask = *!ident@somewhere.example.com
  233. [Operator]
  234. # More [Operator] sections, if you like ...
  235. [Server]
  236. # Other servers are configured in [Server] sections. If you
  237. # configure a port for the connection, then this ngircd tries to
  238. # connect to to the other server on the given port; if not it waits
  239. # for the other server to connect.
  240. # There may be more than one server block, one for each server.
  241. #
  242. # Server Groups:
  243. # The ngIRCd allows "server groups": You can assign an "ID" to every
  244. # server with which you want this ngIRCd to link. If a server of a
  245. # group won't answer, the ngIRCd tries to connect to the next server
  246. # in the given group. But the ngircd never tries to connect to two
  247. # servers with the same group ID.
  248. # IRC name of the remote server, must match the "Name" variable in
  249. # the [Global] section of the other server (when using ngIRCd).
  250. ;Name = irc2.example.net
  251. # Internet host name or IP address of the peer (only required when
  252. # this server should establish the connection).
  253. ;Host = connect-to-host.example.net
  254. # IP address to use as _source_ address for the connection. if
  255. # unspecified, ngircd will let the operating system pick an address.
  256. ;Bind = 10.0.0.1
  257. # Port of the server to which the ngIRCd should connect. If you
  258. # assign no port the ngIRCd waits for incoming connections.
  259. ;Port = 6667
  260. # Own password for the connection. This password has to be configured
  261. # as "PeerPassword" on the other server.
  262. ;MyPassword = MySecret
  263. # Foreign password for this connection. This password has to be
  264. # configured as "MyPassword" on the other server.
  265. ;PeerPassword = PeerSecret
  266. # Group of this server (optional)
  267. ;Group = 123
  268. # Set the "Passive" option to "yes" if you don't want this ngIRCd to
  269. # connect to the configured peer (same as leaving the "Port" variable
  270. # empty). The advantage of this option is that you can actually
  271. # configure a port an use the IRC command CONNECT more easily to
  272. # manually connect this specific server later.
  273. ;Passive = no
  274. # Connect to the remote server using TLS/SSL (Default: false)
  275. ;SSLConnect = yes
  276. # Define a (case insensitive) list of masks matching nicknames that
  277. # should be treated as IRC services when introduced via this remote
  278. # server, separated by commas (",").
  279. # REGULAR SERVERS DON'T NEED this parameter, so leave it empty
  280. # (which is the default).
  281. # When you are connecting IRC services which mask as a IRC server
  282. # and which use "virtual users" to communicate with, for example
  283. # "NickServ" and "ChanServ", you should set this parameter to
  284. # something like "*Serv" or "NickServ,ChanServ,XyzServ".
  285. ;ServiceMask = *Serv,Global
  286. [Server]
  287. # More [Server] sections, if you like ...
  288. [Channel]
  289. # Pre-defined channels can be configured in [Channel] sections.
  290. # Such channels are created by the server when starting up and even
  291. # persist when there are no more members left.
  292. # Persistent channels are marked with the mode 'P', which can be set
  293. # and unset by IRC operators like other modes on the fly.
  294. # There may be more than one [Channel] block, one for each channel.
  295. # Name of the channel
  296. ;Name = #ngircd
  297. # Topic for this channel
  298. ;Topic = Our ngircd testing channel
  299. # Initial channel modes
  300. ;Modes = tnk
  301. # initial channel password (mode k)
  302. ;Key = Secret
  303. # Key file, syntax for each line: "<user>:<nick>:<key>".
  304. # Default: none.
  305. ;KeyFile = /etc/ngircd/#chan.key
  306. # maximum users per channel (mode l)
  307. ;MaxUsers = 23
  308. [Channel]
  309. # More [Channel] sections, if you like ...
  310. # -eof-