aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Smutny <js@excello.cz>2020-04-17 17:31:50 +0200
committerJan Smutny <js@excello.cz>2020-04-17 17:31:50 +0200
commitacefdbe25a8d11ec81030724cb07474dc332ea68 (patch)
tree84e9455477f96ee1e8cb89a4c7f784343ae0b52d /src
parentd04d3d983dfce9a1e00cdbceaa3b4439432c4a98 (diff)
downloadrspamd-acefdbe25a8d11ec81030724cb07474dc332ea68.tar.gz
rspamd-acefdbe25a8d11ec81030724cb07474dc332ea68.zip
src/lua/lua_util.c: remove unused function
Diffstat (limited to 'src')
-rw-r--r--src/lua/lua_util.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c
index e7f18db2b..7f9918c61 100644
--- a/src/lua/lua_util.c
+++ b/src/lua/lua_util.c
@@ -1465,51 +1465,6 @@ lua_util_levenshtein_distance (lua_State *L)
}
static gint
-lua_util_parse_addr (lua_State *L)
-{
- LUA_TRACE_POINT;
- GPtrArray *addrs;
- gsize len;
- const gchar *str = luaL_checklstring (L, 1, &len);
- rspamd_mempool_t *pool;
- gboolean own_pool = FALSE;
-
- if (str) {
-
- if (lua_type (L, 2) == LUA_TUSERDATA) {
- pool = rspamd_lua_check_mempool (L, 2);
-
- if (pool == NULL) {
- return luaL_error (L, "invalid arguments");
- }
- }
- else {
- pool = rspamd_mempool_new (rspamd_mempool_suggest_size (),
- "lua util", 0);
- own_pool = TRUE;
- }
-
- addrs = rspamd_email_address_from_mime (pool, str, len, NULL);
-
- if (addrs == NULL) {
- lua_pushnil (L);
- }
- else {
- lua_push_emails_address_list (L, addrs, 0);
- }
-
- if (own_pool) {
- rspamd_mempool_delete (pool);
- }
- }
- else {
- lua_pushnil (L);
- }
-
- return 1;
-}
-
-static gint
lua_util_fold_header (lua_State *L)
{
LUA_TRACE_POINT;