From cf82daf5da712dc083ca1632527c08d88ca73bc7 Mon Sep 17 00:00:00 2001 From: Chris Koos Date: Sun, 10 Nov 2024 10:57:43 -0800 Subject: [PATCH] Add option for allowing unknown devices Allows workaround for sending messages until verification is implemented --- src/matrix-server-config.html | 17 ++++++++++++++++- src/matrix-server-config.js | 2 ++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/matrix-server-config.html b/src/matrix-server-config.html index fd7bba7..60db2f7 100644 --- a/src/matrix-server-config.html +++ b/src/matrix-server-config.html @@ -36,7 +36,8 @@ name: { value: null }, autoAcceptRoomInvites: { value: true }, enableE2ee: { type: "checkbox", value: true }, - global: { type: "checkbox", value: true } + global: { type: "checkbox", value: true }, + allowUnknownDevices: { type: "checkbox", value: false } }, icon: "matrix.png", label: function() { @@ -130,6 +131,20 @@ let client = global.get("matrixClient['@bot:example.com']"); + +
+ + +
+ Allow sending messages to a room with unknown devices which have not been verified. +
+