X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Freadconf.c;h=c62235916328e62ff46f5ad3f24359389cb325be;hb=5901f0abfe16545a81e820cd9816e830287776a7;hp=f5e895ac65378fec5af29706d63c67bfc1ffe72c;hpb=f1e5fef536bdc2c5d84c4bc7852d6e948253ccaf;p=exim.git diff --git a/src/src/readconf.c b/src/src/readconf.c index f5e895ac6..c62235916 100644 --- a/src/src/readconf.c +++ b/src/src/readconf.c @@ -1,5 +1,3 @@ -/* $Cambridge: exim/src/src/readconf.c,v 1.45 2010/06/12 17:56:32 jetmore Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ @@ -218,6 +216,7 @@ static optionlist optionlist_config[] = { { "dns_ipv4_lookup", opt_stringptr, &dns_ipv4_lookup }, { "dns_retrans", opt_time, &dns_retrans }, { "dns_retry", opt_int, &dns_retry }, + { "dns_use_edns0", opt_int, &dns_use_edns0 }, /* This option is now a no-op, retained for compability */ { "drop_cr", opt_bool, &drop_cr }, /*********************************************************/ @@ -3112,6 +3111,11 @@ if (*pid_file_path != 0) pid_file_path = s; } +/* Set default value of process_log_path */ + +if (process_log_path == NULL || *process_log_path =='\0') + process_log_path = string_sprintf("%s/exim-process.info", spool_directory); + /* Compile the regex for matching a UUCP-style "From_" line in an incoming message. */