I made it work with this
The smtp is provided by a local national hosting site
If I try with my Google Workspace account, same configuration, it doesn’t work
One thing I noticed, but not sure if it’s useful, is that I get the “must issue STARTTLS command” if I write the variables like this
OR_EMAIL_USER: my@email.com
Instead if I write it as
OR_EMAIL_USER: ${OR_EMAIL_USER:-my@email.com}
I get the error
Error processing from REALM_RULESET - NOTIFICATION_HANDLER_CONFIG_ERROR (Handler is not valid: email): Notification{name=‘null’, message=org.openremote.model.notification.EmailNotificationMessage@1e26a3b7, repeatFrequency=null, repeatInterval=‘null’, targets=[Target{type=USER, id=xxxx}]}
I’m wondering if he’s getting some values from somewhere else that bugs it? From what I understood the parenthesis should mean "use the variable, otherwise by default value is the one following :- "