diff options
author | Kim Alvefur <zash@zash.se> | 2019-03-11 13:07:59 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-03-11 13:07:59 +0100 |
commit | 4b022060a27216380565302aa0fc3ca805a532eb (patch) | |
tree | 2fa521bd74ad9ae45ba4ea4c6c5cafb6f4dcb709 /plugins/mod_s2s | |
parent | 2bc176f1d072da9404436a40581745033d1e41b6 (diff) | |
download | prosody-4b022060a27216380565302aa0fc3ca805a532eb.tar.gz prosody-4b022060a27216380565302aa0fc3ca805a532eb.zip |
mod_tls: Restore querying for certificates on s2s
The 'ssl_config' setting in the mod_s2s network service is not used.
Only direct TLS ports use this currently.
Diffstat (limited to 'plugins/mod_s2s')
-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 b0d551fe..f0fdc5fb 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -738,7 +738,7 @@ module:provides("net", { listener = listener; default_port = 5269; encryption = "starttls"; - ssl_config = { + ssl_config = { -- FIXME This is not used atm, see mod_tls verify = { "peer", "client_once", }; }; multiplex = { |