--- help.c 2000/12/13 15:35:14 1.2
+++ help.c 2000/12/15 15:48:00 1.3
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/help.c,v $
- $Revision: 1.2 $
+ $Revision: 1.3 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -49,8 +49,6 @@
/* Send list's description back. */
- debug((DEBUG_COMMAND, 5, "Sending \"%s\" list \"%s\" description.",
- originator, param1));
ListConfig = getListConfig(param1);
sprintf(envelope, "%s-owner@%s", param1, MasterConfig->fqdn);
fh = vOpenMailer(envelope, originator, NULL);
@@ -86,8 +84,6 @@
/* List does not exist, I am afraid. */
- debug((DEBUG_COMMAND, 5, "Received HELP command for non-existing list \"%s\".",
- param1));
fh = vOpenMailer(envelope, originator, NULL);
if (fh == NULL) {
syslog(LOG_ERR, "Failed to send mail to \"%s\" regarding this request.",
@@ -123,7 +119,6 @@
/* Send help text to the originator. */
- debug((DEBUG_COMMAND, 5, "Sending helpfile to \"%s\".", originator));
fh = vOpenMailer(envelope, originator, NULL);
if (fh == NULL) {
syslog(LOG_ERR, "Failed to send mail to \"%s\" regarding this request.",
@@ -182,7 +177,6 @@
/* Send the help file out. */
- debug((DEBUG_COMMAND, 5, "Sending helpfile to \"%s\".", replyto));
fh = vOpenMailer(envelope, replyto, NULL);
if (fh == NULL) {
syslog(LOG_ERR, "Failed to send mail to \"%s\" regarding this request.", replyto);
|