From a751a2a517d97697b03f325b9374704ecb5b3118 Mon Sep 17 00:00:00 2001 From: "Casper V. Kristensen" Date: Thu, 6 Jun 2024 23:01:11 +0200 Subject: [PATCH] matrix: give up on security --- hosts/sigma/matrix.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/sigma/matrix.nix b/hosts/sigma/matrix.nix index 4ac90e2..c4ff2cf 100644 --- a/hosts/sigma/matrix.nix +++ b/hosts/sigma/matrix.nix @@ -40,7 +40,10 @@ # Disable trusting signing keys from matrix.org (the default). If set to # the empty array, then Synapse will request the keys directly from the # server that owns the keys. - trusted_key_servers = []; + # TODO: This is disabled (so we implicitly trust matrix.org) since, + # apparently, the matrix protocol isn't distributed at all and nothing + # works if you don't do this. + # trusted_key_servers = []; # The public URIs of the TURN server to give to clients. # https://element-hq.github.io/synapse/latest/turn-howto.html turn_uris = ["turn:turn.matrix.org?transport=udp" "turn:turn.matrix.org?transport=tcp"];