diff options
author | Phil Pennock <pdp@exim.org> | 2011-01-23 03:26:09 -0500 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2011-01-23 03:28:07 -0500 |
commit | b70d25860f3e7dfe54ad69a5695a9bff7d380f08 (patch) | |
tree | 318e9419e0c24e2f73232a11d2d2c388a74c7da1 | |
parent | c0886197be901683f62380f720a006bb67ec26bd (diff) |
Report TRUSTED_CONFIG_LIST & WHITELIST_D_MACROS.
When invoked { exim -d -bV } show these build-time options that affect
what can be done.
-rw-r--r-- | src/src/exim.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/src/exim.c b/src/src/exim.c index c8a5da12a..f1c3199c3 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -942,6 +942,17 @@ DEBUG(D_any) do { lookup_list[i]->version_report(f); } +#ifdef WHITELIST_D_MACROS + fprintf(f, "WHITELIST_D_MACROS: \"%s\"\n", WHITELIST_D_MACROS); +#else + fprintf(f, "WHITELIST_D_MACROS unset\n"); +#endif +#ifdef TRUSTED_CONFIG_LIST + fprintf(f, "TRUSTED_CONFIG_LIST: \"%s\"\n", TRUSTED_CONFIG_LIST); +#else + fprintf(f, "TRUSTED_CONFIG_LIST unset\n"); +#endif + } while (0); } |