From 8d6d845262f75e87622de43567b89541998473f5 Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Thu, 28 May 2026 11:08:59 +0200 Subject: [PATCH] feat(settings): include email in default remarkModel pattern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the out-of-the-box remarkModel from "-io" (Inbound, Other) to "-ieo" so newly provisioned panels include the client's email between the inbound name and the other slot — much easier to identify which client a generated remark belongs to. Existing installs that have already written a remarkModel value are unaffected; only first-run / unset defaults inherit the new pattern. --- web/service/setting.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/service/setting.go b/web/service/setting.go index 267ec1cb..7ff58146 100644 --- a/web/service/setting.go +++ b/web/service/setting.go @@ -41,7 +41,7 @@ var defaultValueMap = map[string]string{ "pageSize": "25", "expireDiff": "0", "trafficDiff": "0", - "remarkModel": "-io", + "remarkModel": "-ieo", "timeLocation": "Local", "tgBotEnable": "false", "tgBotToken": "",