Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 682 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 682 Bytes

feed2imap

Load RSS/ATOM feeds and store them in a IMAP mailbox, allowing one to read its feeds from a mail client compatible with IMAP.

build

feed2imap is a rust crate, build it using:

cargo build
# or
cargo install

configuration

feed2imap expects to find a configuration file at ~/.config/feed2imap.toml, or by passing it by a command line option --option.

The format for configuration is TOML, and must ressemble this:

[imap]
host = "mail.example.com"
port = 993
username = "test"
password = "azerty123"
name = "John Smith"
email = "test@example.com"

[[feeds]]
url = "http://example.org/rss"

[[feeds]]
url = "http://another.org/atom"