Sorting the Harvest
Charly's Column – rss2email
In order to keep up to date with security, Charly uses RSS feeds, among other things. He lets rss2email send the most important feeds directly to his mailbox to ensure that nothing is overlooked.
RSS feeds are still an essential part of my daily information refueling plan. I sort my feeds in Miniflux, a web-based RSS aggregator, which I wrote about in this column back in 2014 [1]. I am happy to say that Miniflux is still being actively developed.
I have a very small number of RSS feeds emailed to me directly. These are feeds that warn me of acute security problems. By having them delivered directly to my inbox, I can avoid the risk of missing an important article – Miniflux can handle between 200 and 250 feeds, most of which I just skim.
I use rss2email – a very logical choice of name – to email me the feeds. It can be found in the package sources of almost all the popular distributions. On Ubuntu, for example, I installed it with the following call:
$ sudo apt install rss2email
Before using rss2email for the first time, you have to create a configuration file; the approach is very clear-cut. If there is no folder named .config/
in your home directory, you have to create one and cd
to it:
$ cd $ mkdir .config $ cd .config/
When you get there, use the editor of your choice to create the rss2email.cfg
configuration file with the content from Listing 1; the force-from = True
entry is of special importance here. Normally, rss2email would use a sender address from the RSS feed if it found one there. However, on many mail systems, this leads to the spam filter rightly becoming suspicious. The force-from = True
entry now causes rss2email to always use the address stored in the from
line. Whether you set html-mail
to True
or False
is a matter of taste.
Listing 1
rss2email.cfg
[DEFAULT] from = rss@mydomain.com force-from = True html-mail = False to = charly@mydomain.com
Now it's time to choose one or more RSS feeds that you want rss2email to check out regularly. The syntax for this is:
r2e add <title> <URL>
For the DFN Certificate RSS feed, which informs admins of current security problems, look at the first line in Listing 2. Whether the add
action worked can be verified using r2e list
(line 2). It worked in my example.
Listing 2
Enter and check RSS feed
01 $ r2e add DFNCert https://adv-archiv.dfn-cert.de/rss/latest 02 $ r2e list 03 0: [*] DFNCERT (https://adv-archiv.dfn-cert.de/rss/latest -> charly@mydomain.com)
The r2e run
command traverses the feeds and dispatches the emails. Now all I need to do is write a crontab entry to run the command at specified intervals (e.g., every 30 minutes). To do so, I type crontab -e
and add the crontab line from Listing 3.
Listing 3
Cron job for rss2email
*/30 * * * * /usr/bin/r2e run > /dev/null 2>&1
Sure enough, the first messages start to slowly arrive in my mailbox (Figure 1). The important thing here is to be careful about the rss2email feeds you choose; otherwise you might flood your inbox – just staying with Miniflux would be preferable to that.
Infos
- "The sys admin's daily grind: Miniflux" by Charly Kühnast, Linux Magazine, issue 164, July 2014, p. 50, https://www.linux-magazine.com/Issues/2014/164/Charly-s-Column-Miniflux/(language)/eng-US
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.