mirror of
https://github.com/g4klx/DAPNETGateway.git
synced 2026-08-26 12:32:45 -04:00
21 lines
539 B
Text
21 lines
539 B
Text
The REGEX functionality allows you to whitelist or blacklist messages based on
|
|
pattern matching the message body itself (not the RIC).
|
|
|
|
The options for this are:
|
|
|
|
|
|
WhitelistRegexfile=
|
|
BlacklistRegexfile=
|
|
|
|
REGEXs are placed in the the respective textfile, one per line. These need to
|
|
be a full match, i.e. they need to match the entire message, begining with ^
|
|
and ending with $.
|
|
|
|
For example:
|
|
|
|
^NAGIOS.*$ - matches all Nagios alerts
|
|
|
|
^(G|M|2).+$ - Matches messages with the first character as a G.M or 2 - i.e.
|
|
match all UK callsigns.
|
|
|
|
|