prosody 13.0.6

This commit is contained in:
2026-08-02 16:22:46 +02:00
parent 939d5cbc7f
commit 3618be5f4a
11 changed files with 99 additions and 89 deletions
+5 -4
View File
@@ -1,9 +1,10 @@
local stringy = require "stringy"
local getenv = Lua.os.getenv
local stringy = Lua.require "stringy"
e2e_policy_chat = os.getenv("E2E_POLICY_CHAT") or "required"
e2e_policy_muc = os.getenv("E2E_POLICY_MUC") or "required"
e2e_policy_chat = getenv("E2E_POLICY_CHAT") or "required"
e2e_policy_muc = getenv("E2E_POLICY_MUC") or "required"
local whitelist = os.getenv("E2E_POLICY_WHITELIST") or ""
local whitelist = getenv("E2E_POLICY_WHITELIST") or ""
e2e_policy_whitelist = stringy.split(whitelist, ", ")
e2e_policy_message_optional_chat = "For security reasons, OMEMO, OTR or PGP encryption is STRONGLY recommended for conversations on this server."