diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-26 18:25:03 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-26 18:25:03 +0000 |
commit | c33ebb79fee335a2207aa574146af2ca3e8a7c66 (patch) | |
tree | 80c4128f09218eff8afa2c142619f77fb68c4426 | |
parent | af27107a9b72e48eb48dbbcc17efd127d18f3050 (diff) | |
download | prosody-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.lua | 2 |
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 = {}; |