You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-user@james.apache.org by Davendra Kumar <da...@hotmail.com> on 2003/01/21 12:41:08 UTC

config.xml


Inorder to send and receive emails to to the real world i have to configure 
the dns right?
below part of config.xml Is it the right way to write it?

   <dnsserver>
      <servers>
<!-- CONFIRM? -->
        <!--Enter ip address of your DNS server, one IP address per server 
-->
        <!-- element.  The default configuration assumes a DNS server on the 
localhost. -->
         <server>127.0.0.1</server>
		 <server>202.188.x.x</server>
		  <server>202.188.x.x</server>
	  </servers>
      <authoritative>true</authoritative>
   </dnsserver>

or like this? should i keep the localhost address still?

   <dnsserver>
      <servers>
<!-- CONFIRM? -->
        <!--Enter ip address of your DNS server, one IP address per server 
-->
        <!-- element.  The default configuration assumes a DNS server on the 
localhost. -->
         <server>127.0.0.1, 202.188.x.x,202.188.x.x</server>
	  </servers>
      <authoritative>true</authoritative>
   </dnsserver>



_________________________________________________________________
Protect your PC - get McAfee.com VirusScan Online 
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


RE: config.xml

Posted by Danny Angus <da...@apache.org>.
1st way.
Only use localhost if it provides DNS resolution

d.


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


RE: config.xml

Posted by "Noel J. Bergman" <no...@devtech.com>.
>         <server>127.0.0.1, 202.188.x.x,202.188.x.x</server>

Doesn't match the "one IP address per server element" requirement.

Correct format is the first one you posted.  Your local host address should
only be kept if your local host is a DNS server.

	--- Noel


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>