aboutsummaryrefslogtreecommitdiffstats
path: root/src/settings.h
blob: fb8f8681ea2d9603eecea3a20f5101ff862ad5b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef RSPAMD_SETTINGS_H
#define RSPAMD_SETTINGS_H

#include "config.h"
#include "main.h"

struct rspamd_settings {
	GHashTable *metric_scores;			/**< hash table of metric require scores for this setting		*/
	GHashTable *reject_scores;			/**< hash table of metric reject scores for this setting		*/
	GHashTable *metric_actions;			/**< hash table of metric actions for this setting				*/
	GHashTable *factors;				/**< hash table of new factors for this setting			*/
	GHashTable *whitelist;				/**< hash table of whitelist for this setting			*/
	GHashTable *blacklist;				/**< hash table of whitelist for this setting			*/
	gchar *statfile_alias;				/**< alias for statfile used							*/
	gboolean want_spam;					/**< if true disable rspamd checks						*/
	gint ref_count;						/**< reference counter									*/
};


/*
 * Read settings from specified path
 */
gboolean read_settings (const gchar *path, struct config_file *cfg, GHashTable *table);

/*
 * Init configuration structures for settings
 */
void init_settings (struct config_file *cfg);

/*
 * Check scores settings
 */
gboolean check_metric_settings (struct metric_result *res, double *score, double *rscore);

/*
 * Check actions settings
 */
gboolean check_metric_action_settings (struct worker_task *task, struct metric_result *res, double score, enum rspamd_metric_action *result);

/*
 * Check individual weights for settings
 */
gboolean check_factor_settings (struct metric_result *res, const gchar *symbol, double *factor);

/*
 * Check want_spam flag
 */
gboolean check_want_spam (struct worker_task *task);

/*
 * Search settings for metric and store pointers to settings into metric_result structure
 */
gboolean apply_metric_settings (struct worker_task *task, struct metric *metric, struct metric_result *res);

#endif