From 1d30c9cfe36f69321cc848d5874b1f6cb999f198 Mon Sep 17 00:00:00 2001 From: Jean Date: Sat, 18 Jul 2026 17:02:01 +0000 Subject: [PATCH] operserv: note the log channel and notify exclude list are REHASH-reloadable in HELP --- modules/operserv/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/operserv/src/lib.rs b/modules/operserv/src/lib.rs index 38f0bfe..218a09b 100644 --- a/modules/operserv/src/lib.rs +++ b/modules/operserv/src/lib.rs @@ -143,5 +143,5 @@ const TOPICS: &[HelpEntry] = &[ HelpEntry { cmd: "SET", summary: "services-wide settings", detail: "Syntax: \x02SET READONLY {ON|OFF}\x02\nToggles read-only lockdown: while on, no registrations or changes are accepted." }, HelpEntry { cmd: "SHUTDOWN", summary: "stop services", detail: "Syntax: \x02SHUTDOWN [reason]\x02\nStops the services process. It stays down until restarted." }, HelpEntry { cmd: "RESTART", summary: "restart services", detail: "Syntax: \x02RESTART [reason]\x02\nRestarts the services process (a supervisor respawns it)." }, - HelpEntry { cmd: "REHASH", summary: "reload the configuration", detail: "Syntax: \x02REHASH\x02\nRe-reads config.toml and applies the settings that are safe to change while linked (opers, standard-replies, services channel, service oper-type, expiry, session limits) without a restart — no relink, no user disruption. Server identity, service umodes and the keycard endpoint still need a RESTART." }, + HelpEntry { cmd: "REHASH", summary: "reload the configuration", detail: "Syntax: \x02REHASH\x02\nRe-reads config.toml and applies the settings that are safe to change while linked (opers, standard-replies, services channel, service oper-type, expiry, session limits, log channel, notify exclude list) without a restart — no relink, no user disruption. Server identity, service umodes and the keycard endpoint still need a RESTART." }, ];