<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[DNS lookup failure MX for yandex.com]]></title><description><![CDATA[<p dir="auto"><code>DNS lookup failure: Error: queryMx ESERVFAIL yandex.com. </code></p>
<p dir="auto"><code>"Tried all MXs"</code></p>
<p dir="auto">Not sure why this would happen or what I can do about it.</p>
<p dir="auto">Checked FW block list rules, but that's for incoming not DNS lookups.</p>
]]></description><link>https://forum.cloudron.io/topic/3652/dns-lookup-failure-mx-for-yandex-com</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Apr 2026 17:19:40 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/3652.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 08 Nov 2020 22:21:32 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Wed, 01 Dec 2021 11:18:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/d19dotca" aria-label="Profile: d19dotca">@<bdi>d19dotca</bdi></a> What a read!</p>
]]></description><link>https://forum.cloudron.io/post/39986</link><guid isPermaLink="true">https://forum.cloudron.io/post/39986</guid><dc:creator><![CDATA[scooke]]></dc:creator><pubDate>Wed, 01 Dec 2021 11:18:38 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Wed, 01 Dec 2021 10:32:08 GMT]]></title><description><![CDATA[<p dir="auto">I migrated my server tonight to BHS5 region in OVH and it worked successfully sending mail to that domain now. So I suppose that issue is resolved and was more of a general network issue at OVH. Thanks for the guidance, Girish. <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=c34f2a691b3" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":-)" alt="🙂" /></p>
]]></description><link>https://forum.cloudron.io/post/39984</link><guid isPermaLink="true">https://forum.cloudron.io/post/39984</guid><dc:creator><![CDATA[d19dotca]]></dc:creator><pubDate>Wed, 01 Dec 2021 10:32:08 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Wed, 01 Dec 2021 02:11:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> Ah that's fair enough. Thanks Girish. I will try to make that move as soon as I can.</p>
<p dir="auto">I will likely move away from the OVH VPS to the OVH Public Cloud instances instead (I used to have those but found the VPS's a bit more performant but only slightly and now I'm running into some unforeseen extra costs for the VPS which makes me think the Public Cloud was actually the better option for me).</p>
<p dir="auto">So I'll make that change as soon as tonight or else later this weekend and will let you know. Thanks so much for the hard work! <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=c34f2a691b3" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":-)" alt="🙂" /></p>
]]></description><link>https://forum.cloudron.io/post/39980</link><guid isPermaLink="true">https://forum.cloudron.io/post/39980</guid><dc:creator><![CDATA[d19dotca]]></dc:creator><pubDate>Wed, 01 Dec 2021 02:11:25 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Wed, 01 Dec 2021 01:22:41 GMT]]></title><description><![CDATA[<p dir="auto">Can confirm that it works on a OVH sever in BHS5 region. I think the best bet is to change the server IP.</p>
]]></description><link>https://forum.cloudron.io/post/39979</link><guid isPermaLink="true">https://forum.cloudron.io/post/39979</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Wed, 01 Dec 2021 01:22:41 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Wed, 01 Dec 2021 01:11:53 GMT]]></title><description><![CDATA[<p dir="auto">Turns out the above is not a good way to test recursive resolve because internally it uses nsswitch.conf and resolv. So, <code>bns</code> module:</p>
<pre><code>const bns = require('bns');
const {RecursiveResolver} = bns;

const resolver = new RecursiveResolver({
  tcp: false,
  inet6: true,
  edns: true,
  dnssec: true
});

// Use default root hints and trust
// anchors (see lib/hints.js).
resolver.hints.setDefault();

resolver.on('log', (...args) =&gt; console.log(...args));

