-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Email account settings: Signature" and "Addressbooks" are not updated by "Save". #116
Comments
Hello, The issue with signature is a known one, it has already been corrected and the fix will be included in upcoming 9.8.1 release. To fix the issue on your installation, locate the following line in App.broadcastEvent('MailWebclient::ParseAccount::after', { account: this , data: oData }); and add the following code before it: ko.computed(function() {
const sSignature = this.signature()
const bUseSignature = this.useSignature()
const sFriendlyName = this.friendlyName()
const oIdentity = _.find(this.identities(), oIdentity => oIdentity.bAccountPart)
if (oIdentity) {
oIdentity.signature(sSignature)
oIdentity.useSignature(bUseSignature)
oIdentity.friendlyName(sFriendlyName)
}
}, this) You'll need to set "UseAppMinJs" to false in
This issue, however, wasn't among the known ones. I have reported it to the developers. Thanks. |
In WebMail Lite 9.8.0, the file is |
Thanks. Its works. |
Debian GNU/Linux 12 (bookworm)
PHP 8.2.24
apache2 2.4.62
afterlogic-lite 9.8.0
Hi!
To Reproduce:
I log into my user account.
It updates only after "F5".
The same effect when adding or editing an address book in "Manage address books".
The text was updated successfully, but these errors were encountered: