Browse Source

altered text

drop_old_mail
Stephan Richter 3 years ago
parent
commit
72e8f4755c
  1. 2
      pom.xml
  2. 2
      src/main/java/de/srsoftware/widerhall/data/MailingList.java

2
pom.xml

@ -6,7 +6,7 @@
<groupId>org.example</groupId> <groupId>org.example</groupId>
<artifactId>Widerhall</artifactId> <artifactId>Widerhall</artifactId>
<version>0.2.18</version> <version>0.2.19</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

2
src/main/java/de/srsoftware/widerhall/data/MailingList.java

@ -534,7 +534,7 @@ public class MailingList implements MessageHandler {
smtp.send(email(), name(), receivers,subject,text); smtp.send(email(), name(), receivers,subject,text);
subject = t("Your message to {} was rejected!",email()); 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()); 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); smtp.send(email(), name(), senderEmail,subject,text);
} catch (SQLException e){ } catch (SQLException e){

Loading…
Cancel
Save