Comparison

spec/scansion/prosody.cfg.lua @ 10467:600d4cf41ce1

tests: Disable s2s in scansion tests These are all c2s tests, no need to have s2s enabled.
author Kim Alvefur <zash@zash.se>
date Sat, 30 Nov 2019 14:00:13 +0100
parent 10238:9cfefd57da05
child 10630:5949006de35e
comparison
equal deleted inserted replaced
10466:276f62d14437 10467:600d4cf41ce1
7 modules_enabled = { 7 modules_enabled = {
8 -- Generally required 8 -- Generally required
9 "roster"; -- Allow users to have a roster. Recommended ;) 9 "roster"; -- Allow users to have a roster. Recommended ;)
10 "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. 10 "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
11 --"tls"; -- Add support for secure TLS on c2s/s2s connections 11 --"tls"; -- Add support for secure TLS on c2s/s2s connections
12 "dialback"; -- s2s dialback support 12 --"dialback"; -- s2s dialback support
13 "disco"; -- Service discovery 13 "disco"; -- Service discovery
14 14
15 -- Not essential, but recommended 15 -- Not essential, but recommended
16 "carbons"; -- Keep multiple clients in sync 16 "carbons"; -- Keep multiple clients in sync
17 "pep"; -- Enables users to publish their avatar, mood, activity, playing music and more 17 "pep"; -- Enables users to publish their avatar, mood, activity, playing music and more
51 51
52 -- Useful for testing 52 -- Useful for testing
53 --"scansion_record"; -- Records things that happen in scansion test case format 53 --"scansion_record"; -- Records things that happen in scansion test case format
54 } 54 }
55 55
56 modules_disabled = {
57 "s2s";
58 }
56 certificate = "certs" 59 certificate = "certs"
57 60
58 allow_registration = false 61 allow_registration = false
59 62
60 c2s_require_encryption = false 63 c2s_require_encryption = false