summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Kistner <tom@duncanthrax.net>2005-06-24 08:36:48 +0000
committerTom Kistner <tom@duncanthrax.net>2005-06-24 08:36:48 +0000
commit7c41bb87ff1d49572cb18d4f9a1eb109b9ea0a85 (patch)
tree0a154ab1e384103d10d4b0404a6c5310d7831091 /src
parent00916a93c8f988c8b84d8c16c41dddc1755d6b7d (diff)
Fix order of results in spf_result_id_list table conforming to lib version 1.2.x
Diffstat (limited to 'src')
-rw-r--r--src/src/spf.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/src/spf.h b/src/src/spf.h
index 30583f440..4338fd8e6 100644
--- a/src/src/spf.h
+++ b/src/src/spf.h
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/spf.h,v 1.4 2005/05/24 08:15:02 tom Exp $ */
+/* $Cambridge: exim/src/src/spf.h,v 1.5 2005/06/24 08:36:48 tom Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -26,13 +26,14 @@ typedef struct spf_result_id {
/* must be kept in numeric order */
static spf_result_id spf_result_id_list[] = {
- { US"pass", 0 },
- { US"fail", 1 },
- { US"softfail", 2 },
- { US"neutral", 3 },
- { US"err_perm", 4 },
- { US"err_temp", 5 },
- { US"none", 6 }
+ { US"invalid", 0},
+ { US"neutral", 1 },
+ { US"pass", 2 },
+ { US"fail", 3 },
+ { US"softfail", 4 },
+ { US"none", 5 },
+ { US"err_temp", 6 },
+ { US"err_perm", 7 }
};
static int spf_result_id_list_size = sizeof(spf_result_id_list)/sizeof(spf_result_id);