You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently swiftmailer tries to HELO as [::1] causing a rejection, it'd be good if server_name could be specified in .env which consequently runs $transport->setLocalDomain($server_name);
Additionally, settings for sender address and an email_base_url would be very useful to set in .env as emails are sent as BookStack mail@bookstackapp.com, and if a reverse proxy is in place the email url contains incorrect/internal links (e.g. http://localhost:8080/password/reset/......)
The text was updated successfully, but these errors were encountered:
Part of that is #88 and a function of Laravel. Laravel does not inherently trust proxies. You need to add in an extra layer that BSA doesn't currently include if you want BSA behind a proxy. Then your email links will be correct.
Currently swiftmailer tries to HELO as [::1] causing a rejection, it'd be good if server_name could be specified in .env which consequently runs $transport->setLocalDomain($server_name);
Additionally, settings for sender address and an email_base_url would be very useful to set in .env as emails are sent as BookStack mail@bookstackapp.com, and if a reverse proxy is in place the email url contains incorrect/internal links (e.g. http://localhost:8080/password/reset/......)
The text was updated successfully, but these errors were encountered: