20121003 Bugfix: the postscreen_access_list feature was case-sensitive in the first character of permit, reject, etc. Reported by Francis Picabia. File: global/server_acl.c. *** ./src/global/server_acl.c- Fri Dec 23 21:13:31 2011 --- ./src/global/server_acl.c Wed Oct 3 10:04:58 2012 *************** *** 112,119 **** char *bp = saved_acl; char *acl; ! #define STREQ(x,y) ((*x) == (*y) && strcasecmp((x), (y)) == 0) ! #define STRNE(x,y) ((*x) != (*y) || strcasecmp((x), (y)) != 0) /* * Nested tables are not allowed. Tables are opened before entering the --- 112,119 ---- char *bp = saved_acl; char *acl; ! #define STREQ(x,y) (strcasecmp((x), (y)) == 0) ! #define STRNE(x,y) (strcasecmp((x), (y)) != 0) /* * Nested tables are not allowed. Tables are opened before entering the