From f00fd82071e26b37889f1e2c4a1a10073071fcbf Mon Sep 17 00:00:00 2001 From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com> Date: Mon, 2 Feb 2026 12:28:53 +0100 Subject: [PATCH] Picky correctness improvement to inline TOML comment in policy template. `send-notify-to` requires quoted `IP:[port]` values but the TOML doc doesn't mention the quotes, and unlike the server address binding examples in the main config file, here there is no default value making the syntax self-documenting. It also says a collection while strictly speaking it should be a set, and to be even more pedantic I noted that it should be comma-separated. --- etc/policy.template.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etc/policy.template.toml b/etc/policy.template.toml index 3e27515c..9992ff7c 100644 --- a/etc/policy.template.toml +++ b/etc/policy.template.toml @@ -367,5 +367,6 @@ required = false # # If empty, no NOTIFY messages will be sent. # -# A collection of IP:[port], defaulting to port 53 when not specified. +# A comma-separated set of zero or more "IP:[port]" values, defaulting to +# port 53 when not specified. send-notify-to = []