forked from mirror/prosody
982ddcd60b
* Move multiple defaults from entrypoint script to cfg.lua files. * Move remaining defaults from entrypoint script to cfg.lua files. * Update postgres version in tests * Register users with prosodyctl in tests * Replace 'docker-compose' with 'docker compose'
12 lines
808 B
Lua
12 lines
808 B
Lua
local stringy = require "stringy"
|
|
|
|
e2e_policy_chat = os.getenv("E2E_POLICY_CHAT") or "required"
|
|
e2e_policy_muc = os.getenv("E2E_POLICY_MUC") or "required"
|
|
|
|
local whitelist = os.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."
|
|
e2e_policy_message_required_chat = "For security reasons, OMEMO, OTR or PGP encryption is required for conversations on this server."
|
|
e2e_policy_message_optional_muc = "For security reasons, OMEMO, OTR or PGP encryption is STRONGLY recommended for MUC on this server."
|
|
e2e_policy_message_required_muc = "For security reasons, OMEMO, OTR or PGP encryption is required for MUC on this server."
|