implemented rewriting of "… (from <sender>)" in subject, prepared open flag
This commit is contained in:
@@ -289,10 +289,11 @@ public class Web extends TemplateServlet {
|
||||
|
||||
if (!error){
|
||||
try {
|
||||
list.forwardFrom(Util.getCheckbox(req, "forward_from"));
|
||||
list.forwardAttached(Util.getCheckbox(req, "forward_attached"));
|
||||
list.hideReceivers(Util.getCheckbox(req, "hide_receivers"));
|
||||
list.replyToList(Util.getCheckbox(req, "reply_to_list"));
|
||||
list.forwardFrom(Util.getCheckbox(req, "forward_from"))
|
||||
.forwardAttached(Util.getCheckbox(req, "forward_attached"))
|
||||
.hideReceivers(Util.getCheckbox(req, "hide_receivers"))
|
||||
.replyToList(Util.getCheckbox(req, "reply_to_list"))
|
||||
.open(Util.getCheckbox(req,"open"));
|
||||
data.put(NOTES,t("Sucessfully updated MailingList!"));
|
||||
} catch (SQLException e){
|
||||
LOG.warn("Failed to update MailingList:",e);
|
||||
|
||||
Reference in New Issue
Block a user