blob: 74fdb24fd3b3f80ea76f8f1c1d997892a77613c2 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#ifndef RSPAMD_MODULE_SURBL
#define RSPAMD_MODULE_SURBL
#include "config.h"
#include "acism.h"
#include "main.h"
#define DEFAULT_REDIRECTOR_PORT 8080
#define DEFAULT_SURBL_WEIGHT 10
#define DEFAULT_REDIRECTOR_CONNECT_TIMEOUT 1.0
#define DEFAULT_REDIRECTOR_READ_TIMEOUT 5.0
#define DEFAULT_SURBL_MAX_URLS 1000
#define DEFAULT_SURBL_URL_EXPIRE 86400
#define DEFAULT_SURBL_SYMBOL "SURBL_DNS"
#define DEFAULT_SURBL_SUFFIX "multi.surbl.org"
#define SURBL_OPTION_NOIP 1
#define MAX_LEVELS 10
struct surbl_ctx {
struct module_ctx ctx;
guint16 weight;
gdouble connect_timeout;
gdouble read_timeout;
guint max_urls;
guint url_expire;
GList *suffixes;
gchar *metric;
const gchar *tld2_file;
const gchar *whitelist_file;
const gchar *redirector_symbol;
GHashTable **exceptions;
GHashTable *whitelist;
GHashTable *redirector_hosts;
void *redirector_map_data;
ac_trie_t *redirector_trie;
GArray *redirector_ptrs;
guint use_redirector;
struct upstream_list *redirectors;
rspamd_mempool_t *surbl_pool;
};
struct suffix_item {
const gchar *suffix;
const gchar *symbol;
guint32 options;
GList *bits;
};
struct dns_param {
struct rspamd_url *url;
struct rspamd_task *task;
gchar *host_resolve;
struct suffix_item *suffix;
};
struct redirector_param {
struct rspamd_url *url;
struct rspamd_task *task;
struct upstream *redirector;
struct rspamd_http_connection *conn;
gint sock;
GHashTable *tree;
struct suffix_item *suffix;
};
struct surbl_bit_item {
guint32 bit;
gchar *symbol;
};
#endif
|