From c3c33f47e2204430354ff0f65e3f410157444dda Mon Sep 17 00:00:00 2001 From: "Odd E. Ebbesen" Date: Tue, 8 Jul 2025 12:43:48 +0200 Subject: [PATCH] feat: #821 - Options to disable local typing and read receipts --- src/core/config/mod.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/core/config/mod.rs b/src/core/config/mod.rs index 5d898f81..282caf79 100644 --- a/src/core/config/mod.rs +++ b/src/core/config/mod.rs @@ -1259,7 +1259,10 @@ pub struct Config { #[serde(default = "true_fn")] pub presence_timeout_remote_users: bool, - /// Allow local read receipts + /// Allow local read receipts. + /// + /// Disabling this will effectively also disable outgoing federated read + /// receipts. #[serde(default = "true_fn")] pub allow_local_read_receipts: bool, @@ -1272,6 +1275,9 @@ pub struct Config { pub allow_outgoing_read_receipts: bool, /// Allow local typing updates. + /// + /// Disabling this will effectively also disable outgoing federated typing + /// updates. #[serde(default = "true_fn")] pub allow_local_typing: bool,