MX Record Cannot talk to mail server

Discussion in 'Server Operation' started by sparton, Jul 19, 2006.

  1. sparton

    sparton New Member

    Okay i have been having all sorts of problems with postfix and getting the mx record to work.

    I initially created 2 domains with ISPconfig both semi worked i was able to navigate to the site and receive emails but never able to send emails.

    The 2 domains are linuxinsite.org and mutious.info.

    Intially i ran the test over at http://pingability.com/ and it was full of errors. I got most of the other errors straightened out besides for the mail server. WHen you run the test on mutious.info i get

    Now i just assumed this would prevent me from sending mail out. I know my ISP blocks port 25 outbound and i have everything for postfix changed to listen on port 587

    My netstat displays

    Any suggestions on where to start to get this resolved. Im sort of new at configuring but im starting to get the hang of everything.

    I followed the perfect setup for suse 10.1 and the DNS with godaddy.
     
  2. sparton

    sparton New Member

    Heres my PRI for mutious.info

    After i used ISPconfig i used webmin to help configure things
     
  3. sparton

    sparton New Member

    Attached is my postfix Main.cf
     

    Attached Files:

  4. falko

    falko Super Moderator Howtoforge Staff

    That's a bad idea. Either use ISPConfig or Webmin, but not both. You will mess up your system...

    Your name servers don't have DNS records:

    Code:
    dig ns linuxinsite.org
    
    ; <<>> DiG 9.2.1 <<>> ns linuxinsite.org
    ;; global options:  printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 25436
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 0
    
    ;; QUESTION SECTION:
    ;linuxinsite.org.               IN      NS
    
    ;; ANSWER SECTION:
    linuxinsite.org.        86396   IN      NS      ns113.linuxinsite.org.
    linuxinsite.org.        86396   IN      NS      ns114.linuxinsite.org.
    
    ;; Query time: 2 msec
    ;; SERVER: 81.169.163.104#53(81.169.163.104)
    ;; WHEN: Thu Jul 20 13:39:40 2006
    ;; MSG SIZE  rcvd: 73
    The authoritative name servers for linuxinsite.org are ns113.linuxinsite.org and ns114.linuxinsite.org, but neither of them exists in DNS:

    Code:
    mh1:~# dig ns113.linuxinsite.org
    
    ; <<>> DiG 9.2.1 <<>> ns113.linuxinsite.org
    ;; global options:  printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 15583
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
    
    ;; QUESTION SECTION:
    ;ns113.linuxinsite.org.         IN      A
    
    ;; AUTHORITY SECTION:
    linuxinsite.org.        10800   IN      SOA     ns113.linuxinsite.org. admin.linuxinsite.org. 2006071901 28800 7200 604800 86400
    
    ;; Query time: 138 msec
    ;; SERVER: 81.169.163.104#53(81.169.163.104)
    ;; WHEN: Thu Jul 20 13:39:46 2006
    ;; MSG SIZE  rcvd: 81
    
    mh1:~# dig ns114.linuxinsite.org
    
    ; <<>> DiG 9.2.1 <<>> ns114.linuxinsite.org
    ;; global options:  printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 57908
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
    
    ;; QUESTION SECTION:
    ;ns114.linuxinsite.org.         IN      A
    
    ;; AUTHORITY SECTION:
    linuxinsite.org.        10800   IN      SOA     ns113.linuxinsite.org. admin.linuxinsite.org. 2006071901 28800 7200 604800 86400
    
    ;; Query time: 180 msec
    ;; SERVER: 81.169.163.104#53(81.169.163.104)
    ;; WHEN: Thu Jul 20 13:39:56 2006
    ;; MSG SIZE  rcvd: 87
     

Share This Page