Hi, my cluster has an xpack.notification.email.account
configuration in its elasticsearch.yml
file, and email notifications are working fine with it, but when I update the "from" address using the Cluster Update Settings API like this (the email profile is called account):
PUT {
"persistent": {
"xpack.notification.email.account.account.email_defaults.from": "NEW_ADDRESS@HOST"
}
}
I can see that the setting was applied when running GET
on the API but new notifications still come from the previous email. Why doesn't the new email address get used?