Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
mail:best-practices-guide [2010-12-21 20:27:18]
garrett.plasky created
mail:best-practices-guide [2015-09-09 17:35:39]
rory.blanchard [rDNS]
Line 15: Line 15:
 Proper Reverse DNS or rDNS records are essential to mail deliverability. If one standard has been agreed upon the most by the industry, it is the existence of matching forward and reverse DNS records. In a default setup, mail will flow out of your server via the base IP (usually eth0 or "Default Adapter"). This IP should have a forward DNS record (A record) associated with it that gives it a name. An example is below for a host named //test.example.com// (test for short): Proper Reverse DNS or rDNS records are essential to mail deliverability. If one standard has been agreed upon the most by the industry, it is the existence of matching forward and reverse DNS records. In a default setup, mail will flow out of your server via the base IP (usually eth0 or "Default Adapter"). This IP should have a forward DNS record (A record) associated with it that gives it a name. An example is below for a host named //test.example.com// (test for short):
  
-<sxh plain>test.example.com.              IN      A             1.2.3.4</sxh>+<code>test.example.com.              IN      A             1.2.3.4</code>
  
 This is your forward record that resolves a name to an IP. You also want a reverse record that maps your IP back to your hostname. This looks like: This is your forward record that resolves a name to an IP. You also want a reverse record that maps your IP back to your hostname. This looks like:
  
-<sxh plain>4.3.2.1.in-addr.arpa.          IN      PTR           test.example.com.</sxh>+<code>4.3.2.1.in-addr.arpa.          IN      PTR           test.example.com.</code>
  
 To set this up using our VPS service, log into your [[https://manager.provps.com|VPS Manager]] and go to Configuration -> Reverse DNS. For a dedicated server, please email support@ndchost.com. To set this up using our VPS service, log into your [[https://manager.provps.com|VPS Manager]] and go to Configuration -> Reverse DNS. For a dedicated server, please email support@ndchost.com.
Line 38: Line 38:
  
 For non-cPanel servers, the process is relatively involved to configure Domain Keys support, however below are a few resources for implementing them. For non-cPanel servers, the process is relatively involved to configure Domain Keys support, however below are a few resources for implementing them.
- +
   * [[http://www.elandsys.com/resources/sendmail/dkim.html|DKIM for Sendmail]]   * [[http://www.elandsys.com/resources/sendmail/dkim.html|DKIM for Sendmail]]
   * [[http://www.exim.org/exim-html-current/doc/html/spec_html/ch54.html|DKIM for Exim]]   * [[http://www.exim.org/exim-html-current/doc/html/spec_html/ch54.html|DKIM for Exim]]