aboutsummaryrefslogtreecommitdiff
path: root/src/spf.h
blob: ec170ef7114e1c1168cc19418db8d82cffccd168 (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
/* This file is part of Mailfromd.
   Copyright (C) 2007-2008, 2010-2011, 2015-2016 Sergey Poznyakoff

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>. */

#define SPF_MAX_TXT_REC   10
#define SPF_MAX_RECURSION 10

typedef enum spf_result {
	spf_none, 
	spf_neutral,
	spf_pass,
	spf_fail,
	spf_soft_fail,
	spf_temp_error,
	spf_perm_error
	
#define	max_spf_result (spf_perm_error+1)
} spf_result;

typedef struct {
	const char *ipstr;       /* Originator IP in textual form */
	const char *domain;      /* Sender domain */
	const char *sender;      /* Sender email */
	const char *helo_domain; /* HELO domain */  
	const char *my_domain;   /* My own domain name */ 
	const char *exp_prefix;  /* Explanation prefix (optional) */
} spf_query_t;

typedef struct {
	unsigned long ttl;   /* Minimal ttl */
	char *exp_text;      /* Explanation text */
	char *mech;          /* SPF mechanism that decided about the result */
} spf_answer_t;

spf_result spf_check_host(spf_query_t *query, spf_answer_t *ans);
spf_result spf_test_record(const char *rec,
			   spf_query_t *query, spf_answer_t *ans);
dns_status spf_lookup(const char *domain, char **txt, size_t maxtxt,
		      unsigned long *ttl, char *answer, size_t answer_size);

void spf_answer_free(spf_answer_t *ans);

Return to:

Send suggestions and report system problems to the System administrator.