将雷鸟 RSS 提要导出到 liferea

tin*_*hed 5 thunderbird rss liferea

我使用 Thunderbird 作为我的主要 RSS 提要阅读器。最近 Thunderbird 加载非常缓慢且非常缓慢。我想试试liferea。有什么方法可以将我的订阅导出到 liferea(OPML 或其他)?

lov*_*nux 9

在 Thunderbird 中,单击博客和新闻提要帐户主页中的管理订阅,选择导出,选择一个文件夹,然后单击保存

在 Liferea 中,点击Subscriptions >> Import Feed List,选择 Thunderbird 导出的 opml 文件,点击Import

替代文字

就个人而言,我不喜欢 Thunderbird 或 Liferea 的提要,因为我喜欢在浏览器中阅读它们。我目前正在使用 Opera,但我已经在https://askubuntu.com/questions/9757/ 上为独立和其他类型的读者发布了一些建议

您还可以优化您的 Thunderbird。从File >> Compact Folders压缩您的邮件文件。这应该会提高性能。

我不使用它,也从未尝试优化它,就像我使用 Firefox 一样。但由于它是一个使用 sqlite 的 Mozilla XUL 应用程序,您也可以尝试使用以下脚本优化数据库。您将需要 sqlite3 命令行界面:

sqlite3 安装 sqlite3

#!/bin/bash

killall thunderbird
echo "Please wait while the databases are optimized..."
find $HOME/.thunderbird/ \( -name "*.sqlite" \) -exec sqlite3 {} "vacuum" \;
echo "Thunderbird databases optimized with success! You can close this terminal."
read
Run Code Online (Sandbox Code Playgroud)