add matrix synapse fderation fix to the blog

This commit is contained in:
kurets 2023-05-04 10:23:03 +03:00
parent 6bff71dbae
commit b2576c587e
19 changed files with 286 additions and 15 deletions

View file

@ -0,0 +1,24 @@
---
title: "How I Fixed My Synapse Matrix Federation"
date: 2023-05-04T10:12:26+03:00
draft: false
tags: ['blog']
---
## Federation issues
I for the life of me couldn't get synapse's (matrix's) federation to work. It said that the encryption couldn't be trusted, i could join public rooms but i couldn't start any chats, i couldn't invite people to my rooms, i couldn't get invited to rooms.
## How I fixed it
Go to your `homeserver.yaml` file
```bash
nano /etc/matrix-synapse/homeserver.yaml
```
and go all the way to the bottom or search for `trusted_key_servers`. it's probably going to be `matrix.org`. You should change it to the following by removing `matrix.org` and leave blank square brackets:
```
trusted_key_servers: []
```

View file

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>How I Fixed My Synapse Matrix Federation | vodoraslo</title>
<link rel="canonical" href="https://vodoraslo.xyz/">
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Federation issues I for the life of me couldn&rsquo;t get synapse&rsquo;s (matrix&rsquo;s) federation to work. It said that the encryption couldn&rsquo;t be trusted, i could join public rooms but i couldn&rsquo;t start any chats, i couldn&rsquo;t invite people to my rooms, i couldn&rsquo;t get invited to rooms.
How I fixed it Go to your homeserver.yaml file
nano /etc/matrix-synapse/homeserver.yaml and go all the way to the bottom or search for trusted_key_servers. it&rsquo;s probably going to be matrix."/>
<meta name="keywords" content="blog">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
</head>
<body>
<main>
<header><h1 id="tag_How I Fixed My Synapse Matrix Federation">How I Fixed My Synapse Matrix Federation</h1></header>
<article>
<div class="post-content"><h2 id="federation-issues">Federation issues<a hidden class="anchor" aria-hidden="true" href="#federation-issues">#</a></h2>
<p>I for the life of me couldn&rsquo;t get synapse&rsquo;s (matrix&rsquo;s) federation to work. It said that the encryption couldn&rsquo;t be trusted, i could join public rooms but i couldn&rsquo;t start any chats, i couldn&rsquo;t invite people to my rooms, i couldn&rsquo;t get invited to rooms.</p>
<h2 id="how-i-fixed-it">How I fixed it<a hidden class="anchor" aria-hidden="true" href="#how-i-fixed-it">#</a></h2>
<p>Go to your <code>homeserver.yaml</code> file</p>
<div class="highlight"><pre tabindex="0" style="color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>nano /etc/matrix-synapse/homeserver.yaml
</span></span></code></pre></div><p>and go all the way to the bottom or search for <code>trusted_key_servers</code>. it&rsquo;s probably going to be <code>matrix.org</code>. You should change it to the following by removing <code>matrix.org</code> and leave blank square brackets:</p>
<pre tabindex="0"><code>trusted_key_servers: []
</code></pre>
</div>
<div id="nextprev">
<a href="/library/ted-kaczynski/the-techies-wet-dreams/"><div id="prevart">Previous:<br>The Techie&#39;s Wet-Dreams</div></a>
</div>
<div style="padding-top: 1.5em">
<div style="clear:both" class=taglist>
Tags: [<a id="tag_blog" href="https://vodoraslo.xyz/tags/blog">Blog</a>]
</div>
</div>
</article>
</main>
<footer class="rssSvg">
<div style="padding-bottom: 0.5em;"><a href="https://vodoraslo.xyz/">Homepage</a></div> <div><a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a></div>
</footer>
</body>
</html>

View file

@ -17,6 +17,7 @@
<article> <article>
<ul> <ul>
<li><time datetime="2023-05-04T10:12:26&#43;03:00">2023 May 04</time> &ndash; <a href="/blog/how-i-fixed-my-synapse-matrix-federation/">How I Fixed My Synapse Matrix Federation</a></li>
<li><time datetime="2023-01-12T21:34:30&#43;02:00">2023 Jan 12</time> &ndash; <a href="/blog/recover-lost-anki-streak/">Recover Lost Anki Streak</a></li> <li><time datetime="2023-01-12T21:34:30&#43;02:00">2023 Jan 12</time> &ndash; <a href="/blog/recover-lost-anki-streak/">Recover Lost Anki Streak</a></li>
<li><time datetime="2023-01-04T22:52:24&#43;02:00">2023 Jan 04</time> &ndash; <a href="/blog/meta-description-in-hugo/">Meta Description in Hugo</a></li> <li><time datetime="2023-01-04T22:52:24&#43;02:00">2023 Jan 04</time> &ndash; <a href="/blog/meta-description-in-hugo/">Meta Description in Hugo</a></li>
<li><time datetime="2023-01-03T22:36:03&#43;02:00">2023 Jan 03</time> &ndash; <a href="/blog/multiple-index-pages-in-hugo/">Multiple Index Pages in Hugo</a></li> <li><time datetime="2023-01-03T22:36:03&#43;02:00">2023 Jan 03</time> &ndash; <a href="/blog/multiple-index-pages-in-hugo/">Multiple Index Pages in Hugo</a></li>

View file

@ -5,11 +5,27 @@
<description>Recent content in Blog on vodoraslo</description> <description>Recent content in Blog on vodoraslo</description>
<generator>Hugo -- gohugo.io</generator> <generator>Hugo -- gohugo.io</generator>
<language>en-us</language> <language>en-us</language>
<lastBuildDate>Thu, 12 Jan 2023 21:34:30 +0200</lastBuildDate> <lastBuildDate>Thu, 04 May 2023 10:12:26 +0300</lastBuildDate>
<atom:link href="https://vodoraslo.xyz/blog/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/blog/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -33,6 +33,11 @@
<p><strong>Recent posts:</strong></p> <p><strong>Recent posts:</strong></p>
</div> </div>
<ul class="tenRecentPosts"> <ul class="tenRecentPosts">
<li><time
datetime="2023-05-04T10:12:26&#43;03:00">2023 May 04</time> &ndash;
<a href="/blog/how-i-fixed-my-synapse-matrix-federation/"><b class="white_span">How I Fixed My Synapse Matrix Federation</b></a> - <span
class="muted_text">Federation issues I for the life of me couldn&rsquo;t get synapse&rsquo;s (matrix&rsquo;s) federation to work. It said that the encryption …</span> <a href="/blog/how-i-fixed-my-synapse-matrix-federation/"
class="read_more_recent_posts" style="box-shadow: 0 1px 0;">Read more</a> <em>(1 minute read).</em></li>
<li><time <li><time
datetime="2023-04-15T18:58:23&#43;03:00">2023 Apr 15</time> &ndash; datetime="2023-04-15T18:58:23&#43;03:00">2023 Apr 15</time> &ndash;
<a href="/library/ted-kaczynski/the-techies-wet-dreams/"><b class="white_span">The Techie&#39;s Wet-Dreams</b></a> - <span <a href="/library/ted-kaczynski/the-techies-wet-dreams/"><b class="white_span">The Techie&#39;s Wet-Dreams</b></a> - <span
@ -81,11 +86,6 @@ I …</span> <a href="/updates/updated-the-css-again/"
<a href="/library/ted-kaczynski/ship-of-fools/"><b class="white_span">Ship of Fools</b></a> - <span <a href="/library/ted-kaczynski/ship-of-fools/"><b class="white_span">Ship of Fools</b></a> - <span
class="muted_text">Once upon a time, the captain and the mates of a ship grew so vain of their seamanship, so full of hubris and so impressed with themselves, that they …</span> <a href="/library/ted-kaczynski/ship-of-fools/" class="muted_text">Once upon a time, the captain and the mates of a ship grew so vain of their seamanship, so full of hubris and so impressed with themselves, that they …</span> <a href="/library/ted-kaczynski/ship-of-fools/"
class="read_more_recent_posts" style="box-shadow: 0 1px 0;">Read more</a> <em>(11 minute read).</em></li> class="read_more_recent_posts" style="box-shadow: 0 1px 0;">Read more</a> <em>(11 minute read).</em></li>
<li><time
datetime="2023-04-01T14:46:30&#43;03:00">2023 Apr 01</time> &ndash;
<a href="/library/ted-kaczynski/the-long-term-outcome-of-geo-engineering/"><b class="white_span">The Long Term Outcome of Geo Engineering</b></a> - <span
class="muted_text">In 2009, a correspondent asked me whether I thought nuclear weapons were the most dangerous aspect of modern technology. What follows is my reply, …</span> <a href="/library/ted-kaczynski/the-long-term-outcome-of-geo-engineering/"
class="read_more_recent_posts" style="box-shadow: 0 1px 0;">Read more</a> <em>(4 minute read).</em></li>
</ul> </ul>
</div> </div>

View file

@ -5,11 +5,27 @@
<description>Recent content in 🪸 vodoraslo 🪸 on vodoraslo</description> <description>Recent content in 🪸 vodoraslo 🪸 on vodoraslo</description>
<generator>Hugo -- gohugo.io</generator> <generator>Hugo -- gohugo.io</generator>
<language>en-us</language> <language>en-us</language>
<lastBuildDate>Sat, 15 Apr 2023 18:58:23 +0300</lastBuildDate> <lastBuildDate>Thu, 04 May 2023 10:12:26 +0300</lastBuildDate>
<atom:link href="https://vodoraslo.xyz/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/library/hackbook/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/library/hackbook/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/library/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/library/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/library/ted-kaczynski/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/library/ted-kaczynski/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -165,6 +165,7 @@ Like Kurzweil, many techies stand to profit financially from Technianity, but it
<div id="nextprev"> <div id="nextprev">
<a href="/library/ted-kaczynski/forward-to-technological-slavery/"><div id="prevart">Previous:<br>Forward to Technological Slavery</div></a> <a href="/library/ted-kaczynski/forward-to-technological-slavery/"><div id="prevart">Previous:<br>Forward to Technological Slavery</div></a>
<a href="/blog/how-i-fixed-my-synapse-matrix-federation/"><div id="nextart">Next:<br>How I Fixed My Synapse Matrix Federation</div></a>
</div> </div>
<div style="padding-top: 1.5em"> <div style="padding-top: 1.5em">
<div style="clear:both" class=taglist> <div style="clear:both" class=taglist>

View file

@ -2,8 +2,17 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml"> xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url> <url>
<loc>https://vodoraslo.xyz/blog/</loc>
<lastmod>2023-05-04T10:12:26+03:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</loc>
<lastmod>2023-05-04T10:12:26+03:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/tags/</loc> <loc>https://vodoraslo.xyz/tags/</loc>
<lastmod>2023-04-15T18:58:23+03:00</lastmod> <lastmod>2023-05-04T10:12:26+03:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/</loc>
<lastmod>2023-05-04T10:12:26+03:00</lastmod>
</url><url> </url><url>
<loc>https://vodoraslo.xyz/tags/ted-kaczynski/</loc> <loc>https://vodoraslo.xyz/tags/ted-kaczynski/</loc>
<lastmod>2023-04-15T18:58:23+03:00</lastmod> <lastmod>2023-04-15T18:58:23+03:00</lastmod>
@ -13,9 +22,6 @@
</url><url> </url><url>
<loc>https://vodoraslo.xyz/library/</loc> <loc>https://vodoraslo.xyz/library/</loc>
<lastmod>2023-04-15T18:58:23+03:00</lastmod> <lastmod>2023-04-15T18:58:23+03:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/</loc>
<lastmod>2023-04-15T18:58:23+03:00</lastmod>
</url><url> </url><url>
<loc>https://vodoraslo.xyz/library/ted-kaczynski/forward-to-technological-slavery/</loc> <loc>https://vodoraslo.xyz/library/ted-kaczynski/forward-to-technological-slavery/</loc>
<lastmod>2023-04-15T18:57:52+03:00</lastmod> <lastmod>2023-04-15T18:57:52+03:00</lastmod>
@ -70,9 +76,6 @@
</url><url> </url><url>
<loc>https://vodoraslo.xyz/library/ted-kaczynski/</loc> <loc>https://vodoraslo.xyz/library/ted-kaczynski/</loc>
<lastmod>2023-03-23T18:05:37+02:00</lastmod> <lastmod>2023-03-23T18:05:37+02:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/blog/</loc>
<lastmod>2023-01-12T21:34:30+02:00</lastmod>
</url><url> </url><url>
<loc>https://vodoraslo.xyz/blog/recover-lost-anki-streak/</loc> <loc>https://vodoraslo.xyz/blog/recover-lost-anki-streak/</loc>
<lastmod>2023-01-12T21:34:30+02:00</lastmod> <lastmod>2023-01-12T21:34:30+02:00</lastmod>

View file

@ -17,6 +17,7 @@
<article> <article>
<ul> <ul>
<li><time datetime="2023-05-04T10:12:26&#43;03:00">2023 May 04</time> &ndash; <a href="/blog/how-i-fixed-my-synapse-matrix-federation/">How I Fixed My Synapse Matrix Federation</a></li>
<li><time datetime="2023-01-12T21:34:30&#43;02:00">2023 Jan 12</time> &ndash; <a href="/blog/recover-lost-anki-streak/">Recover Lost Anki Streak</a></li> <li><time datetime="2023-01-12T21:34:30&#43;02:00">2023 Jan 12</time> &ndash; <a href="/blog/recover-lost-anki-streak/">Recover Lost Anki Streak</a></li>
<li><time datetime="2023-01-04T22:52:24&#43;02:00">2023 Jan 04</time> &ndash; <a href="/blog/meta-description-in-hugo/">Meta Description in Hugo</a></li> <li><time datetime="2023-01-04T22:52:24&#43;02:00">2023 Jan 04</time> &ndash; <a href="/blog/meta-description-in-hugo/">Meta Description in Hugo</a></li>
<li><time datetime="2023-01-03T22:36:03&#43;02:00">2023 Jan 03</time> &ndash; <a href="/blog/multiple-index-pages-in-hugo/">Multiple Index Pages in Hugo</a></li> <li><time datetime="2023-01-03T22:36:03&#43;02:00">2023 Jan 03</time> &ndash; <a href="/blog/multiple-index-pages-in-hugo/">Multiple Index Pages in Hugo</a></li>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/tags/blog/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/tags/blog/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/tags/hackbook/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/tags/hackbook/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -5,11 +5,27 @@
<description>Recent content in Tags on vodoraslo</description> <description>Recent content in Tags on vodoraslo</description>
<generator>Hugo -- gohugo.io</generator> <generator>Hugo -- gohugo.io</generator>
<language>en-us</language> <language>en-us</language>
<lastBuildDate>Sat, 15 Apr 2023 18:58:23 +0300</lastBuildDate> <lastBuildDate>Thu, 04 May 2023 10:12:26 +0300</lastBuildDate>
<atom:link href="https://vodoraslo.xyz/tags/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/tags/library/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/tags/library/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/tags/ted-kaczynski/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/tags/ted-kaczynski/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/tags/updates/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/tags/updates/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>

View file

@ -10,6 +10,22 @@
<atom:link href="https://vodoraslo.xyz/updates/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="https://vodoraslo.xyz/updates/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How I Fixed My Synapse Matrix Federation</title>
<link>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</link>
<pubDate>Thu, 04 May 2023 10:12:26 +0300</pubDate>
<guid>https://vodoraslo.xyz/blog/how-i-fixed-my-synapse-matrix-federation/</guid>
<description>&lt;h2 id=&#34;federation-issues&#34;&gt;Federation issues&lt;/h2&gt;
&lt;p&gt;I for the life of me couldn&amp;rsquo;t get synapse&amp;rsquo;s (matrix&amp;rsquo;s) federation to work. It said that the encryption couldn&amp;rsquo;t be trusted, i could join public rooms but i couldn&amp;rsquo;t start any chats, i couldn&amp;rsquo;t invite people to my rooms, i couldn&amp;rsquo;t get invited to rooms.&lt;/p&gt;
&lt;h2 id=&#34;how-i-fixed-it&#34;&gt;How I fixed it&lt;/h2&gt;
&lt;p&gt;Go to your &lt;code&gt;homeserver.yaml&lt;/code&gt; file&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/matrix-synapse/homeserver.yaml
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;and go all the way to the bottom or search for &lt;code&gt;trusted_key_servers&lt;/code&gt;. it&amp;rsquo;s probably going to be &lt;code&gt;matrix.org&lt;/code&gt;. You should change it to the following by removing &lt;code&gt;matrix.org&lt;/code&gt; and leave blank square brackets:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;trusted_key_servers: []
&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item> <item>
<title>The Techie&#39;s Wet-Dreams</title> <title>The Techie&#39;s Wet-Dreams</title>
<link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link> <link>https://vodoraslo.xyz/library/ted-kaczynski/the-techies-wet-dreams/</link>