--- unsubscribe.c 2000/12/13 15:35:14 1.2
+++ unsubscribe.c 2000/12/15 15:48:00 1.3
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/unsubscribe.c,v $
- $Revision: 1.2 $
+ $Revision: 1.3 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -38,9 +38,6 @@
char * p;
char * list;
- debug((DEBUG_COMMAND, 3, "DeleteAddress(\"%s\", \"%s\") with default list \"%s\".",
- param1, param2, defaultlist));
-
/* Try to find out, which parameter is what. */
if (param1 != NULL) {
@@ -75,8 +72,6 @@
sprintf(envelope, "%s-owner@%s", listname, ListConfig->fqdn);
originator = (MailStruct->Reply_To) ? MailStruct->Reply_To : MailStruct->From;
- debug((DEBUG_COMMAND, 1, "Unsubscribing \"%s\" to list \"%s\".", address, listname));
-
/* Check whether the request is authorized at all. */
if (isValidAdminPassword(getPassword(), listname) == FALSE) {
@@ -214,11 +209,6 @@
if (isSubscribed(listname, address, &list, &p, FALSE) == FALSE) {
- /* Address is not subscribed. */
-
- debug((DEBUG_COMMAND, 2, "\"%s\" is not subscribed to list \"%s\".",
- address, listname));
-
/* Notify the originator, that the address is not subscribed at
all. */
|