(async function () {
await resolver.open();

const res = await resolver.lookup('the.domain.', 'MX');
console.log(res.toString());
})();
</code></pre>
<p dir="auto">This fails because there is no UDP response from the name severs. I am creating a server in OVH canada to see if this some networking issue with that server or some general OVH issue.</p>
]]></description><link>https://forum.cloudron.io/post/39978</link><guid isPermaLink="true">https://forum.cloudron.io/post/39978</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Wed, 01 Dec 2021 01:11:53 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Wed, 01 Dec 2021 00:41:58 GMT]]></title><description><![CDATA[<p dir="auto">Trying to debug this further now. I cannot make much sense of the unbound logs. So, I wrote a simple node script to do DNS queries:</p>
<pre><code>#!/usr/bin/env node

'use strict';

const { Resolver } = require('dns').promises;
const resolver = new Resolver();

(async function () {
    try {
        const nameservers = await resolver.resolveMx('the.domain');
        console.log(nameservers);
    } catch (e) {
        console.log('Exception when looking up name server: ', e);
    }
})();
</code></pre>
<p dir="auto">I get:</p>
<pre><code>Exception when looking up name server:  Error: queryMx ESERVFAIL the.domain
    at QueryReqWrap.onresolve [as oncomplete] (internal/dns/promises.js:169:17) {
  errno: undefined,
  code: 'ESERVFAIL',
  syscall: 'queryMx',
  hostname: 'the.domain'
}
</code></pre>
<p dir="auto">So, it's not an unbound issue but a general network issue. Trying to see what else we can try here. Of course, replacing <code>the.domain</code> with something like <code>cloudron.io</code> works. So, it's the network connectivity between the nameservers of this specific domain.</p>
]]></description><link>https://forum.cloudron.io/post/39977</link><guid isPermaLink="true">https://forum.cloudron.io/post/39977</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Wed, 01 Dec 2021 00:41:58 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 22:53:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> Sent the email from the server's support page and allowed remote access for you. Thank you so much in advance, Girish! Very odd issue, I'd love to know what's going on there.</p>
<p dir="auto">For what it's worth, I tried changing verbosity to 2 and logging the queries, and it seems my <code>host</code> commands now come back with <code>SERVFAIL</code> error, where-as before it came back with nothing outside of what's noted earlier. Not sure if that's progress or not, haha.  I've gone ahead and set it back, so it's not verbose right now.</p>
<p dir="auto">Here's what I got recently though after making that change for the verbosity to 2:</p>
<pre><code>host -t NS gov.bc.ca 127.0.0.1
Using domain server:
Name: 127.0.0.1
Address: 127.0.0.1#53
Aliases: 

Host gov.bc.ca not found: 2(SERVFAIL)
</code></pre>
]]></description><link>https://forum.cloudron.io/post/39705</link><guid isPermaLink="true">https://forum.cloudron.io/post/39705</guid><dc:creator><![CDATA[d19dotca]]></dc:creator><pubDate>Tue, 23 Nov 2021 22:53:51 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 22:44:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/d19dotca" aria-label="Profile: d19dotca">@<bdi>d19dotca</bdi></a> I am afraid I have to debug on your server to help further then. Can you drop a mail to support?</p>
]]></description><link>https://forum.cloudron.io/post/39703</link><guid isPermaLink="true">https://forum.cloudron.io/post/39703</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Tue, 23 Nov 2021 22:44:55 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 22:42:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> I tried this, restarted the unbound server after adding that parameter to /etc/unbound/unbound.conf.d/cloudron-network.conf, but my <code>host</code> commands still fail with the exact same thing. <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61e.png?v=c34f2a691b3" class="not-responsive emoji emoji-android emoji--disappointed" style="height:23px;width:auto;vertical-align:middle" title=":-(" alt="😞" /></p>
<p dir="auto">Current config values:</p>
<pre><code>server:
        port: 53
        interface: 127.0.0.1
        interface: 172.18.0.1
        do-ip6: no
        access-control: 127.0.0.1 allow
        access-control: 172.18.0.1/16 allow
        cache-max-negative-ttl: 30
        cache-max-ttl: 300
        val-permissive-mode: yes
