From 6bbf626e193a868f1b36f22a717a3d7be4cc82d9 Mon Sep 17 00:00:00 2001 From: zefie Date: Mon, 23 Jun 2025 12:43:28 -0400 Subject: [PATCH] new default channels, but disable IRCd by default --- zefie_wtvp_minisrv/includes/config.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/zefie_wtvp_minisrv/includes/config.json b/zefie_wtvp_minisrv/includes/config.json index d61d2062..5c36f47a 100644 --- a/zefie_wtvp_minisrv/includes/config.json +++ b/zefie_wtvp_minisrv/includes/config.json @@ -61,7 +61,7 @@ ] }, "irc": { - "enabled": true, + "enabled": false, "port": 1667, "oper_username": "minisrv", "oper_password": "changeme573", @@ -81,6 +81,22 @@ "ops": [ "*!*@127.0.0.1" ] + }, + { + "name": "#WebTV", + "modes": ["n", "t", "c", "C", "T"], + "topic": "Welcome to the WebTV channel", + "ops": [ + "*!*@127.0.0.1" + ] + }, + { + "name": "#secure", + "modes": ["n", "t", "S", "Z"], + "topic": "SSL only chat", + "ops": [ + "*!*@127.0.0.1" + ] } ] },