Hi !
When I send a mail to some specific address
I receive this problem :
I'm sorry to have to inform you that your message could not
be delivered to one or more recipients. It's attached below.
......
550 5.7.1 Client host rejected: cannot find your reverse hostname,
[83.212.248.x] (in reply to RCPT TO command)
I found on internet that the problem comes from an impossibility to perform the Reverse DNS to the ip address 83.212.248.x
I have a DNS server [83.212.248.y] that is supposed to "reverse" (I think) solve 83.212.248.x.
I got some help and the told me to add the following to /etc/bind/named.conf
zone "0/25.248.212.83.in-addr.arpa" {
type master;
file "/etc/bind/efa.rev";
};
and to create the file efa.rev :
$ORIGIN 0/25.248.212.83.in-addr.arpa.
$TTL 86400
@ IN SOA dns1efa.efa.gr. root.dns1.efa.gr. (
2009091001
86400
7200
2419200
3600 )
@ IN NS dns1efa.efa.gr.
6 IN PTR mail.efa.gr.
I did that and ran bind9 restart. But it still doesn't work.
I'm slowly getting crazy and it won't be reversible :) could you help me please ?
Thank you very much
Vince