diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-20 19:35:07 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-20 19:35:07 +0400 |
commit | 5c9372c4a8678c6856360891180b02c2fdf688ee (patch) | |
tree | bc67f5cb057c4784c67e691f76aa8a8f80a40e51 /src/filter.h | |
parent | 9bc06fea2eac12cc46028fcdd630d291a76b68ae (diff) | |
download | rspamd-5c9372c4a8678c6856360891180b02c2fdf688ee.tar.gz rspamd-5c9372c4a8678c6856360891180b02c2fdf688ee.zip |
* Add start script for red hat compatible systems
Add descriptions for some rspamd API functions (no functional changes).
--HG--
rename : linux/rspamd => linux/rspamd_debian.in
Diffstat (limited to 'src/filter.h')
-rw-r--r-- | src/filter.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/filter.h b/src/filter.h index 930594170..d222fdd45 100644 --- a/src/filter.h +++ b/src/filter.h @@ -146,8 +146,19 @@ gboolean learn_task (const gchar *statfile, struct worker_task *task, GError **e */ gboolean learn_task_spam (struct classifier_config *cl, struct worker_task *task, gboolean is_spam, GError **err); +/* + * Get action from a string + */ gboolean check_action_str (const gchar *data, gint *result); + +/* + * Return textual representation of action enumeration + */ const gchar *str_action_metric (enum rspamd_metric_action action); + +/* + * Get action for specific metric + */ gint check_metric_action (double score, double required_score, struct metric *metric); #endif |