Thanks, I am pretty sure that is the problem.
I have put the attached patch into CVS and
it should appear in the next version of both
the debian package and upstream.
--
Horms
Index: ChangeLog
===================================================================
RCS file: /cvsroot/perdition/perdition/ChangeLog,v
retrieving revision 1.229
diff -u -r1.229 ChangeLog
--- ChangeLog 11 Jan 2005 08:03:07 -0000 1.229
+++ ChangeLog 11 Jan 2005 08:08:44 -0000
@@ -25,6 +25,8 @@
- When add_domain is used, allow the depth to which the domain
name has leading levels stripped.
- Fix gcc-4.0 compile problem. Andreas Jochens
+ - Removed bogus loging that occurs before the logger is
+ fully intialised when debug is enabled. Roberto Suarez Soto
----------------------------------------------------------------------
Index: perdition/config_file.c
===================================================================
RCS file: /cvsroot/perdition/perdition/perdition/config_file.c,v
retrieving revision 1.20
diff -u -r1.20 config_file.c
--- perdition/config_file.c 23 Mar 2004 02:21:45 -0000 1.20
+++ perdition/config_file.c 11 Jan 2005 08:08:45 -0000
@@ -58,8 +58,11 @@
return;
}
+ /* Removed as this breaks SSL + inetd mode configurations
+ * and is generally bogus
VANESSA_LOGGER_DEBUG_RAW_UNSAFE("Reading configuration file: \"%s\"",
filename);
+ */
a=vanessa_config_file_read(filename, 0);
if(!a) {
return;