diff options
author | Kim Alvefur <zash@zash.se> | 2019-09-07 00:46:06 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-09-07 00:46:06 +0200 |
commit | f724d890d28484d3c6d818b93c348019ce1256fb (patch) | |
tree | 0f2c72001ca055c3d64e261a6ee0e27cd04c4665 /spec/scansion/prosody.cfg.lua | |
parent | 5bba716be9cf3b7e345164023dc89b84e7542ea1 (diff) | |
download | prosody-f724d890d28484d3c6d818b93c348019ce1256fb.tar.gz prosody-f724d890d28484d3c6d818b93c348019ce1256fb.zip |
tests: Disable TLS in scansion tests
They were not using TLS before. With a36af4570b39 TLS context creation
will succeed even without a certificate, so TLS will be offered, but
since there is no certificate it does not work.
Diffstat (limited to 'spec/scansion/prosody.cfg.lua')
-rw-r--r-- | spec/scansion/prosody.cfg.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/scansion/prosody.cfg.lua b/spec/scansion/prosody.cfg.lua index fd742db6..1c359b27 100644 --- a/spec/scansion/prosody.cfg.lua +++ b/spec/scansion/prosody.cfg.lua @@ -8,7 +8,7 @@ modules_enabled = { -- Generally required "roster"; -- Allow users to have a roster. Recommended ;) "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. - "tls"; -- Add support for secure TLS on c2s/s2s connections + --"tls"; -- Add support for secure TLS on c2s/s2s connections "dialback"; -- s2s dialback support "disco"; -- Service discovery |