Solved: User Invitation E-mail URL Using IP Address?
It looks like the URL passed into the invitation e-mail template is using the site's IP address rather than domain name. This causes a security warning in modern browsers as the SSL certificate is normally bound to the domain.
I can't see an obvious setting to correct this, any ideas welcome?
Okay so I traced this out in the source code, which lead me to the umbracoApplicationUrl attribute of the web.routing tag in Umbraco\Config\umbracoSettings.config.
Here you can manually assign the URL rather than rely on the code to decide when it receives the first web request. Not sure why it had picked the IP address, but overriding it with this configuration setting has now solved the problem, with well formed URL's in invitation e-mails.
Solved: User Invitation E-mail URL Using IP Address?
It looks like the URL passed into the invitation e-mail template is using the site's IP address rather than domain name. This causes a security warning in modern browsers as the SSL certificate is normally bound to the domain.
I can't see an obvious setting to correct this, any ideas welcome?
(Umbraco 7.10.4)
Okay so I traced this out in the source code, which lead me to the umbracoApplicationUrl attribute of the web.routing tag in Umbraco\Config\umbracoSettings.config.
Here you can manually assign the URL rather than rely on the code to decide when it receives the first web request. Not sure why it had picked the IP address, but overriding it with this configuration setting has now solved the problem, with well formed URL's in invitation e-mails.
is working on a reply...