Index: ossp-pkg/petidomo/subscribe.c RCS File: /v/ossp/cvs/ossp-pkg/petidomo/subscribe.c,v rcsdiff -q -kk '-r1.17' '-r1.18' -u '/v/ossp/cvs/ossp-pkg/petidomo/subscribe.c,v' 2>/dev/null --- subscribe.c 2001/01/19 14:18:43 1.17 +++ subscribe.c 2001/01/19 14:28:08 1.18 @@ -179,7 +179,7 @@ if (isSubscribed(listname, address, NULL, NULL, FALSE) == TRUE) { - syslog(LOG_INFO, "%s: Attempt to subscribe \"%s\" to list \"%s\" rejected because the " \ + syslog(LOG_INFO, "%s: Attempt to subscribe \"%s\" to list \"%s\" rejected, because the " \ "address is already on the list.", MailStruct->From, address, listname); /* Notify the originator, that the address is already a @@ -215,7 +215,7 @@ char* command; char* cookie; - syslog(LOG_INFO, "%s: Attempt to subscribe \"%s\" to list \"%s\" deferred because the " \ + syslog(LOG_INFO, "%s: Attempt to subscribe \"%s\" to list \"%s\" deferred, because the " \ "request must be acknowledged first.", MailStruct->From, address, listname); command = text_easy_sprintf("subscribe %s %s", address, listname); Index: ossp-pkg/petidomo/unsubscribe.c RCS File: /v/ossp/cvs/ossp-pkg/petidomo/unsubscribe.c,v rcsdiff -q -kk '-r1.16' '-r1.17' -u '/v/ossp/cvs/ossp-pkg/petidomo/unsubscribe.c,v' 2>/dev/null --- unsubscribe.c 2001/01/19 14:18:43 1.16 +++ unsubscribe.c 2001/01/19 14:28:08 1.17 @@ -179,7 +179,7 @@ if (isSubscribed(listname, address, &list, &p, FALSE) == FALSE) { - syslog(LOG_INFO, "%s: Attempt to unsubscribe \"%s\" from list \"%s\" rejected because the " \ + syslog(LOG_INFO, "%s: Attempt to unsubscribe \"%s\" from list \"%s\" rejected, because the " \ "address is not on the list.", MailStruct->From, address, listname); /* Notify the originator, that the address is not subscribed at @@ -218,7 +218,7 @@ char* command; char* cookie; - syslog(LOG_INFO, "%s: Attempt to unsubscribe \"%s\" from list \"%s\" deferred because the " \ + syslog(LOG_INFO, "%s: Attempt to unsubscribe \"%s\" from list \"%s\" deferred, because the " \ "request must be acknowledged first.", MailStruct->From, address, listname); command = text_easy_sprintf("unsubscribe %s %s", address, listname);