--- index.c 2000/12/13 15:35:14 1.2
+++ index.c 2000/12/15 15:48:00 1.3
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/index.c,v $
- $Revision: 1.2 $
+ $Revision: 1.3 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -45,9 +45,6 @@
struct dirent * entry;
unsigned int entry_num;
- debug((DEBUG_COMMAND, 3, "GenIndex(\"%s\", \"%s\") with default list \"%s\".",
- param1, param2, defaultlist));
-
address = (MailStruct->Reply_To) ? MailStruct->Reply_To : MailStruct->From;
/* Initialize internal stuff. */
@@ -96,14 +93,10 @@
continue;
if (isValidListName(entry->d_name) == FALSE)
continue;
- debug((DEBUG_COMMAND, 5, "Found entry \"lists/%s\".", entry->d_name));
ListConfig = getListConfig(entry->d_name);
- if (ListConfig->showonindex == FALSE) {
- debug((DEBUG_COMMAND, 5, "List \"%s\" won't appear on the index.",
- entry->d_name));
+ if (ListConfig->showonindex == FALSE)
continue;
- }
entry_num++;
/* Print stuff to the mail. */
|