</code></pre>
<p dir="auto">Ran the restart command, but still seems to fail.</p>
]]></description><link>https://forum.cloudron.io/post/39702</link><guid isPermaLink="true">https://forum.cloudron.io/post/39702</guid><dc:creator><![CDATA[d19dotca]]></dc:creator><pubDate>Tue, 23 Nov 2021 22:42:54 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 21:53:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/d19dotca" aria-label="Profile: d19dotca">@<bdi>d19dotca</bdi></a> In the logs, I see <code>dnssec status: not expected</code>. Can you try disabling DNSSEC?</p>
<p dir="auto"><a href="https://www.nlnetlabs.nl/documentation/unbound/howto-turnoff-dnssec/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.nlnetlabs.nl/documentation/unbound/howto-turnoff-dnssec/</a> . Can just add <code>val-permissive-mode: yes</code> in the unbound config.</p>
<p dir="auto"><a href="https://dnssec-analyzer.verisignlabs.com/gov.bc.ca" target="_blank" rel="noopener noreferrer nofollow ugc">https://dnssec-analyzer.verisignlabs.com/gov.bc.ca</a> confirms the domain has some DNSSEC errors.</p>
]]></description><link>https://forum.cloudron.io/post/39695</link><guid isPermaLink="true">https://forum.cloudron.io/post/39695</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Tue, 23 Nov 2021 21:53:33 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 21:52:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> I made the change (and quickly put it back after seeing it grow so quickly), but it was on for a few minutes, I ran the test and here's the file link for download (it's 3 MB): <a href="https://filesharing.d19.ca/f.php?h=32DPrTGN&amp;d=1" target="_blank" rel="noopener noreferrer nofollow ugc">https://filesharing.d19.ca/f.php?h=32DPrTGN&amp;d=1</a></p>
<p dir="auto">There's hundreds of lines in there for it, it seems. But here's some quick snippets in my very brief review right away:</p>
<p dir="auto">It seems the initial NS are found:</p>
<pre><code>2021-11-23T21:24:40+0000 vps-8b86529d unbound[1459245]: [1459245:0] info: incoming scrubbed packet: ;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, rcode: NOERROR, id: 0
                                                        ;; flags: qr ; QUERY: 1, ANSWER: 0, AUTHORITY: 6, ADDITIONAL: 2 
                                                        ;; QUESTION SECTION:
                                                        gov.bc.ca.        IN        A
                                                        
                                                        ;; ANSWER SECTION:
                                                        
                                                        ;; AUTHORITY SECTION:
                                                        gov.bc.ca.        300        IN        NS        pubdns-c.spanbc.ca.
                                                        gov.bc.ca.        300        IN        NS        pubdns-k.spanbc.ca.
                                                        hcgv77huiaek95dvf2mlh6mgc3747u7d.ca.        300        IN        NSEC3        1 1 5 - hcif66mnpd6ucerv6dkg8nodve36k0ma TXT RRSIG ;{flags: optout}
                                                        hcgv77huiaek95dvf2mlh6mgc3747u7d.ca.        300        IN        RRSIG        NSEC3 8 2 3600 20211127185149 20211120210941 6810 ca. CaN+r3F3jFEa+PKhUj1YVtegRPO83dQ9Ak9eFGgi4QCmIsOfTye0EgHad7+a1TtqOkLW6VwVghc6Gh83kecuulKRmM6IFwCMQI/TT/6jN53Mabhm+Zy3PZdqCMeaP2Fjs6PPsXbQVUbw0H/dSBP1l0mdKX72feKSPzQXd92++mA= ;{id = 6810}
                                                        j7ndutk162v2aatm9t1tqeeftjri3jcv.ca.        300        IN        NSEC3        1 1 5 - j7oh4h2jucnrgkn54kf5t3gj4v55cuel NS DS RRSIG ;{flags: optout}
                                                        j7ndutk162v2aatm9t1tqeeftjri3jcv.ca.        300        IN        RRSIG        NSEC3 8 2 3600 20211129061916 20211122023917 6810 ca. opOLaNq6jn5w8EarGGa5tElQPbywUYC3OW1IJCQjnIwJS8fbO0RDKpE0p+Nv0gndmF8ELCqUJmSuCmRti7FeZDLMvkKzSfmwrx2BILlpiMNBArSswNhI9HbpoW+Dt8Gl+u2/jX7qbOMXNBZEx8Nn/PBrAWWvnwIx3Ur0xgB89Us= ;{id = 6810}
                                                        
                                                        ;; ADDITIONAL SECTION:
                                                        pubdns-c.spanbc.ca.        300        IN        A        142.34.50.57
                                                        pubdns-k.spanbc.ca.        300        IN        A        142.34.208.20
                                                        ;; MSG SIZE  rcvd: 594

