Page 1 of 1

How to setup mail.mydomain.com

PostPosted: Wed Sep 19, 2007 10:01 pm
by difner
I am running windows xp with apache and Ability mail server.
How can i setup the web mail so it will come up when i goto mail.mydomain.com

Thanks,
Alan

Re: How to setup mail.mydomain.com

PostPosted: Thu Sep 20, 2007 3:58 am
by sillyme
I think this is more of a DNS issue than mail server. You will need to add another A record to your DNS called mail.domain.com that points to your servers IP address just like you did for the http://www.domain.com A record.

The webmail service is pre set to monitor port 8000 so HTTP://mail.domain.com:8000 should pull up the webmail login screen. If it does not, check the template assignments in the ability mail settings.

I do not know that much about Apache but on IIS I had to move its smtp service to a port other than 25 so it would not compete with Ability.

If you do not have a static IP you will lose connection to both your mail and web server if your IP changes. http://www.no-ip.com/ is one company that offers a solution for those running servers on a dynamic IP.

Good Luck

Re: How to setup mail.mydomain.com

PostPosted: Thu Sep 20, 2007 6:02 am
by difner
Thanks for the help
That worked

Re: How to setup mail.mydomain.com

PostPosted: Thu Sep 20, 2007 9:57 am
by Millennium
You can use the ProxyPass directive of Apache in your virtualHost section.

<VirtualHost *>
ServerAdmin admin@domain.com
ServerName mail.domain.com
ServerAlias webmail.domein.com
ProxyPass / http://localhost:8000/
</VirtualHost>

Re: How to setup mail.mydomain.com

PostPosted: Thu Sep 20, 2007 3:54 pm
by sillyme
Great, I love it when it looks like I know something (lol).

since you are using an alias be sure that al the lookups in the wild that are used for verification that your server exists work. Some places like godaddy are being very very over the edge with blocking IPs

Good luck