Email to Verizon

Nara

New member
Joined
Sep 25, 2006
Messages
1
Hi,
I recently noticed that we cannot send emails to Verizon.net customers. We just receive a message back from our server saying:
Mail delivery failed: returning message to sender
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

someuserremoved at verizon.net
retry timeout exceeded
Here are my dns records (changed the domain and IP for privacy):

mydomain.com. A 64.86.25.###
ftp A 64.86.25.###
localhost A 127.0.0.1
mail A 64.86.25.###
pop A 64.86.25.###
www A 64.86.25.###
mydomain.com. NS ns1.mydns.com.
mydomain.com. NS ns2.mydns.com.
mail MX 10
mydomain.com. TXT "v=spf1 a mx ip4:64.86.25.### ?all"
From ssh shell I cannot telnet or ping their mail server:
sh>> nslookup -type=mx verizon.net
Server: 64.86.25.###

Non-authoritative answer:
verizon.net mail exchanger = 0 relay.verizon.net.

Authoritative answers can be found from:
verizon.net nameserver = ns2.verizon.net.
verizon.net nameserver = ns2.bellatlantic.net.
verizon.net nameserver = ns4.verizon.net.
verizon.net nameserver = ns1.bellatlantic.net.
relay.verizon.net internet address = 206.46.232.11

sh>> telnet relay.verizon.net 25
Trying 206.46.232.11...
telnet: connect to address 206.46.232.11: Connection timed out
telnet: Unable to connect to remote host: Connection timed out

sh>> ping verizon.net
PING verizon.net (206.46.230.37) 56(84) bytes of data.
64 bytes from es.verizon.net (206.46.230.37): icmp_seq=0 ttl=242
time=83.2 ms
64 bytes from es.verizon.net (206.46.230.37): icmp_seq=1 ttl=242
time=83.1 ms
64 bytes from es.verizon.net (206.46.230.37): icmp_seq=2 ttl=242
time=83.3 ms

sh>> ping relay.verizon.net
PING relay.verizon.net (206.46.232.11) 56(84) bytes of data.

--- relay.verizon.net ping statistics ---
10 packets transmitted, 0 received, 100% packet loss, time 8997ms
Anybody having this problem or had this problem?

Suggestions will be much appreciated
Regards,
Nara
 
Same Verizon Issue

This is a dated post but we are having the same problem to verizon:
R=localuser T=local_delivery defer (-52): Retry time not yet reached

Did you ever resolve this issue?

Thanks
 
Can you do this --> telnet relay.verizon.net 25

Does the port open?

Also check the logs see if you see anything for the mail you send out.

Check:

/var/log/exim/mainlog
/var/log/exim/paniclog
/var/log/exim/rejectlog
 
Last edited:
Thanks for the reply. No luck :

telnet: connect to address 206.46.232.11: Connection timed out
telnet: Unable to connect to remote host: Connection timed out

Dig results:

dig relay.verizon.net mx

; <<>> DiG 9.2.4 <<>> relay.verizon.net mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12656
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0

;; QUESTION SECTION:
;relay.verizon.net. IN MX

;; AUTHORITY SECTION:
verizon.net. 10792 IN SOA ns1.bellatlantic.net. dns.gnilink.net. 2008052001 86400 3600 604800 86400
 
Not really sure why it doesnt work for you.

Make sure no firewall is blocking the ip 206.46.232.11

This is what I get:

Code:
[root@192 ~/bin]# telnet relay.verizon.net 25
Trying 206.46.232.11...
Connected to relay.verizon.net.
Escape character is '^]'.
220 vms172065pub.verizon.net -- Server ESMTP (Sun Java System Messaging Server 6.2-6.01 (built Apr  3 2006))
quit
221 2.3.0 Bye received. Goodbye.
Connection closed by foreign host.
[root@192 ~/bin]# dig verizon.net mx

; <<>> DiG 9.4.2 <<>> verizon.net mx
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 50967
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; QUESTION SECTION:
;verizon.net.                   IN      MX

;; ANSWER SECTION:
verizon.net.            300     IN      MX      0 relay.verizon.net.

;; ADDITIONAL SECTION:
relay.verizon.net.      85877   IN      A       206.46.232.11

;; Query time: 53 msec
;; SERVER: 192.168.1.3#53(192.168.1.3)
;; WHEN: Thu May 22 15:12:13 2008
;; MSG SIZE  rcvd: 67
 
Last edited:
Look what I found in my iptables list:

108 DROP all -- relay.verizon.net anywhere

Thanks for all your help.
 
Dig results:

dig relay.verizon.net mx

; <<>> DiG 9.2.4 <<>> relay.verizon.net mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12656
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0

;; QUESTION SECTION:
;relay.verizon.net. IN MX

;; AUTHORITY SECTION:
verizon.net. 10792 IN SOA ns1.bellatlantic.net. dns.gnilink.net. 2008052001 86400 3600 604800 86400
You're asking DNS to give you an mx record for relay.verizon.net. There's no such thing because no mail is sent to [email protected]. MX records are for mx servers for domains receiving mail.

If you do a dig as follows:
Code:
dig relay.verizon.net
you'll get an IP#.

If you do a dig as follows:
Code:
dig verizon.net
you'll get a listing for relay.verizon.net.

Jeff
 
Back
Top