View Single Post
  #37 (permalink)  
Old 06-19-2009, 11:00 AM
ask2me007 ask2me007 is offline
Special Member
 
Posts: 110
Default

Quote:
Originally Posted by phoenix View Post
No, this isn't likely to be a postfix problem. Did you disable the mDNS/ZeroConf/Bonjour service as I mentioned earlier?

Code:
cat /etc/hosts
cat /etc/resolv.conf
dig yourdomain mx
dig yourdomain any
host `hostname` <- note backticks and not single quotes
What happens when you run both of these commands (please post the output) on the Zimbra server:

Code:
telnet 192.168.10.5 25
telnet  pop.ksfe.com 25
I couldnt find any of them as you told.
ie mDNS/ZeroConf/Bonjour
i have listed by the command
sudo aptitude search all
but dodnt find anything.

root@pop:~# cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
192.168.10.5 pop.domain.com pop
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts


root@pop:~# cat /etc/resolv.conf
// replace example.com with your domain name, and 192.168.0.1 with the address of your new DNS server.
//search domain.com
nameserver 192.168.10.5



; <<>> DiG 9.4.2 <<>>domain mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 14709
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0

;; QUESTION SECTION:
;
;; AUTHORITY SECTION:
domain.com. 604800 IN SOA pop.domain.com. root.domain.com. 70745 604800 86400 2419200 604800

;; Query time: 0 msec
;; SERVER: 192.168.10.5#53(192.168.10.5)
;; WHEN: Fri Jun 19 23:23:49 2009
;; MSG SIZE rcvd: 75


root@pop:~# dig domain any

; <<>> DiG 9.4.2 <<>> domain any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 27610
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0

;; QUESTION SECTION:
;domain. IN ANY

;; AUTHORITY SECTION:
domain.com. 604800 IN SOA pop.domain.com. root.domain.com. 70745 604800 86400 2419200 604800

;; Query time: 0 msec
;; SERVER: 192.168.10.5#53(192.168.10.5)
;; WHEN: Fri Jun 19 23:25:35 2009
;; MSG SIZE rcvd: 75



root@pop:~# host `hostname`
pop.domain.com has address 192.168.10.5


root@pop:~# telnet 192.168.10.5 25
Trying 192.168.10.5...
Connected to 192.168.10.5.
Escape character is '^]'.
220 pop.domain.com ESMTP Postfix


root@pop:~# telnet pop.domain.com 25
Trying 192.168.10.5...
Connected to pop.domain.com.
Escape character is '^]'.
220 pop.domain.com ESMTP Postfix

Last edited by ask2me007; 06-19-2009 at 11:03 AM..
Reply With Quote