blob: 9ea7d050ac2b79c50a87e8f58cfbac28ed17e4a3 (
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
|
#ifndef RSPAMD_SPF_H
#define RSPAMD_SPF_H
#include "config.h"
struct worker_task;
struct spf_record;
typedef void (*spf_cb_t)(struct spf_record *record, struct worker_task *task);
typedef enum spf_mech_e {
SPF_FAIL,
SPF_SOFT_FAIL,
SPF_PASS,
SPF_NEUTRAL
} spf_mech_t;
typedef enum spf_action_e {
SPF_RESOLVE_MX,
SPF_RESOLVE_A,
SPF_RESOLVE_PTR,
SPF_RESOLVE_REDIRECT,
SPF_RESOLVE_INCLUDE,
SPF_RESOLVE_EXISTS,
SPF_RESOLVE_EXP
} spf_action_t;
struct spf_addr {
union {
struct {
guint32 addr;
guint32 mask;
} normal;
GList *list;
} data;
gboolean is_list;
spf_mech_t mech;
gchar *spf_string;
};
struct spf_record {
gchar **elts;
gchar *cur_elt;
gint elt_num;
gint nested;
gint dns_requests;
GList *addrs;
gchar *cur_domain;
gchar *sender;
gchar *sender_domain;
gchar *local_part;
struct worker_task *task;
spf_cb_t callback;
gboolean in_include;
};
gboolean resolve_spf (struct worker_task *task, spf_cb_t callback);
gchar *get_spf_domain (struct worker_task *task);
#endif
|