mirror of
https://git.freebsd.org/ports.git
synced 2025-05-17 01:23:12 -04:00
- Software changes include: o Remove the remains of servlink_path from the config file parser. o Userlog now logs the users IP address as well as their hostname. o Whowas now supports showing the users IP address as well as hostname. The same rules apply to showing the whowas IP as apply to showing whois_actually and uses the same numeric. o Double the size of the whowas array for large networks. This comes at a hit of about 2MB or so of memory. o Fix the block heap garbage collection code. PR: ports/126719 Submitted by: Lewis <moggie@elasticmind.net> (maintainer)
90 lines
3.5 KiB
Text
90 lines
3.5 KiB
Text
--- ./doc/example.efnet.conf.orig 2008-08-08 19:17:31.000000000 +0100
|
|
+++ ./doc/example.efnet.conf 2008-08-21 00:41:22.000000000 +0100
|
|
@@ -60,7 +60,7 @@
|
|
/* description: the description of our server. '[' and ']' may not
|
|
* be used here for compatibility with older servers.
|
|
*/
|
|
- description = "ircd-ratbox EFNet server";
|
|
+ description = "ircd-ratbox EFNet testing server";
|
|
|
|
/* network info: the name and description of the network this server
|
|
* is on. Shown in the 005 reply and used with serverhiding.
|
|
@@ -101,13 +101,13 @@
|
|
default_max_clients = 10000;
|
|
|
|
/* ssl_private_key: our ssl private key */
|
|
- ssl_private_key = "etc/test.key";
|
|
+ ssl_private_key = "%%PREFIX%%/etc/ssl/test.key";
|
|
|
|
/* ssl_cert: certificate for our ssl server */
|
|
- ssl_cert = "etc/test.cert";
|
|
+ ssl_cert = "%%PREFIX%%/etc/ssl/test.cert";
|
|
|
|
/* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
|
|
- ssl_dh_params = "etc/dh.pem";
|
|
+ ssl_dh_params = "%%PREFIX%%/etc/ssl/dh.pem";
|
|
|
|
/* ssld_count: number of ssld processes you want to start, if you have a really busy
|
|
* server, using N-1 where N is the number of cpu/cpu cores you have might be useful
|
|
@@ -140,16 +140,16 @@
|
|
* - operspylog: operspy usage
|
|
* - ioerrorlog: IO errors
|
|
*/
|
|
- fname_userlog = "logs/userlog";
|
|
- #fname_fuserlog = "logs/fuserlog";
|
|
- fname_operlog = "logs/operlog";
|
|
- #fname_foperlog = "logs/foperlog";
|
|
- fname_serverlog = "logs/serverlog";
|
|
- fname_glinelog = "logs/glinelog";
|
|
- #fname_klinelog = "logs/klinelog";
|
|
- fname_killlog = "logs/killlog";
|
|
- fname_operspylog = "logs/operspylog";
|
|
- #fname_ioerrorlog = "logs/ioerror";
|
|
+ fname_userlog = "%%LOGDIR%%/userlog";
|
|
+ #fname_fuserlog = "%%LOGDIR%%/fuserlog";
|
|
+ fname_operlog = "%%LOGDIR%%/operlog";
|
|
+ #fname_foperlog = "%%LOGDIR%%/foperlog";
|
|
+ fname_serverlog = "%%LOGDIR%%/serverlog";
|
|
+ fname_glinelog = "%%LOGDIR%%/glinelog";
|
|
+ #fname_klinelog = "%%LOGDIR%%/klinelog";
|
|
+ fname_killlog = "%%LOGDIR%%/killlog";
|
|
+ fname_operspylog = "%%LOGDIR%%/operspylog";
|
|
+ #fname_ioerrorlog = "%%LOGDIR%%/ioerror";
|
|
};
|
|
|
|
/* class {}: contain information about classes for users (OLD Y:) */
|
|
@@ -351,7 +351,7 @@
|
|
* A password should not be defined when this is used, see
|
|
* doc/challenge.txt for more information.
|
|
*/
|
|
- #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
|
|
+ #rsa_public_key_file = "%%PREFIX%%/etc/ircd-ratbox/oper.pub";
|
|
|
|
/* umodes: the specific umodes this oper gets when they oper.
|
|
* If this is specified an oper will not be given oper_umodes
|
|
@@ -967,13 +967,6 @@
|
|
/* oper umodes: default usermodes opers get when they /oper */
|
|
oper_umodes = locops, servnotice, operwall, wallop;
|
|
|
|
- /* servlink path: path to 'servlink' program used by ircd to handle
|
|
- * encrypted/compressed server <-> server links.
|
|
- *
|
|
- * only define if servlink is not in same directory as ircd itself.
|
|
- */
|
|
- #servlink_path = "/usr/local/ircd/bin/servlink";
|
|
-
|
|
/* use egd: if your system does not have *random devices yet you
|
|
* want to use OpenSSL and encrypted links, enable this. Beware -
|
|
* EGD is *very* CPU intensive when gathering data for its pool
|
|
@@ -1025,8 +1018,9 @@
|
|
/* module path: paths to search for modules specified below and
|
|
* in /modload.
|
|
*/
|
|
- path = "/usr/local/ircd/modules";
|
|
- path = "/usr/local/ircd/modules/autoload";
|
|
+ path = "%%PREFIX%%/lib/ircd-ratbox/modules";
|
|
+ path = "%%PREFIX%%/lib/ircd-ratbox/modules/autoload";
|
|
+ path = "%%PREFIX%%/lib/ircd-ratbox/modules/contrib";
|
|
|
|
/* module: the name of a module to load on startup/rehash */
|
|
#module = "some_module.so";
|