SPF: remove the deprecated "err_temp" and "err_perm" result names
authorJeremy Harris <jgh146exb@wizmail.org>
Mon, 26 Mar 2018 12:49:52 +0000 (13:49 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Mon, 26 Mar 2018 12:49:52 +0000 (13:49 +0100)
doc/doc-docbook/spec.xfpt
doc/doc-txt/ChangeLog
src/src/spf.c

index 814afc1ebe5810079e501175398a4df6467f9393..2dbe6d2d34b14112e0ad9e18f3718c2bbb87856e 100644 (file)
@@ -39349,18 +39349,11 @@ its domain as well.  This should be treated like "none".
 
 .vitem &%permerror%&
 This indicates a syntax error in the SPF record of the queried domain.
-You may deny messages when this occurs. (Changed in 4.83)
+You may deny messages when this occurs.
 
 .vitem &%temperror%&
 This indicates a temporary error during all processing, including Exim's
 SPF processing.  You may defer messages when this occurs.
-(Changed in 4.83)
-
-.vitem &%err_temp%&
-Same as permerror, deprecated in 4.83, will be removed in a future release.
-
-.vitem &%err_perm%&
-Same as temperror, deprecated in 4.83, will be removed in a future release.
 .endlist
 
 You can prefix each string with an exclamation mark to  invert
index 651508b7c62e21c57aa2f3eaff4858aefdf28cf1..8e9ef4283f37c8a2bf013b23eae3cb073990d430 100644 (file)
@@ -174,6 +174,10 @@ HS/03 Set a handler for SIGTERM and call exit(3) if running as PID 1. This
 JH/32 Bug 2258: Fix spool_wireformat in combination with LMTP transport.
       Previously the "final dot" had a newline after it; ensure it is CR,LF.
 
+JH/33 SPF: remove support for the "spf" ACL condition outcome values "err_temp"
+      and "err_perm", deprecated since 4.83 when the RFC-defined words
+      "temperror" and "permerror" were introduced.
+
 
 Exim version 4.90
 -----------------
index 0f0a05d4dcddd40a2994290052fc0e969d3a9682..a203c07baa8b0d70ed4fdb9737f1131d1733a300 100644 (file)
@@ -22,8 +22,6 @@ static spf_result_id spf_result_id_list[] = {
   { US"fail",          3 },
   { US"softfail",      4 },
   { US"none",          5 },
-  { 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 */
 };