#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 {
uint32_t addr;
uint32_t mask;
spf_mech_t mech;
char *spf_string;
};
struct spf_record {
char **elts;
char *cur_elt;
int elt_num;
int nested;
int dns_requests;
GList *addrs;
char *cur_domain;
char *sender;
char *sender_domain;
char *local_part;
struct worker_task *task;
spf_cb_t callback;
gboolean in_include;
};
gboolean resolve_spf (struct worker_task *task, spf_cb_t callback);
#endif
ue='3rdparty/justinrainbow/json-schema'>3rdparty/justinrainbow/json-schema
Nextcloud server, a safe home for all your data: https://github.com/nextcloud/server | www-data |
blob: 53e29ec47717dd5d2924d7b2a74d48db262154f5 (
plain)