# HG changeset patch # User Matthew Wild # Date 1365181570 -3600 # Node ID 843795020701dab23c455c2cd854ff1eb86baaa1 # Parent 9b21b91c2d96b6d0ac2d3c80b8e17ffbc432289a mod_firewall/actions: DROP no longer logs, log messages can be emitted with LOG diff -r 9b21b91c2d96 -r 843795020701 mod_firewall/actions.lib.lua --- a/mod_firewall/actions.lib.lua Fri Apr 05 18:05:46 2013 +0100 +++ b/mod_firewall/actions.lib.lua Fri Apr 05 18:06:10 2013 +0100 @@ -52,7 +52,7 @@ end function action_handlers.DROP() - return "log('debug', 'Firewall dropping stanza: %s', tostring(stanza)); return true;"; + return "do return true end"; end function action_handlers.STRIP(tag_desc)