tags:

views:

137

answers:

3

Hi,

I have a web server that runs my web application.

If I want to outsource my email to another provider, is it possible if they are on their on network/data center?

+3  A: 

Yes. To do this, you will need access to the DNS records for your domain. The MX record allows you to set up a mail server that's separate from the web server.

Google offers a service that will manage your domain's email through GMail, and the instructions on how to reconfigure your DNS for this service can be found here.

Kyle Cronin
A: 

Google Apps does just that.

t3mujin
+1  A: 

It is possible no matter where they are located, as long as you have control of your DNS records. I run many sites where the web server is located in our building and the mail server is at the customer's own site, connected with via an unrelated ISP. In one case the web server is in the USA, and the mail server is in the UK.

The DNS records can be on a different server again. Some registrars include editing DNS records in their interface, others just let you set the DNS to another server.

The records that determine the e-mail server are called MX records. They take the name of the mail server (not it's IP address). The records that turn names to IP addresses are called A records - you use these for "www" etc.

rjmunro