Fixed the spelling of the newly added syslog messages.

This commit is contained in:
Peter Simons 2001-01-19 14:28:08 +00:00
parent 89c8fa617c
commit c2fde848d9
2 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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);