read: http://svn.xiaoka.com/jabberd2/trunk/UPGRADE This is a big bugfix release. ChangeLog: * Removed jid prep cache and mysql filters cache. These are known to grow without restrictions causing memory "leak". * Fix in jabber:iq:register example in router-filter.xml * Fix in lookup.resolve-ipv6 in s2s.xml handling * Fix c2s's byte rate limiting. * Make c2s's connection rate limiting and router's byte rate limiting work better. * Comments and spelling errors fixes * Fix a potential memory leak when attempting to read from a socket that has been closed. * Improve the documentation for <max_fds> in the configuration files. * Merged MySQL crypt()ed password full implementation. Closes #228 * Re-use DB query the filter instead of recreating it. * Added --without-subst option to disable subst/ library building. * Do not bounce s2s error packets * Fixed filtered packets error reporting * Changed router-filter example, because resource is not matched For a full ChangeLog see: http://svn.xiaoka.com/jabberd2/tags/jabberd-2.2.1/ChangeLog
49 lines
1.7 KiB
Text
49 lines
1.7 KiB
Text
$NetBSD: patch-ae,v 1.11 2008/07/16 16:45:47 schnoebe Exp $
|
|
|
|
--- etc/router.xml.in.orig 2008-07-16 04:36:58.000000000 -0500
|
|
+++ etc/router.xml.in
|
|
@@ -5,7 +5,7 @@
|
|
|
|
<!-- The process ID file. Comment this out if you don't need to know
|
|
the process ID from outside the process (eg for control scripts) -->
|
|
- <pidfile>@localstatedir@/jabberd/pid/router.pid</pidfile>
|
|
+ <pidfile>@PIDDIR@/router.pid</pidfile>
|
|
|
|
<!-- Log configuration - type is "syslog", "file" or "stdout" -->
|
|
<log type='syslog'>
|
|
@@ -18,7 +18,7 @@
|
|
|
|
<!-- If logging to file, this is the filename of the logfile -->
|
|
<!--
|
|
- <file>@localstatedir@/jabberd/log/router.log</file>
|
|
+ <file>@LOGDIR@/router.log</file>
|
|
-->
|
|
</log>
|
|
|
|
@@ -33,7 +33,7 @@
|
|
<!-- File containing the user table. This is where the router gets
|
|
its component and secret information from for component
|
|
authentication.-->
|
|
- <users>@sysconfdir@/router-users.xml</users>
|
|
+ <users>@PKG_SYSCONFDIR@/router-users.xml</users>
|
|
|
|
<!-- Shared secret used to identify XEP-0114 components (that is,
|
|
"jabber:component:accept" components that authenticate using
|
|
@@ -52,7 +52,7 @@
|
|
If this is commented out, connecting components will not be able
|
|
to request an SSL-encrypted channel. -->
|
|
<!--
|
|
- <pemfile>@sysconfdir@/server.pem</pemfile>
|
|
+ <pemfile>@SSLCERTS@/server.pem</pemfile>
|
|
-->
|
|
</local>
|
|
|
|
@@ -191,7 +191,7 @@
|
|
|
|
<!-- File containing packet filter rules.
|
|
May be used for fine grained packet routing control. -->
|
|
- <filter>@sysconfdir@/router-filter.xml</filter>
|
|
+ <filter>@PKG_SYSCONFDIR@/router-filter.xml</filter>
|
|
|
|
</aci>
|
|
|