<?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[Trying to add an sshfs mounted location as a regular file system volume type in Cloudron]]></title><description><![CDATA[<p dir="auto">Trying to add an sshfs mounted location as a regular filesystem volume type in Cloudron.</p>
<p dir="auto">I have a working SSHFS mount in /mnt/folder</p>
<p dir="auto">When trying to I am trying to add the /mnt/folder to Cloudron as a filesystem volume type, I am getting this error: <strong>hostPath must be a realpath without symlinks</strong></p>
<p dir="auto">The reason I want to do this, is because Cloudron will not let me use an SSHFS volume as a data-volume for my (immich) Cloudron-app.</p>
<p dir="auto">debug:<br />
sshfs mount works perfectly<br />
permissions are lax, set to 777 on the mountpoint folder</p>
<p dir="auto">more background of why I want to do this here: <a href="https://forum.cloudron.io/topic/12239/storage-management-in-immich/46">https://forum.cloudron.io/topic/12239/storage-management-in-immich/46</a></p>
<p dir="auto">Thanks for any suggestions!</p>
]]></description><link>https://forum.cloudron.io/topic/13856/trying-to-add-an-sshfs-mounted-location-as-a-regular-file-system-volume-type-in-cloudron</link><generator>RSS for Node</generator><lastBuildDate>Sat, 12 Sep 2026 20:29:22 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/13856.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 30 May 2025 15:25:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Tue, 07 Oct 2025 16:13:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/andreasdueren" aria-label="Profile: andreasdueren">@<bdi>andreasdueren</bdi></a> you're welcome, I forgot to post the <a href="https://docs.hetzner.com/storage/storage-box/access/access-ssh-rsync-borg/#rclone" target="_blank" rel="noopener noreferrer nofollow ugc">Hetzner docs</a>, they also have a bit of information on that. Speeds are fine, never had any issues with various kinds of media.</p>
]]></description><link>https://forum.cloudron.io/post/113521</link><guid isPermaLink="true">https://forum.cloudron.io/post/113521</guid><dc:creator><![CDATA[msbt]]></dc:creator><pubDate>Tue, 07 Oct 2025 16:13:53 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Mon, 06 Oct 2025 17:02:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/msbt" aria-label="Profile: msbt">@<bdi>msbt</bdi></a> nice, thanks! Will have to read out on that. How is speed? Are you using it for immich?</p>
]]></description><link>https://forum.cloudron.io/post/113470</link><guid isPermaLink="true">https://forum.cloudron.io/post/113470</guid><dc:creator><![CDATA[andreasdueren]]></dc:creator><pubDate>Mon, 06 Oct 2025 17:02:03 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Mon, 06 Oct 2025 16:33:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/andreasdueren" aria-label="Profile: andreasdueren">@<bdi>andreasdueren</bdi></a> yep, I did this to install and configure it:</p>
<pre><code>curl https://rclone.org/install.sh | sudo bash
rclone config
</code></pre>
<p dir="auto">after that, the config will resides in</p>
<pre><code>~/.config/rclone/rclone.conf
</code></pre>
<p dir="auto">and will look something like this (I enabled encryption too, because why not <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=f0ef0373a83" class="not-responsive emoji emoji-android emoji--wink" style="height:23px;width:auto;vertical-align:middle" title=";)" alt="😉" /> :</p>
<pre><code>[backup]
type = sftp
host = u123456-sub1.your-storagebox.de
user = u123456-sub1
port = 23
pass = hashed_pwd
md5sum_command = md5 -r
sha1sum_command = sha1 -r
shell_type = unix
idle_timeout = 0

[backupcrypt]
type = crypt
remote = backup:backup
</code></pre>
<p dir="auto">mounting:</p>
<pre><code>mkdir /mnt/backup
chown -R yellowtent:yellowtent /mnt/backup
rclone mount backupcrypt: /mnt/backup \
    --crypt-password "verylonghashedpwd" \
    --crypt-password2 "evenlongerhashedpwd" \
    --vfs-cache-mode writes --daemon --transfers 3 --checkers 6 --allow-other
