diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-19 18:31:11 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-19 18:31:11 +0000 |
commit | 5640329874764ee3b0f0a5bc9fcb96cdfd11a66f (patch) | |
tree | a426e47436ec70292a23ddf6d43dc7d8f87cd436 /src/plugins | |
parent | 9c91f8ff3f0ae62088726e2e36c73418d6ecfd7b (diff) | |
download | rspamd-5640329874764ee3b0f0a5bc9fcb96cdfd11a66f.tar.gz rspamd-5640329874764ee3b0f0a5bc9fcb96cdfd11a66f.zip |
Disable fuzzy hashes from the metadata
Issue: #486
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/fuzzy_check.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c index c3e119475..0030b2cbc 100644 --- a/src/plugins/fuzzy_check.c +++ b/src/plugins/fuzzy_check.c @@ -1775,11 +1775,13 @@ fuzzy_generate_commands (struct rspamd_task *task, struct fuzzy_rule *rule, } /* Process metadata */ +#if 0 io = fuzzy_cmd_from_task_meta (rule, c, flag, value, task->task_pool, task); if (io) { g_ptr_array_add (res, io); } +#endif if (res->len == 0) { g_ptr_array_free (res, FALSE); |