Quote: |
did you or you nameservice provider change the mx and the reverse entry of your mailserver to the new ip address?
|
I think the problem is in the gateway configuration.
The problem is not in the MX (or mailserver). In the same page I do a curl call. With 10.0.0.38 it works right. With 10.0.1.38 it does not.
$ch=curl_init();
$url="http://www.google.it";
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PORT , 80);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$result=curl_exec($ch);
curl_close($ch);
//
echo($result);