aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-26 18:25:03 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-26 18:25:03 +0000
commitc33ebb79fee335a2207aa574146af2ca3e8a7c66 (patch)
tree80c4128f09218eff8afa2c142619f77fb68c4426
parentaf27107a9b72e48eb48dbbcc17efd127d18f3050 (diff)
downloadprosody-c33ebb79fee335a2207aa574146af2ca3e8a7c66.tar.gz
prosody-c33ebb79fee335a2207aa574146af2ca3e8a7c66.zip
Update mod_selftests to use the hosts on http://xmpp.org/interop/servers.shtml
-rw-r--r--plugins/mod_selftests.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_selftests.lua b/plugins/mod_selftests.lua
index 4f128504..8aa70952 100644
--- a/plugins/mod_selftests.lua
+++ b/plugins/mod_selftests.lua
@@ -4,7 +4,7 @@ local register_component = require "core.componentmanager".register_component;
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 = {};