Re: [exim] exim build errors - exim-4.80.1

Top Page
Delete this message
Reply to this message
Author: Cyborg
Date:  
To: exim-users
Subject: Re: [exim] exim build errors - exim-4.80.1
Am 17.07.2013 18:43, schrieb Prashanth Katuri:
> Todd,
>
> I have a question on exim-4.80.1 version.
>
> When I verify the mail flow from the machine I upgraded vs machine in production, I get different results. As exim3 is routing email to exchange but exim4 is just relaying the email without expanding it.
>
> Below is the output from the machine running 4.80.1
>
> pkaturi@gb0882ldaptst01 >exim -bt pkaturi@???
> pkaturi@???
>    router = slbhost, transport = remote_smtp
>    host mail0.slb.com                [163.10.9.8]  MX=200
>    host mail.messaging.microsoft.com [213.56.90.8] MX=250
>    host mail.messaging.microsoft.com [216.98.0.5]   MX=250
>    host mail.global.frontbridge.com  [213.45.6.4] MX=600
>    host mail.global.frontbridge.com  [207.46.789.0]   MX=600

>
>
> Below is the output from production machine running exim-3.36
>
> pkaturi@us1096ldap01 >exim -bt pkaturi@???
> PKaturi@???
>      <-- pkaturi@???
>    deliver to PKaturi@???
>    router = exchangehost, transport = remote_smtp
>    host nl0230exchub.mail.slb.com    [199.6.8.1]     MX=100
>    host nl0230exchub.mail.slb.com    [199.6.7.0]     MX=100
>    host nl0230exchub.mail.slb.com    [199.6.200.7]     MX=100
>    host nl0230exchub.mail.slb.com    [199.6.78.0]     MX=100
>    host mail.messaging.microsoft.com [216.45.78.90]  MX=200
>    host mail.messaging.microsoft.com [213.67.97.34] MX=200

>
>
> Please assist.
> Thanks,
> Prashanth


Your dns setup does not show any exchange servers :

# dig mx slb.com

; <<>> DiG 9.8.3-P1-RedHat-9.8.3-2.P1.fc15 <<>> mx slb.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 61862
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 4

;; QUESTION SECTION:
;slb.com.                       IN      MX


;; ANSWER SECTION:
slb.com.                7200    IN      MX      200 
mail.global.frontbridge.com.
slb.com.                7200    IN      MX      200 
mail.messaging.microsoft.com.


;; ADDITIONAL SECTION:
mail.global.frontbridge.com. 60 IN      A 213.199.180.150
mail.global.frontbridge.com. 60 IN      A 216.32.180.22
mail.messaging.microsoft.com. 60 IN     A 213.199.154.190
mail.messaging.microsoft.com. 60 IN     A 216.32.181.178


;; Query time: 531 msec
;; SERVER: 81.3.3.81#53(81.3.3.81)
;; WHEN: Wed Jul 17 18:49:57 2013
;; MSG SIZE rcvd: 170


It's possible, that someone made a split horizone setup for your dns
server. It means, that you get different results for different ip ranges.

Do a "dig mx slb.com" on your new and on your old server and compare them.

If they differ, you found your problem.

Marius