</code></pre>
<p dir="auto">I do see a few of these timeouts though:</p>
<pre><code>2021-11-23T21:24:42+0000 vps-8b86529d unbound[1459245]: [1459245:0] debug: timeout udp
</code></pre>
<p dir="auto">I don't know what these mean exactly, but for reference...</p>
<pre><code>2021-11-23T21:25:10+0000 vps-8b86529d unbound[1459245]: [1459245:0] info: 2vRDCD mod2  pubdns-k.spanbc.ca. A IN
2021-11-23T21:25:10+0000 vps-8b86529d unbound[1459245]: [1459245:0] info: 4RDd mod2 rep gov.bc.ca. NS IN
2021-11-23T21:25:10+0000 vps-8b86529d unbound[1459245]: [1459245:0] info: 5RDdc mod2 rep gov.bc.ca. NS IN
</code></pre>
]]></description><link>https://forum.cloudron.io/post/39694</link><guid isPermaLink="true">https://forum.cloudron.io/post/39694</guid><dc:creator><![CDATA[d19dotca]]></dc:creator><pubDate>Tue, 23 Nov 2021 21:52:19 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 21:18:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/d19dotca" aria-label="Profile: d19dotca">@<bdi>d19dotca</bdi></a> yes, all DNS requests go via unbound (which is running on 127.0.0.1). Docker is configured to make DNS requests via unbound (so all apps will also indirectly use unbound).</p>
<p dir="auto">I am not sure why unbound is unable to get the nameservers of that specific domain. If you edit <code>/etc/unbound/unbound.conf.d/cloudron-network.conf</code>, enable debugging there.</p>
<pre><code>        verbosity: 5
        log-queries: yes
