On Wed, 19 Dec 2001, Sheldon Hearn wrote:
> 2001-12-19 00:48:11 16GSjy-000EKW-00 unknown named list "+local_domains"
We have now resolved this. It is a bug in the code of 3.951 and 3.952.
If any Exim 4 testers hit this problem, you need the patch below.
--
Philip Hazel University of Cambridge Computing Service,
ph10@??? Cambridge, England. Phone: +44 1223 334714.
*** exim-3.952/src/readconf.c Tue Dec 18 12:04:49 2001
--- readconf.c Thu Dec 20 13:50:56 2001
***************
*** 1991,1996 ****
--- 1991,1997 ----
while (isalnum(*s) || *s == '_') s++;
t = store_get(sizeof(tree_node) + s-ss);
Ustrncpy(t->name, ss, s-ss);
+ t->name[s-ss] = 0;
while (isspace(*s)) s++;
if (!tree_insertnode(anchorp, t))