Make 03-e2e-policy.cfg.lua configurable with ENV variables.

This commit is contained in:
Sara Aimée Smiseth 2020-09-18 18:53:33 +02:00
parent fd21384bdf
commit fb50f748ee
4 changed files with 9 additions and 4 deletions

View file

@ -1,7 +1,7 @@
e2e_policy_chat = "required"
e2e_policy_muc = "required"
e2e_policy_chat = os.getenv("E2E_POLICY_CHAT")
e2e_policy_muc = os.getenv("E2E_POLICY_MUC")
e2e_policy_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."
e2e_policy_message_required_muc = "For security reasons, OMEMO, OTR or PGP encryption is required for MUC on this server."