Report TRUSTED_CONFIG_LIST & WHITELIST_D_MACROS.
authorPhil Pennock <pdp@exim.org>
Sun, 23 Jan 2011 08:26:09 +0000 (03:26 -0500)
committerPhil Pennock <pdp@exim.org>
Sun, 23 Jan 2011 08:28:07 +0000 (03:28 -0500)
When invoked { exim -d -bV } show these build-time options that affect
what can be done.

src/src/exim.c

index c8a5da12a70ae6cbbeb46eb0ca5657487e407926..f1c3199c31793ac074be60e62eef0363779c20a7 100644 (file)
@@ -942,6 +942,17 @@ DEBUG(D_any) do {
       lookup_list[i]->version_report(f);
     }
 
       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);
 }
 
 } while (0);
 }