08-08-07 06:21 PM
> Now, we want to have some asp.net sites that will require email to be
> sent from them. I know I need to install the SMTP service, but can
> someone point me to a tutorial on how to setup the server for multiple
> domains to be able to relay emails?
It's all in the on-line help.
Briefly: at the server level Access Control-Authentication, allow Basic or
Integrated Windows authentication. The server will already,
out-of-the-box, allow authenticated sessions to relay mail to remote
domains. Create a local user for each of your .NET sites (for security
purposes, do not use the same user for all). Set up each site to auth as
its corresponding user when connecting to the mail server on localhost.
Alternately, for a much less secure setup, at the server level Access
Control-Relay, allow sessions from 127.0.0.1 to relay mail. All websites,
or all applications running on the box, will then be able to relay mail
when connecting to the mail server on localhost.
> Do I need POP installed?
No.
--Sandy
[ Post a follow-up to this message ]
|