Update mod_selftests to use the hosts on http://xmpp.org/interop/servers.shtml
authorMatthew Wild <mwild1@gmail.com>
Wed, 26 Nov 2008 18:25:03 +0000
changeset 428 e717ecc97d2e
parent 427 3288dd8d9669
child 430 f9b43bb9d807
Update mod_selftests to use the hosts on http://xmpp.org/interop/servers.shtml
plugins/mod_selftests.lua
--- a/plugins/mod_selftests.lua	Wed Nov 26 15:58:04 2008 +0000
+++ b/plugins/mod_selftests.lua	Wed Nov 26 18:25:03 2008 +0000
@@ -4,7 +4,7 @@
 local core_route_stanza = core_route_stanza;
 local socket = require "socket";
 local config = require "core.configmanager";
-local ping_hosts = config.get("*", "mod_selftests", "ping_hosts") or { "jabber.org" };
+local ping_hosts = config.get("*", "mod_selftests", "ping_hosts") or { "coversant.interop.xmpp.org", "djabberd.interop.xmpp.org", "djabberd-trunk.interop.xmpp.org", "ejabberd.interop.xmpp.org", "openfire.interop.xmpp.org" };
 
 local open_pings = {};