diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-17 22:28:48 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-17 22:28:48 +0200 |
commit | e36fe26d08200dd714b69c9f8b4c798d1e3a723e (patch) | |
tree | 65fa5a9caa2b6eb979d751ac6a7cfb369174e1d8 /plugins/mod_s2s/mod_s2s.lua | |
parent | 0c5c1f5d0e105eea950e5fba1ea1a3a30f9ab1e9 (diff) | |
parent | bbf1653e0470250acbd67998045d2ca2a382281a (diff) | |
download | prosody-e36fe26d08200dd714b69c9f8b4c798d1e3a723e.tar.gz prosody-e36fe26d08200dd714b69c9f8b4c798d1e3a723e.zip |
Merge with Link Mauve
Diffstat (limited to 'plugins/mod_s2s/mod_s2s.lua')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 431e712c..c4a3fe23 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -146,7 +146,7 @@ module:hook("s2s-read-timeout", keepalive, -1); function module.add_host(module) if module:get_option_boolean("disallow_s2s", false) then - module:log("warn", "The 'disallow_s2s' config option is deprecated, please see http://prosody.im/doc/s2s#disabling"); + module:log("warn", "The 'disallow_s2s' config option is deprecated, please see https://prosody.im/doc/s2s#disabling"); return nil, "This host has disallow_s2s set"; end module:hook("route/remote", route_to_existing_session, -1); |