summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTodd Lyons <tlyons@exim.org>2014-03-06 20:55:19 -0800
committerTodd Lyons <tlyons@exim.org>2014-03-06 20:56:00 -0800
commit8ddef6917dd85f3da6ea2ccdb1d6734b78aee521 (patch)
tree745939d47f551fcc5c355ddea18384687c329fa0 /src
parent770747fd28008931d72a9f87be83286eaf626a95 (diff)
Change strings of SPF result to conform to RFC 4408
Introduces a small backwards incompatible change to two results, err_temp to temperror and err_perm to permerror.
Diffstat (limited to 'src')
-rw-r--r--src/src/spf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/spf.c b/src/src/spf.c
index 4bbabbf4c..4f0094fc4 100644
--- a/src/src/spf.c
+++ b/src/src/spf.c
@@ -19,8 +19,8 @@ static spf_result_id spf_result_id_list[] = {
{ US"fail", 3 },
{ US"softfail", 4 },
{ US"none", 5 },
- { US"err_temp", 6 },
- { US"err_perm", 7 }
+ { US"temperror", 6 },
+ { US"permerror", 7 }
};
SPF_server_t *spf_server = NULL;