aboutsummaryrefslogtreecommitdiffstats
path: root/src/filter.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2009-07-23 20:02:33 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2009-07-23 20:02:33 +0400
commit3035b4fcc174228d058a0c4cc6871a01340326d0 (patch)
treed754ce1d7da6074eb02c375b3f324504576d740b /src/filter.h
parent6e59414a267e239bb42edc35b9fecd5ba2992067 (diff)
downloadrspamd-3035b4fcc174228d058a0c4cc6871a01340326d0.tar.gz
rspamd-3035b4fcc174228d058a0c4cc6871a01340326d0.zip
* Make modules disableable from config
Diffstat (limited to 'src/filter.h')
-rw-r--r--src/filter.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/filter.h b/src/filter.h
index 56a70fdf7..6ff3ae1d0 100644
--- a/src/filter.h
+++ b/src/filter.h
@@ -22,6 +22,7 @@ enum filter_type { C_FILTER, PERL_FILTER };
struct filter {
char *func_name; /**< function name */
enum filter_type type; /**< filter type (c or perl) */
+ module_t *module;
};
/**