summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);