From 7a8964699e8f539c30ad6a298418f405d1e7ce9a Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 24 Aug 2022 14:56:34 +0200 Subject: [PATCH] Improve wording of custom filter list setting --- intel/customlists/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/intel/customlists/config.go b/intel/customlists/config.go index 85fe606d..140b788f 100644 --- a/intel/customlists/config.go +++ b/intel/customlists/config.go @@ -14,9 +14,9 @@ var ( var getFilePath config.StringOption func registerConfig() error { - help := `The file is checked every couple minutes and will be automatically reloaded when it has changed. + help := `The file (.txt) is checked every couple minutes and will be automatically reloaded when it has changed. -Entries may be one of: +Entries (one per line) may be one of: - Domain: "example.com" - IP Address: "10.0.0.1" - Country Code (based on IP): "US" @@ -32,7 +32,7 @@ Please note that the custom filter list is fully loaded into memory. This can ha err := config.Register(&config.Option{ Name: "Custom Filter List", Key: CfgOptionCustomListFileKey, - Description: "Specify the file path to a custom filter list, which will be automatically refreshed. Any connections matching a domain, IP address, Country or ASN in the file will be blocked.", + Description: "Specify the file path to a custom filter list (.txt), which will be automatically refreshed. Any connections matching a domain, IP address, Country or ASN in the file will be blocked.", Help: help, OptType: config.OptTypeString, ExpertiseLevel: config.ExpertiseLevelExpert,