</code></pre>
<p dir="auto">Then restart unbound and check if we get additional hints.</p>
]]></description><link>https://forum.cloudron.io/post/39693</link><guid isPermaLink="true">https://forum.cloudron.io/post/39693</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Tue, 23 Nov 2021 21:18:27 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 20:38:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> Unfortunately it doesn't. <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61e.png?v=c34f2a691b3" class="not-responsive emoji emoji-android emoji--disappointed" style="height:23px;width:auto;vertical-align:middle" title=":-(" alt="😞" /></p>
<p dir="auto">If I take out the 127.0.0.1 it works fine though (which I think is only the case because I added <code>1.1.1.1</code> to the /etc/resolv.conf file temporarily to see if that'd help at all):</p>
<pre><code>host -t NS gov.bc.ca
gov.bc.ca name server pubdns-k.spanbc.ca.
gov.bc.ca name server pubdns-c.spanbc.ca.
</code></pre>
<p dir="auto">I tried restarting unbound but same issue too when running the host command with 127.0.0.01, FYI.</p>
<pre><code>host -t NS gov.bc.ca 127.0.0.1
;; connection timed out; no servers could be reached
</code></pre>
<p dir="auto">Any suggestions then? I'm always a bit confused when it comes to DNS in Cloudron servers... does Cloudron force it's own DNS lookup server on a VPS with Cloudron, and thus any local config isn't really applicable to a server as it would be without Cloudron? Is that we try the <code>host</code> command with the 127.0.0.1 because it sends it through Cloudron's local DNS server (unbound)?</p>
]]></description><link>https://forum.cloudron.io/post/39692</link><guid isPermaLink="true">https://forum.cloudron.io/post/39692</guid><dc:creator><![CDATA[d19dotca]]></dc:creator><pubDate>Tue, 23 Nov 2021 20:38:56 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 18:30:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/d19dotca" aria-label="Profile: d19dotca">@<bdi>d19dotca</bdi></a> Does <code>host -t NS gov.bc.ca 127.0.0.1</code> output anything? You can also try the above command after <code>systemctl restart unbound</code> .</p>
<p dir="auto">FWIW, the above commands work on my servers.</p>
]]></description><link>https://forum.cloudron.io/post/39677</link><guid isPermaLink="true">https://forum.cloudron.io/post/39677</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Tue, 23 Nov 2021 18:30:50 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 23 Nov 2021 00:26:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> said in <a href="/post/18615">DNS lookup failure MX for yandex.com</a>:</p>
<blockquote>
<p dir="auto">host -t MX <a href="http://yandex.com" target="_blank" rel="noopener noreferrer nofollow ugc">yandex.com</a> 127.0.0.1</p>
</blockquote>
<p dir="auto">I'm having the same issue here but for a different domain... <a href="http://gov.bc.ca" target="_blank" rel="noopener noreferrer nofollow ugc">gov.bc.ca</a>.</p>
<p dir="auto"><code>host -t MX gov.bc.ca 127.0.0.1</code> gives me this output:</p>
<pre><code>;; connection timed out; no servers could be reached
</code></pre>
<p dir="auto">The DNS servers set in netplan are the following (so shouldn't be a problem):</p>
<pre><code>nameservers:
                addresses: [1.1.1.1, 1.0.0.1, 8.8.8.8, 213.186.33.99]
                search: []
</code></pre>
<p dir="auto">Are there any concerns on this above? Is there a different place the DNS addresses should be set? The only email failing to send is to the <a href="http://gov.bc.ca" target="_blank" rel="noopener noreferrer nofollow ugc">gov.bc.ca</a> domain, everything else works fine. And external checks shows the MX record no problem for <a href="http://gov.bc.ca" target="_blank" rel="noopener noreferrer nofollow ugc">gov.bc.ca</a> so it's not a DNS issue on their end at all.</p>
<p dir="auto">The only thing in the unbound service logs is this repeatedly:</p>
<pre><code>Nov 22 16:16:10 vps-&lt;name&gt; unbound[2484160]: [2484160:0] info: generate keytag query _ta-4f66. NULL IN
</code></pre>
<p dir="auto">From the mail logs, I only see these two entries for the <a href="http://gov.bc.ca" target="_blank" rel="noopener noreferrer nofollow ugc">gov.bc.ca</a> attempts:</p>
<pre><code>2021-11-22T08:58:37.000Z [NOTICE] [3306618A-B219-42B7-A2F5-6DBF86CE783E.1.1] [outbound] MX Lookup for gov.bc.ca failed: Error: queryMx ETIMEOUT gov.bc.ca
2021-11-22T08:58:37.000Z [INFO] [3306618A-B219-42B7-A2F5-6DBF86CE783E.1.1] [outbound] bouncing mail: Too many failures (DNS lookup failure: Error: queryMx ETIMEOUT gov.bc.ca)
</code></pre>
]]></description><link>https://forum.cloudron.io/post/39627</link><guid isPermaLink="true">https://forum.cloudron.io/post/39627</guid><dc:creator><![CDATA[d19dotca]]></dc:creator><pubDate>Tue, 23 Nov 2021 00:26:14 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Tue, 10 Nov 2020 03:49:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> no, but I noticed it took a while when you asked me to run it in CLI too. Not something we control ;-/</p>
<p dir="auto">Can the DNS query be externalized via shell call to hosts command? Or maybe query twice to get the cached response?</p>
]]></description><link>https://forum.cloudron.io/post/18718</link><guid isPermaLink="true">https://forum.cloudron.io/post/18718</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Tue, 10 Nov 2020 03:49:04 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Mon, 09 Nov 2020 18:16:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robi" aria-label="Profile: robi">@<bdi>robi</bdi></a> I think the delay is the source of the problem. Do you know why it takes so long?</p>
<p dir="auto">IIUC, nodejs uses c-ares library underneath for DNS queries. And <a href="https://linux.die.net/man/3/ares_init" target="_blank" rel="noopener noreferrer nofollow ugc">ARES_OPT_TIMEOUTMS</a> has a default of 5 seconds. If it doesn't get a response, it will think it's a failures (since dns resolution is UDP based, it has to rely on timeouts). It doesn't seem like Haraka can configure these timeouts from a quick read of <a href="https://github.com/haraka/Haraka/blob/master/outbound/mx_lookup.js" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/haraka/Haraka/blob/master/outbound/mx_lookup.js</a></p>
]]></description><link>https://forum.cloudron.io/post/18671</link><guid isPermaLink="true">https://forum.cloudron.io/post/18671</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Mon, 09 Nov 2020 18:16:25 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Mon, 09 Nov 2020 18:12:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robi" aria-label="Profile: robi">@<bdi>robi</bdi></a> said in <a href="/post/18609">DNS lookup failure MX for yandex.com</a>:</p>
<blockquote>
<p dir="auto">why do all logs download to log.txt? they should be unique.</p>
</blockquote>
<p dir="auto">Thanks for the hint, this is fixed now and will be part of the next release.</p>
]]></description><link>https://forum.cloudron.io/post/18631</link><guid isPermaLink="true">https://forum.cloudron.io/post/18631</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 09 Nov 2020 18:12:34 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Mon, 09 Nov 2020 06:24:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> yes, took a few seconds the first time but it returned the one I found with an online tool.</p>
<p dir="auto">Is the lookup timeout too short?</p>
]]></description><link>https://forum.cloudron.io/post/18616</link><guid isPermaLink="true">https://forum.cloudron.io/post/18616</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Mon, 09 Nov 2020 06:24:26 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Mon, 09 Nov 2020 06:12:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robi" aria-label="Profile: robi">@<bdi>robi</bdi></a> Does <code>host -t MX yandex.com 127.0.0.1</code> work on the server?</p>
]]></description><link>https://forum.cloudron.io/post/18615</link><guid isPermaLink="true">https://forum.cloudron.io/post/18615</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Mon, 09 Nov 2020 06:12:35 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Mon, 09 Nov 2020 05:21:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> the Email event log.</p>
<p dir="auto">unbound is running, although it's log is empty.<br />
why do all logs download to log.txt? they should be unique.</p>
<p dir="auto">other emails are being delivered just fine.</p>
]]></description><link>https://forum.cloudron.io/post/18609</link><guid isPermaLink="true">https://forum.cloudron.io/post/18609</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Mon, 09 Nov 2020 05:21:50 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Mon, 09 Nov 2020 02:41:11 GMT]]></title><description><![CDATA[<p dir="auto">Where is this coming from? The mail server logs? Can you check if unbound is running with <code>systemctl status unbound</code>. You can also restart unbound from the Services view.</p>
]]></description><link>https://forum.cloudron.io/post/18606</link><guid isPermaLink="true">https://forum.cloudron.io/post/18606</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Mon, 09 Nov 2020 02:41:11 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Sun, 08 Nov 2020 23:57:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> the deferred queue has reached 16,384 seconds.</p>
]]></description><link>https://forum.cloudron.io/post/18601</link><guid isPermaLink="true">https://forum.cloudron.io/post/18601</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Sun, 08 Nov 2020 23:57:43 GMT</pubDate></item><item><title><![CDATA[Reply to DNS lookup failure MX for yandex.com on Sun, 08 Nov 2020 22:34:29 GMT]]></title><description><![CDATA[<p dir="auto">Does this happen also after you wait some few hours? Often those hit rate-limits quickly and it is always queried when the dashboard fetches the status in the mail view</p>
]]></description><link>https://forum.cloudron.io/post/18592</link><guid isPermaLink="true">https://forum.cloudron.io/post/18592</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Sun, 08 Nov 2020 22:34:29 GMT</pubDate></item></channel></rss>