diff --git a/subscribe.c b/subscribe.c index f0aff77..f03aba0 100644 --- a/subscribe.c +++ b/subscribe.c @@ -179,7 +179,7 @@ AddAddress(struct Mail * MailStruct, 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 @@ AddAddress(struct Mail * MailStruct, 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); diff --git a/unsubscribe.c b/unsubscribe.c index d9122b7..594d830 100644 --- a/unsubscribe.c +++ b/unsubscribe.c @@ -179,7 +179,7 @@ DeleteAddress(struct Mail * MailStruct, 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 @@ DeleteAddress(struct Mail * MailStruct, 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);