On Tue, Apr 01, 2014 at 05:17:44PM +0300, Selcuk Yazar wrote: > some of our users sends emails to incorrect mail addresses like gmail.com.tr. > Postfix gives an error Host or domain name not found. But email still > waiting on queue. can can i change this settings ? > i wantto to try to 1 or 2 time
Lookups for this domain return a SERVFAIL (by definition temporary) error, there is no authoritative response that the domain does not exist: $ dig -t mx gmail.com.tr ; <<>> DiG 9.8.3-P1 <<>> -t mx gmail.com.tr ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 2675 ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECTION: ;gmail.com.tr. IN MX ;; Query time: 791 msec ;; SERVER: 192.168.1.1#53(192.168.1.1) ;; WHEN: Tue Apr 1 10:25:41 2014 ;; MSG SIZE rcvd: 30 The com.tr domain believes gmail.com.tr exists: $ dig -t ns gmail.com.tr @ns1.nic.tr. ; <<>> DiG 9.8.3-P1 <<>> -t ns gmail.com.tr @ns1.nic.tr. ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 58779 ;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 4, ADDITIONAL: 0 ;; WARNING: recursion requested but not available ;; QUESTION SECTION: ;gmail.com.tr. IN NS ;; AUTHORITY SECTION: gmail.com.tr. 43200 IN NS ns2.google.com. gmail.com.tr. 43200 IN NS ns1.google.com. gmail.com.tr. 43200 IN NS ns3.google.com. gmail.com.tr. 43200 IN NS ns4.google.com. But, google.com does not: $ dig +norecur -t ns gmail.com.tr @ns1.google.com ; <<>> DiG 9.8.3-P1 <<>> +norecur -t ns gmail.com.tr @ns1.google.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: REFUSED, id: 42694 ;; flags: qr; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECTION: ;gmail.com.tr. IN NS ;; Query time: 24 msec ;; SERVER: 216.239.32.10#53(216.239.32.10) ;; WHEN: Tue Apr 1 10:29:28 2014 ;; MSG SIZE rcvd: 30 I don't know whether this has anything to do with the recent government mandated DNS redirection in Turkey. -- Viktor.