Some people would like to get notifications for all their hunting rules, others would like to see notifications only for special specific rules (whitelisting), and some would like to not get notifications for specific rules.
By now, VTHunting does not support the filtering of rules. I suggest adding two lists for the configuration:
# Report notifications only if the rule is not blacklisted and the user didn't
# specify specific rules to be whitelisted
if (not RULES_WHITELIST or rule_name in RULES_WHITELIST)
and (rule_name not in RULES_BLACKLIST):
# report is valid
Some people would like to get notifications for all their hunting rules, others would like to see notifications only for special specific rules (whitelisting), and some would like to not get notifications for specific rules.
By now, VTHunting does not support the filtering of rules. I suggest adding two lists for the configuration:
Then you can do something like: