DNS Configuration

DNS Transport services are controlled by a configuration block in the config.xml. This block affects SMTP remote delivery.

The dnsserver tag defines the boundaries of the configuration block. It encloses all the relevant configuration for the DNS server. The behavior of the DNS service is controlled by the attributes and children of this tag.

The standard children of the dnsserver tag are:

  • servers - This is a list of DNS Servers to be used by James and are specified by one, or more server elements, which are child elements. Each server element is the IP address of a single DNS server.
    <servers>
      <server>127.0.0.1</server>
      <server>166.181.194.205</server>
    </servers>
    
  • authoritative - (true/false)This tag specifies whether or not to require authoritative (non-cached) DNS records; to only accept DNS responses that are authoritative for the domain. It is primarily useful in an intranet/extranet environment. This should always be false unless you understand the implications.