Assume your domain is mydomain.com and you have setup mail redirection to your mail server mail.mydomain.com at port 26. The followings are the steps to take to make sure mail redirection for your domain is working.
Step 1. First you need to check if your mail server is setup correctly; otherwise, the emails won't be taken by your server. Here we assume you have already setup email address info@mydomain.com.
You open a DOS/Linux shell prompt and use telnet command to telnet to your mail server at port 26. Note: the bold words are what you type.
|
|
c:>> telnet mail.mydomain.com 26
|
|
Note: The words in bold are what you need to type. Others are responses by either the command or the server. For the rcpt to command above, you should get "250 2.1.5 Recipient OK"; otherwise, it indicates that the server may have problem. Other possilbe the server may reply are the followings:
rcpt to:<non-existemail@mydomain.com>
The first reply indicates that the email server is configure to take email for mydomain.com but the email address does not exist. The second reply indicates the email server is not setup to take email for that domain. |
Step 2. Make sure your domain is pointing the MX(mail exchangers) to smtp.dnsexit.com. The MX should get changed automatically when signing up the service. However, if your domain is not using our name servers, you will need to go to your DNS server to setup that manually.
You open a DOS/Linux shell prompt and use the following nslookup command to change what are the MX for the domain
|
|
c:>> nslookup -type=mx yourdomain.com Non-authoritative answer: yourdomain.com mail exchanger = 10 smtp.dnsexit.com. |
|
You should see the smtp server smtp.dnsexit.com as the only MX showing up after the dommand. |
Step 3. After the above checking. The mail redirection for your domain should work already. You may send an email to your address to see if you receive the email. Or, you may still want to check if smtp.dnsexit.com take your email correctly with similar telnet command as step 1.
You open a DOS/Linux shell prompt and use the following telnet command to telnet to smtp.dnsexit.com at port 25. Note: the bold words are what you need to type. Assume your domain is mydomain.com.
|
|
c:>> telnet smtp.dnsexit.com 25
|
|
Note: The words in bold are what you need to type. Others are responses by either the command or the server.
For the rcpt to command above, you should get "250 2.1.5 Recipient OK"; otherwise, it indicates that smtp.dnsexit.com may not configured configured correctly for your domain (though this should not happen). Or in other words, if you see the following message:
It indicates smtp.dnsexit.com is not configured to take email for your domain. You should contact us to get support. |