Skip to content

Commit

Permalink
Merge branch '2024.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Feb 5, 2025
2 parents 858893f + b25e5ba commit 44b217d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/ansible/roles/tinedockercompose/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tinedockercompose_tine_image: "tinegroupware/tine:2023"
tinedockercompose_tine_image: "tinegroupware/tine:2024"
tinedockercompose_tinesetupuser: "tinesetup"
tinedockercompose_tinesetuppw: "movemetovault"
tinedockercompose_tinesetuphtpasswd: "setup:$$apr1$$JhCtViTh$$k15DH.HvNR5hZ66Ew5aTH/" #setuppw
Expand Down
8 changes: 4 additions & 4 deletions tine20/Addressbook/js/MailinglistPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ Tine.Addressbook.MailinglistPanel = Ext.extend(Ext.Panel, {
this.isMailinglistCheckbox.checked = this.isMailingList;
const sieveReplyTo = record?.data?.xprops?.sieveReplyTo ?? 'sender';
const sieveReplyToEmail = record?.data?.email;

this.replyToComboBox.setValue(sieveReplyTo);
this.emailField.setValue(sieveReplyToEmail);
this.emailField.value = sieveReplyToEmail;

Object.entries(this.checkboxes).forEach(([key, checkbox]) => {
checkbox.checked = _.get(record, 'data.xprops.' + key, false);
Expand All @@ -149,10 +153,6 @@ Tine.Addressbook.MailinglistPanel = Ext.extend(Ext.Panel, {

this.onMailinglistCheck(null, this.isMailingList);
this.setReadOnly(!hasRequiredGrant || !hasRight);

this.replyToComboBox.setValue(sieveReplyTo);
this.emailField.setValue(sieveReplyToEmail);
this.emailField.value = sieveReplyToEmail;
});
},

Expand Down

0 comments on commit 44b217d

Please sign in to comment.