X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/8ddef6917dd85f3da6ea2ccdb1d6734b78aee521..9c695f6d10bd63bd44608bd01f0073fd4c7dd6e6:/src/src/spf.c diff --git a/src/src/spf.c b/src/src/spf.c index 4f0094fc4..7167f5778 100644 --- a/src/src/spf.c +++ b/src/src/spf.c @@ -3,7 +3,7 @@ *************************************************/ /* Experimental SPF support. - Copyright (c) Tom Kistner 2004 + Copyright (c) Tom Kistner 2004 - 2014 License: GPL */ /* Code for calling spf checks via libspf-alt. Called from acl.c. */ @@ -19,8 +19,10 @@ static spf_result_id spf_result_id_list[] = { { US"fail", 3 }, { US"softfail", 4 }, { US"none", 5 }, - { US"temperror", 6 }, - { US"permerror", 7 } + { US"err_temp", 6 }, /* Deprecated Apr 2014 */ + { US"err_perm", 7 }, /* Deprecated Apr 2014 */ + { US"temperror", 6 }, /* RFC 4408 defined */ + { US"permerror", 7 } /* RFC 4408 defined */ }; SPF_server_t *spf_server = NULL;