</code></pre>
<p dir="auto">The last bit was the important one, without it mounting wasn't possible. You should now be able to mount the rclone thing as a volume. For whatever reason it shows the red dot, I'm guessing that's because of the fs. However, I haven't had an issue with that in months. Currently I'm mounting it manually on every machine reboot, but there are <a href="https://rclone.org/commands/rclone_mount/#rclone-as-unix-mount-helper" target="_blank" rel="noopener noreferrer nofollow ugc">ways to mount it automatically</a>.</p>
]]></description><link>https://forum.cloudron.io/post/113468</link><guid isPermaLink="true">https://forum.cloudron.io/post/113468</guid><dc:creator><![CDATA[msbt]]></dc:creator><pubDate>Mon, 06 Oct 2025 16:33:53 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Mon, 06 Oct 2025 15:41:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/msbt" aria-label="Profile: msbt">@<bdi>msbt</bdi></a> Yes the regular storage box setup i'm well familiar with. But that won't work with immich. So you installed rclone and <a href="https://docs.hetzner.com/storage/storage-box/access/access-ssh-rsync-borg/#rclone" target="_blank" rel="noopener noreferrer nofollow ugc">connected via the SFTP backend</a>?</p>
]]></description><link>https://forum.cloudron.io/post/113467</link><guid isPermaLink="true">https://forum.cloudron.io/post/113467</guid><dc:creator><![CDATA[andreasdueren]]></dc:creator><pubDate>Mon, 06 Oct 2025 15:41:55 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Sun, 05 Oct 2025 16:45:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/andreasdueren" aria-label="Profile: andreasdueren">@<bdi>andreasdueren</bdi></a> the setup in this case is based on rclone, is that what you're looking for? Because the regular storage box setup you probably already know of, since you posted in there as well <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=f0ef0373a83" class="not-responsive emoji emoji-android emoji--wink" style="height:23px;width:auto;vertical-align:middle" title=";)" alt="😉" /> <a href="https://forum.cloudron.io/post/32783">https://forum.cloudron.io/post/32783</a></p>
]]></description><link>https://forum.cloudron.io/post/113435</link><guid isPermaLink="true">https://forum.cloudron.io/post/113435</guid><dc:creator><![CDATA[msbt]]></dc:creator><pubDate>Sun, 05 Oct 2025 16:45:37 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Sun, 05 Oct 2025 16:14:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/msbt" aria-label="Profile: msbt">@<bdi>msbt</bdi></a> I'm sorry but could you do a small writeup of your setup? I'd be interested in using a storage box as storage backend.</p>
]]></description><link>https://forum.cloudron.io/post/113433</link><guid isPermaLink="true">https://forum.cloudron.io/post/113433</guid><dc:creator><![CDATA[andreasdueren]]></dc:creator><pubDate>Sun, 05 Oct 2025 16:14:13 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Fri, 13 Jun 2025 14:16:38 GMT]]></title><description><![CDATA[<p dir="auto">My issue is resolved, adding a <code>--allow-other</code> parameter to the mount solved it, thanks <a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> and <a class="plugin-mentions-user plugin-mentions-a" href="/user/joseph" aria-label="Profile: joseph">@<bdi>joseph</bdi></a></p>
]]></description><link>https://forum.cloudron.io/post/108630</link><guid isPermaLink="true">https://forum.cloudron.io/post/108630</guid><dc:creator><![CDATA[msbt]]></dc:creator><pubDate>Fri, 13 Jun 2025 14:16:38 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Wed, 11 Jun 2025 10:06:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/msbt" aria-label="Profile: msbt">@<bdi>msbt</bdi></a> can you instead write to me at <a href="mailto:support@cloudron.io" target="_blank" rel="noopener noreferrer nofollow ugc">support@cloudron.io</a> please? Will debug it right away.</p>
]]></description><link>https://forum.cloudron.io/post/108456</link><guid isPermaLink="true">https://forum.cloudron.io/post/108456</guid><dc:creator><![CDATA[joseph]]></dc:creator><pubDate>Wed, 11 Jun 2025 10:06:37 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Wed, 11 Jun 2025 09:10:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/joseph" aria-label="Profile: joseph">@<bdi>joseph</bdi></a> happy to, can you maybe enable chat so we can do that 1:1?</p>
]]></description><link>https://forum.cloudron.io/post/108452</link><guid isPermaLink="true">https://forum.cloudron.io/post/108452</guid><dc:creator><![CDATA[msbt]]></dc:creator><pubDate>Wed, 11 Jun 2025 09:10:48 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Wed, 11 Jun 2025 09:05:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/msbt" aria-label="Profile: msbt">@<bdi>msbt</bdi></a> you are trying to add <code>/mnt/media</code> in the Volumes view ? I cannot see why <a href="https://git.cloudron.io/platform/box/-/blob/master/src/volumes.js?ref_type=heads#L57" target="_blank" rel="noopener noreferrer nofollow ugc">https://git.cloudron.io/platform/box/-/blob/master/src/volumes.js?ref_type=heads#L57</a> will fail . That's where the error message comes from. If you are ok debugging a bit, just put some console.log in that function and systemctl restart box.</p>
]]></description><link>https://forum.cloudron.io/post/108451</link><guid isPermaLink="true">https://forum.cloudron.io/post/108451</guid><dc:creator><![CDATA[joseph]]></dc:creator><pubDate>Wed, 11 Jun 2025 09:05:54 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Wed, 11 Jun 2025 09:00:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/joseph" aria-label="Profile: joseph">@<bdi>joseph</bdi></a> sure:</p>
<pre><code>/mnt# node -e "console.log(fs.realpathSync('/mnt/media'))"
/mnt/media
</code></pre>
]]></description><link>https://forum.cloudron.io/post/108450</link><guid isPermaLink="true">https://forum.cloudron.io/post/108450</guid><dc:creator><![CDATA[msbt]]></dc:creator><pubDate>Wed, 11 Jun 2025 09:00:36 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Wed, 11 Jun 2025 08:57:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/msbt" aria-label="Profile: msbt">@<bdi>msbt</bdi></a> said in <a href="/post/108447">Trying to add an sshfs mounted location as a regular file system volume type in Cloudron</a>:</p>
<blockquote>
<p dir="auto">Your command doesn't fail, but doesn't give any output either.</p>
</blockquote>
<p dir="auto">My bad... Can you try like this:</p>
<pre><code>root@my:/mnt# node -e "console.log(fs.realpathSync('/mnt/folder'))"
/mnt/folder
</code></pre>
]]></description><link>https://forum.cloudron.io/post/108449</link><guid isPermaLink="true">https://forum.cloudron.io/post/108449</guid><dc:creator><![CDATA[joseph]]></dc:creator><pubDate>Wed, 11 Jun 2025 08:57:10 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Wed, 11 Jun 2025 08:52:17 GMT]]></title><description><![CDATA[<p dir="auto">Can only speak for my issue, not a symlink:</p>
<pre><code>/mnt# ls -la
total 12
drwxr-xr-x  4 root root 4096 Jun  9 09:21 .
drwxr-xr-x 23 root root 4096 Dec 17 11:10 ..
drwxr-xr-x  1 root root    0 Jun  9 09:22 media
drwxr-xr-x  2 root root 4096 Dec 17 11:31 volumes
</code></pre>
<p dir="auto">Your command doesn't fail, but doesn't give any output either.</p>
]]></description><link>https://forum.cloudron.io/post/108447</link><guid isPermaLink="true">https://forum.cloudron.io/post/108447</guid><dc:creator><![CDATA[msbt]]></dc:creator><pubDate>Wed, 11 Jun 2025 08:52:17 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Wed, 11 Jun 2025 08:25:28 GMT]]></title><description><![CDATA[<p dir="auto">Didn't get an answer to my earlier question. Is it a symlink? You can't add symlinks.</p>
<p dir="auto">Can you try <code>node -e "fs.realpathSync('/the/path')"</code> ? This function is failing or returning something other than the path you are adding for some reason.</p>
]]></description><link>https://forum.cloudron.io/post/108440</link><guid isPermaLink="true">https://forum.cloudron.io/post/108440</guid><dc:creator><![CDATA[joseph]]></dc:creator><pubDate>Wed, 11 Jun 2025 08:25:28 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Mon, 09 Jun 2025 09:29:45 GMT]]></title><description><![CDATA[<p dir="auto">Also getting that message, but on a different use-case. I'm trying to add a (sftp) rclone mount to Cloudron. Mounting and browsing works fine, but when trying to add it as a volume, it says <code>hostPath must be a realpath without symlinks</code>. Is that not supported?</p>
]]></description><link>https://forum.cloudron.io/post/108350</link><guid isPermaLink="true">https://forum.cloudron.io/post/108350</guid><dc:creator><![CDATA[msbt]]></dc:creator><pubDate>Mon, 09 Jun 2025 09:29:45 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Tue, 03 Jun 2025 10:14:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/makemrproper" aria-label="Profile: makemrproper">@<bdi>makemrproper</bdi></a> said in <a href="/post/107910">Trying to add an sshfs mounted location as a regular file system volume type in Cloudron</a>:</p>
<blockquote>
<p dir="auto">When trying to I am trying to add the /mnt/folder to Cloudron as a filesystem volume type, I am getting this error: hostPath must be a realpath without symlinks</p>
</blockquote>
<p dir="auto">Just tested this and this works fine here. Is /mnt/folder a symlink? I have a fstab line to mount a sshfs into /mnt/folder . And then I just added Filesystem mount type in Volumes view.</p>
]]></description><link>https://forum.cloudron.io/post/108083</link><guid isPermaLink="true">https://forum.cloudron.io/post/108083</guid><dc:creator><![CDATA[joseph]]></dc:creator><pubDate>Tue, 03 Jun 2025 10:14:38 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Mon, 02 Jun 2025 11:14:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/makemrproper" aria-label="Profile: makemrproper">@<bdi>makemrproper</bdi></a> I'm sorry could you summarize or even give step-by-step instructions on what you ended up doing?</p>
]]></description><link>https://forum.cloudron.io/post/108037</link><guid isPermaLink="true">https://forum.cloudron.io/post/108037</guid><dc:creator><![CDATA[andreasdueren]]></dc:creator><pubDate>Mon, 02 Jun 2025 11:14:44 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Sun, 01 Jun 2025 01:09:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/makemrproper" aria-label="Profile: makemrproper">@<bdi>makemrproper</bdi></a> said in <a href="/post/107943">Trying to add an sshfs mounted location as a regular file system volume type in Cloudron</a>:</p>
<blockquote>
<p dir="auto">or direct block device</p>
</blockquote>
<p dir="auto"><a href="https://linbit.com/drbd/" target="_blank" rel="noopener noreferrer nofollow ugc">https://linbit.com/drbd/</a> is the gold standard.</p>
]]></description><link>https://forum.cloudron.io/post/107959</link><guid isPermaLink="true">https://forum.cloudron.io/post/107959</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Sun, 01 Jun 2025 01:09:10 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Sat, 31 May 2025 07:05:19 GMT]]></title><description><![CDATA[<p dir="auto">Sounds like the case is identical, yes :).</p>
<p dir="auto">Great workaround! I will try it.</p>
<p dir="auto">Solving it at the hypervisor level is not any better than directly on the cloudron vm. There is no way to share a folder to a vm. Only nfs, cifs, sshfs or direct block device.</p>
<p dir="auto">The reason is that our phones are growing, and at current I need to sync 5x family members phones at 1tb. Not insane anounts of course, but way beyond the m2.ssd cloudron is running on.</p>
]]></description><link>https://forum.cloudron.io/post/107943</link><guid isPermaLink="true">https://forum.cloudron.io/post/107943</guid><dc:creator><![CDATA[makemrproper]]></dc:creator><pubDate>Sat, 31 May 2025 07:05:19 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Sat, 31 May 2025 05:54:44 GMT]]></title><description><![CDATA[<p dir="auto">I'm facing the same issue with Nextcloud and trying to tune the performance of SSHFS (<a href="https://forum.cloudron.io/topic/13852/sshfs-read-speed-significantly-slower-than-scp-with-the-same-target/9">https://forum.cloudron.io/topic/13852/sshfs-read-speed-significantly-slower-than-scp-with-the-same-target/9</a>) . The answer, at least for Nextcloud, is to adjust the configuration file. Instead of trying to "trick" Cloudron into accepting an SSHFS mount point as the primary storage, just adjust the applications config file to point to the mount point. Not sure if it will work for Immich, but it works for Nextcloud.</p>
<p dir="auto">Also, I'm doing this with Nextcloud for the exact same reason - I want to manage my pictures. I'm trying the "Memories" plugin in Nextcloud which has prettty good reviews. I'll probably move on to Immich next for testing. <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=f0ef0373a83" 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/107942</link><guid isPermaLink="true">https://forum.cloudron.io/post/107942</guid><dc:creator><![CDATA[djxx]]></dc:creator><pubDate>Sat, 31 May 2025 05:54:44 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Fri, 30 May 2025 18:55:43 GMT]]></title><description><![CDATA[<p dir="auto">I will look into solving this at the hypervisor level and exposing folders to the guest vm that way.</p>
]]></description><link>https://forum.cloudron.io/post/107927</link><guid isPermaLink="true">https://forum.cloudron.io/post/107927</guid><dc:creator><![CDATA[makemrproper]]></dc:creator><pubDate>Fri, 30 May 2025 18:55:43 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Fri, 30 May 2025 16:46:42 GMT]]></title><description><![CDATA[<p dir="auto">I meant Filesystem Volume type, yes. Will update original post to reflect this.</p>
]]></description><link>https://forum.cloudron.io/post/107917</link><guid isPermaLink="true">https://forum.cloudron.io/post/107917</guid><dc:creator><![CDATA[makemrproper]]></dc:creator><pubDate>Fri, 30 May 2025 16:46:42 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Fri, 30 May 2025 16:24:29 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/makemrproper" aria-label="Profile: makemrproper">@<bdi>makemrproper</bdi></a><br />
Let me repeat what I understood.<br />
You have a working <code>sshfs</code> mount at <code>/mnt/folder</code>.<br />
You want to use <code>regular file</code> as a Cloudron volume type? This type does not exist. Did you mean <a href="https://docs.cloudron.io/volumes/#filesystem" target="_blank" rel="noopener noreferrer nofollow ugc">filesystem</a> volume type?</p>
]]></description><link>https://forum.cloudron.io/post/107913</link><guid isPermaLink="true">https://forum.cloudron.io/post/107913</guid><dc:creator><![CDATA[james]]></dc:creator><pubDate>Fri, 30 May 2025 16:24:29 GMT</pubDate></item><item><title><![CDATA[Reply to Trying to add an sshfs mounted location as a regular file system volume type in Cloudron on Fri, 30 May 2025 16:18:54 GMT]]></title><description><![CDATA[<p dir="auto">Following this topic for the same reasons</p>
]]></description><link>https://forum.cloudron.io/post/107912</link><guid isPermaLink="true">https://forum.cloudron.io/post/107912</guid><dc:creator><![CDATA[andreasdueren]]></dc:creator><pubDate>Fri, 30 May 2025 16:18:54 GMT</pubDate></item></channel></rss>