altered text

This commit is contained in:
2022-04-22 14:29:22 +02:00
parent c841a8f873
commit 72e8f4755c
2 changed files with 2 additions and 2 deletions

View File

@@ -534,7 +534,7 @@ public class MailingList implements MessageHandler {
smtp.send(email(), name(), receivers,subject,text);
subject = t("Your message to {} was rejected!",email());
text = t("You have tried to send a message to the list '{}', which failed. This is because you are not a member of this list.\n",name());
text = t("You have tried to send a message to the list '{}', which failed. This is because you are not a (privileged) member of this list.\n",name());
if (hasState(STATE_PUBLIC)) text += t("You may go to {} and subscribe to the list, then try again.",Configuration.instance().baseUrl());
smtp.send(email(), name(), senderEmail,subject,text);
} catch (SQLException e){