aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_s2s_bidi.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-12-25 16:23:40 +0100
committerKim Alvefur <zash@zash.se>2021-12-25 16:23:40 +0100
commit73d1bb12184cd5bc91c5996ecc574149d9637d73 (patch)
tree81534ac655eabbfb6d3ede66ed7a31762da7d2fd /plugins/mod_s2s_bidi.lua
parenta02e872f8651ea4729697bd7ccc88f7f952c3f04 (diff)
downloadprosody-73d1bb12184cd5bc91c5996ecc574149d9637d73.tar.gz
prosody-73d1bb12184cd5bc91c5996ecc574149d9637d73.zip
various: Require encryption by default for real
These options have been specified (and enabled) in the default config file for a long time. However if unspecified in the config, they were not enabled. Now they are. This may result in a change of behaviour for people using very old config files that lack the require_encryption options. But that's what we want.
Diffstat (limited to 'plugins/mod_s2s_bidi.lua')
-rw-r--r--plugins/mod_s2s_bidi.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s_bidi.lua b/plugins/mod_s2s_bidi.lua
index 28e047de..addcd6e2 100644
--- a/plugins/mod_s2s_bidi.lua
+++ b/plugins/mod_s2s_bidi.lua
@@ -10,7 +10,7 @@ local st = require "util.stanza";
local xmlns_bidi_feature = "urn:xmpp:features:bidi"
local xmlns_bidi = "urn:xmpp:bidi";
-local require_encryption = module:get_option_boolean("s2s_require_encryption", false);
+local require_encryption = module:get_option_boolean("s2s_require_encryption", true);
module:hook("s2s-stream-features", function(event)
local origin, features = event.origin, event.features;