diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-10-02 20:23:16 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-10-02 20:23:16 +0400 |
commit | ce482fbf8e2c1b9bf0cdba0ab61bc26985ee8977 (patch) | |
tree | aa9db8b8c40ce43d504750f03f781652c16ea727 /src/filter.h | |
parent | f3ad9c6f1e91c9912dbe730fdec350b5fc908672 (diff) | |
download | rspamd-ce482fbf8e2c1b9bf0cdba0ab61bc26985ee8977.tar.gz rspamd-ce482fbf8e2c1b9bf0cdba0ab61bc26985ee8977.zip |
* Add reject score setting for hard rejecting of mail (by Anton Nekhoroshin)
* Add rspamc protocol 1.1 (3 marks instead of 2)
Diffstat (limited to 'src/filter.h')
-rw-r--r-- | src/filter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/filter.h b/src/filter.h index 6ff3ae1d0..edc9523c6 100644 --- a/src/filter.h +++ b/src/filter.h @@ -41,6 +41,7 @@ struct metric { char *func_name; /**< name of consolidation function */ metric_cons_func func; /**< c consolidation function */ double required_score; /**< required score for this metric */ + double reject_score; /**< reject score for this metric */ struct classifier *classifier; /**< classifier that is used for metric */ struct symbols_cache *cache; /**< symbols cache for metric */ char *cache_filename; /**< filename of cache file */ |