View Single Post
  #9 (permalink)  
Old 10-27-2009, 12:18 AM
phoenix phoenix is online now
Zimbra Consultant & Moderator
 
Posts: 19,650
Default

Quote:
Originally Posted by efcunha View Post
I have two domains :

Domain 1 - lnxmail.tce.mt.gov.br

Domain 2 - tce.mt.gov.br
Name public computer - mail

My email works on tce.mt.gov.br

[root@lnxmail ~]# cat /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
XXX.XXX.XX.99 lnxmail.tce.mt.gov.br tce.mt.gov.br lnxmail localhost
127.0.0.1 localhost.localdomain localhost
## IpV6
::1 localhost6.localdomain6 localhost6

[root@lnxmail ~]# hostname
lnxmail
The line above is incorrect, it should be:

Code:
XXX.XXX.XX.99 lnxmail.tce.mt.gov.br lnxmail
Is this IP in your hosts file a public IP or LAN IP?

In your DNS records you have two MX records listed with the same priority, that's not a good idea - why are you doing that?

Code:
dig tce.mt.gov.br mx

; <<>> DiG 9.5.0-P2 <<>> tce.mt.gov.br mx
;; global options:  printcmd             
;; Got answer:                           
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 22045
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 2

;; QUESTION SECTION:
;tce.mt.gov.br.                 IN      MX

;; ANSWER SECTION:
tce.mt.gov.br.          86400   IN      MX      10 mail.tce.mt.gov.br.
tce.mt.gov.br.          86400   IN      MX      10 lnxmail.tce.mt.gov.br.

;; ADDITIONAL SECTION:
mail.tce.mt.gov.br.     86400   IN      A       200.140.138.3
lnxmail.tce.mt.gov.br.  86400   IN      A       200.140.138.17

;; Query time: 846 msec
;; SERVER: 192.168.1.10#53(192.168.1.10)
;; WHEN: Tue Oct 27 07:12:37 2009       
;; MSG SIZE  rcvd: 108
__________________
Regards


Bill
Reply With Quote