The email provider is Microsoft 365, I’ve gone through the steps of enabling SMTP Auth, etc. and have tested all the details are working fine via SMTP Test Tool but still get this error in Noloco for some reason.
Hey @darragh, the port number (587) is definitely correct, 25 and 465 both time out which is expected. Unfortunately, Microsoft 365 requires a secure connection so won’t work with that unticked either.
@EthosLuke this Stack Overflow posts suggests you should have http URL for the host instead of https
The https:// is wrong, it should be http:// . The proxy itself should be accessed by HTTP and not HTTPS even though the target URL is HTTPS. The proxy will nevertheless properly handle HTTPS connection and keep the end-to-end encryption. See HTTP CONNECT method for details how this is done
You can/should probably only be putting in a domain such as mail.example.com instead of a URL such as https://mail.example.com
Aha… Yep that has worked, when I originally tried with secure turned off I also changed the port to 25 which didn’t work. Port 587 with secure connection off works!