diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-07-23 14:12:14 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-07-23 14:12:14 +0100 |
commit | 9849dfadb597e7def4e415ec9aa144071cdd5d1c (patch) | |
tree | 028c18adff5dd8abd85804af993ebea9e9994bdf /src/lua/lua_common.c | |
parent | a98a5c4890c9daed109ed2e7bd7376a6179092ec (diff) | |
download | rspamd-9849dfadb597e7def4e415ec9aa144071cdd5d1c.tar.gz rspamd-9849dfadb597e7def4e415ec9aa144071cdd5d1c.zip |
Start LUA API for HTML parts.
Diffstat (limited to 'src/lua/lua_common.c')
-rw-r--r-- | src/lua/lua_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lua/lua_common.c b/src/lua/lua_common.c index c2c54dbe1..59a78d873 100644 --- a/src/lua/lua_common.c +++ b/src/lua/lua_common.c @@ -237,6 +237,7 @@ rspamd_lua_init (struct rspamd_config *cfg) luaopen_text (L); luaopen_util (L); luaopen_tcp (L); + luaopen_html (L); rspamd_lua_add_preload (L, "ucl", luaopen_ucl); |