Page 1 of 1

Adding This Forum's ATOM Feed to Thunderbird Works

Posted: Sun Aug 09, 2020 2:48 am
by rockedge
I enabled the ATOM feed feature on the forum.

I was able to configure the mail client Thunderbird to handle an ATOM feed connection to the puppylinux.rockedge.org forum with the
URL ->

Code: Select all

https://puppylinux.rockedge.org/feed.php


and using the Setup Accounts:Feeds selection in the settings.
I find it works well so far.

Re: Adding This Forum's ATOM Feed to Thunderbird Works

Posted: Sun Aug 09, 2020 4:52 pm
by Flash
What does it do?

Re: Adding This Forum's ATOM Feed to Thunderbird Works

Posted: Sun Aug 09, 2020 5:07 pm
by rockedge
Hello @Flash,
The ATOM feed is similar to a RSS feed. With the Thunderbird email client I can receive a summary of each new post directly to Thunderbird. Where I can along with the many email addresses across different services all managed from a single client. It is another way of monitoring new posts.

The name Atom applies to a pair of related Web standards. The Atom Syndication Format is an XML language used for web feeds, while the Atom Publishing Protocol (AtomPub or APP) is a simple HTTP-based protocol for creating and updating web resources.[1]

Web feeds allow software programs to check for updates published on a website. To provide a web feed, the site owner may use specialized software (such as a content management system) that publishes a list (or "feed") of recent articles or content in a standardized, machine-readable format. The feed can then be downloaded by programs that use it, like websites that syndicate content from the feed, or by feed reader programs that allow internet users to subscribe to feeds and view their content.

A feed contains entries, which may be headlines, full-text articles, excerpts, summaries or links to content on a website along with various metadata.

Re: Adding This Forum's ATOM Feed to Thunderbird Works

Posted: Sun Aug 09, 2020 5:20 pm
by 666philb
@rockedge nice! .... works in claws-mail with the mail-feed plugin

Re: Adding This Forum's ATOM Feed to Thunderbird Works

Posted: Mon Aug 10, 2020 11:33 am
by mikewalsh
Useful!

Thanks, rockedge. :thumbup: :thumbup:


Mike. :)

Re: Adding This Forum's ATOM Feed to Thunderbird Works

Posted: Mon Aug 10, 2020 1:01 pm
by galbi
Works fine in Palemoon browser with Sage extension.

Saludos.

Re: Adding This Forum's ATOM Feed to Thunderbird Works

Posted: Mon Aug 10, 2020 2:45 pm
by rockedge
Hello galbi,

Great tip about adding the Sage extension to palemoon! This works really well. Now I have also the builtin palemoon Live Bookmarks working along with Sage. Really adds another dimension of access.

Re: Adding This Forum's ATOM Feed to Thunderbird Works

Posted: Mon Aug 10, 2020 8:26 pm
by williams2
This script downloads the ATOM feed file,
then displays it using Rox:

Code: Select all

#!/bin/ash
wget -O /tmp/forum.html https://puppylinux.rockedge.org/feed
rox /tmp/forum.html
The rox /tmp/forum.html line executes whatever program rox uses to display html files,
that is, it's exactly as if you clicked it.

In my case, it pops up a links web browser window.
Links doesn't work on the rockedge forum, because links doesn't have javascript support.
Links works on the Murga forum.
And links works with the ATOM feed file, no need for javascript.

Edit: the feed address changed slightly.