summaryrefslogtreecommitdiff
path: root/irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf
diff options
context:
space:
mode:
authorBeech Rintoul <beech@FreeBSD.org>2008-07-24 03:42:40 +0000
committerBeech Rintoul <beech@FreeBSD.org>2008-07-24 03:42:40 +0000
commit395bb0a9b8204e7f0232216c74cc2abfbb9a9dae (patch)
tree1e3cc6255cf5482ea4493df3ddd1b54cf92db1b3 /irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf
parent- Update to 6.8 (diff)
- Update to 3.0.0.b8
Port changes: o Example EFnet configuration file updated for ratbox-3 and re-included in the port install. Software changes include: o Some cleanups in the checksplit code. o Some cleanups in the /trace code. o Show reasons for failed outbound SSL handshakes to opers. o Log SSL errors for servers and handshakes in serverlog. o Make sqlite3 checking more robust. o Change the resolver to use the code from charybdis instead of adns. o Fix identd checking so it is no longer broken as in beta7. o Fix a bug where the ircd could stop reading from the client on the CAP command. o Add some functions for random number generation for the nossl case in libratbox. PR: ports/125868 Submitted by: Lewis <moggie@elasticmind.net> (maintainer)
Notes
Notes: svn path=/head/; revision=217401
Diffstat (limited to 'irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf')
-rw-r--r--irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf85
1 files changed, 85 insertions, 0 deletions
diff --git a/irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf b/irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf
index e69de29bb2d1..359985efaafc 100644
--- a/irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf
+++ b/irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf
@@ -0,0 +1,85 @@
+--- doc/example.efnet.conf.orig 2008-07-22 13:32:47.000000000 +0100
++++ doc/example.efnet.conf 2008-07-22 13:53:46.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.
+@@ -91,13 +91,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
+@@ -130,16 +130,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:) */
+@@ -335,7 +335,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
+@@ -956,7 +956,7 @@
+ *
+ * only define if servlink is not in same directory as ircd itself.
+ */
+- #servlink_path = "/usr/local/ircd/bin/servlink";
++ #servlink_path = "%%PREFIX%%/bin/servlink";
+
+ /* use egd: if your system does not have *random devices yet you
+ * want to use OpenSSL and encrypted links, enable this. Beware -
+@@ -1009,8 +1009,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";