git://git.exim.org
/
users
/
heiko
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
00916a9
)
Fix order of results in spf_result_id_list table conforming to lib version 1.2.x
author
Tom Kistner
<tom@duncanthrax.net>
Fri, 24 Jun 2005 08:36:48 +0000
(08:36 +0000)
committer
Tom Kistner
<tom@duncanthrax.net>
Fri, 24 Jun 2005 08:36:48 +0000
(08:36 +0000)
src/src/spf.h
patch
|
blob
|
history
diff --git
a/src/src/spf.h
b/src/src/spf.h
index 30583f44066d2fd6137ec0331498d71a11934fbf..4338fd8e6bfd5745a880ac18161f4488a732e7bf 100644
(file)
--- 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 *
/*************************************************
* 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[] = {
/* 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);
};
static int spf_result_id_list_size = sizeof(spf_result_id_list)/sizeof(spf_result_id);