SMTP Relay option
N
Nick E.
Please give us ability to not require SMTP authentication within SMTP Settings. We should be able to use a good old fashioned EMail Relay if we want. Microsoft 365 does not give us a good out email process directly other than Exchange Connectors, which do not require authentication or support it. Microsoft Exchange Online HVE only supports internal email delivery. Otherwise we must go use another SMTP delivery solution just to get email out of Hudu.
R
RK IT
Yes, this is a flaw to not have an anonymous relay option. Without this you need to burn a license and have a user with password hanging out there that could be compromised because you can't have 2fa on it. That makes it a security issue too. Shouldnt be to hard to skip over the SMTP commands for AUTH when a checkbox is is selected...
(amateur sudu-code follows) :)
Send EHLO
If (use_Anon_checkbox != true)
{
run normal SMTP commands
}
Else
{
runs same commands without the AUTH commands
}