log mod_firewall/mod_firewall.lua @ 2351:f8ecb4b248b0

age author description
2016-11-04 Matthew Wild mod_firewall: Add conditions for testing whether a sender of a stanza is in the recipient's roster (or in a certain roster group)
2016-03-18 Matthew Wild mod_firewall: Don't use util.cache unless it's needed, and add explanatory error if it is not available
2016-03-18 Matthew Wild mod_firewall: Add support for throttling based on user-defined properties (experimental)
2016-03-17 Matthew Wild mod_firewall: Fix syntax error
2016-03-17 Matthew Wild mod_firewall: Move meta() function to main module, and make it a global so libs can use it
2016-03-17 Matthew Wild mod_firewall: Add comment to document idsafe()
2016-03-17 Kim Alvefur mod_firewall: Disable more realistic output by default, activated by adding a -v flag
2016-03-17 Kim Alvefur mod_firewall: Make prosodyctl command output more realistic source (not guaranteed to work)
2016-03-17 Matthew Wild mod_firewall: Support for defining extra chains in the config file
2016-03-17 Matthew Wild mod_firewall: Allow actions to have underscores in their names
2016-03-17 Matthew Wild mod_firewall: Add 'timestamp' dep to get current_timestamp
2016-03-17 Matthew Wild mod_firewall: Make idsafe() a global function so libraries can re-use it
2016-03-11 Kim Alvefur mod_firewall: Silence warning about empty if branch [luacheck]
2016-03-11 Kim Alvefur mod_firewall: Split compile function into two parts in order to separate their scopes
2016-03-11 Kim Alvefur mod_firewall: Rename argument to avoid name clash [luacheck]
2016-03-11 Kim Alvefur mod_firewall: Remove unused imports [luacheck]
2016-03-11 Kim Alvefur mod_firewall: Optimize string match operations, string.find is faster than .match since no string is returned
2014-03-11 Florian Zeitz all the things: Remove trailing whitespace
2014-02-28 Kim Alvefur Backed out changeset 853a382c9bd6
2014-02-28 Kim Alvefur mod_turncredentials: Advertise the XEP-0215 feature (thanks Gryffus)
2014-02-16 Florian Zeitz mod_firewall: Do not cache conditions with only a single use
2014-02-16 Florian Zeitz mod_firewall: Produce code with nicer indentation
2013-06-05 Kim Alvefur mod_firewall: Add support for being called as a prosodyctl command
2013-06-05 Kim Alvefur mod_firewall: Remove print()
2013-05-08 Matthew Wild mod_firewall: don't use %b() (not technically correct)
2013-05-07 Matthew Wild mod_firewall: Make defining objects generic (currently zones and rate limits), so more can easily be added. Also a syntax change... definition lines must begin with %
2013-05-07 Matthew Wild mod_firewall: Fix conditions with spaces
2013-05-07 Matthew Wild mod_firewall: Cache conditions, so that they are only calculated once per chain execution
2013-04-08 Kim Alvefur mod_firewall: Fix variable name
2013-04-06 Matthew Wild mod_firewall: Add rate limiting capabilities, and keep zones and throttle objects in shared tables
2013-04-06 Matthew Wild mod_firewall: Don't add empty conditions check when no conditions are listed in a rule
2013-04-06 Matthew Wild mod_firewall: Add time and date deps
2013-04-05 Matthew Wild mod_firewall: Improve zone handling, make it more efficient, and support dynamic dependencies in the compiler. ENTERING and LEAVING conditions now work at expected (not matching stanzas flowing within a zone).
2013-04-05 Matthew Wild mod_firewall: Add actions EVENT (fire an event), JUMP EVENT (transfer control to the handlers of an event), JUMP CHAIN (transfer control to another mod_firewall chain)
2013-04-05 Matthew Wild mod_firewall: Tighten up error handling, and split rules->Lua and Lua->bytecode compilation into separate functions
2013-04-04 Kim Alvefur mod_firewall: Use resolve_relative_path correctly
2013-04-03 Matthew Wild mod_firewall: General stanza filtering plugin with a declarative rule-based syntax