mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
3d67d2607c
Announcement: http://community.igniterealtime.org/blogs/ignite/2013/05/28/ - Incorporate a patch to fix broken S2S [1] Issue: http://issues.igniterealtime.org/browse/OF-443 Submitted by: Christian Reiss <email@christian-reiss.de> [1]
13 lines
760 B
Plaintext
13 lines
760 B
Plaintext
--- src/java/org/jivesoftware/openfire/server/ServerDialback.java.orig 2013-06-11 09:18:37.000000000 +0200
|
|
+++ src/java/org/jivesoftware/openfire/server/ServerDialback.java 2013-06-11 09:19:07.000000000 +0200
|
|
@@ -236,8 +236,7 @@
|
|
stream.append(" xmlns=\"jabber:server\"");
|
|
stream.append(" to=\"").append(remoteDomain).append("\"");
|
|
stream.append(" from=\"").append(localDomain).append("\"");
|
|
- stream.append(" xmlns:db=\"jabber:server:dialback\"");
|
|
- stream.append(" version=\"1.0\">");
|
|
+ stream.append(" xmlns:db=\"jabber:server:dialback\">");
|
|
connection.deliverRawText(stream.toString());
|
|
|
|
// Set a read timeout (of 5 seconds) so we don't keep waiting forever
|