changeset 5539:fa8435a27f7e

mod_firewall: enable marks by default
author Matthew Wild <mwild1@gmail.com>
date Thu, 08 Jun 2023 17:00:04 +0100
parents 40f8b9cc2065
children 1249ab2f797c
files mod_firewall/mod_firewall.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_firewall/mod_firewall.lua	Thu Jun 08 16:59:22 2023 +0100
+++ b/mod_firewall/mod_firewall.lua	Thu Jun 08 17:00:04 2023 +0100
@@ -316,7 +316,7 @@
 local condition_handlers = module:require("conditions");
 local action_handlers = module:require("actions");
 
-if module:get_option_boolean("firewall_experimental_user_marks", false) then
+if module:get_option_boolean("firewall_experimental_user_marks", true) then
 	module:require"marks";
 end