I need to relay email in sendmail as follows
- Host example.mail.protection.outlook.com
- Port 2525
- No authentication
- No SSL
I know I need to set the following in the sendmail.mc file:
define(`SMART_HOST', `example.mail.protection.outlook.com')dnl
If I needed to change ports, do I just do the following:
define(`SMART_HOST', `example.mail.protection.outlook.com:2525')dnl
I assume if I don't specify a username/password then there is no authentication.
How do I ensure that TLS is disabled?