5个版本
0.1.8 | 2022年4月16日 |
---|---|
0.1.7 | 2021年12月4日 |
0.1.2 | 2021年12月4日 |
0.1.1 | 2021年11月28日 |
0.1.0 | 2021年11月27日 |
#279 in 电子邮件
21KB
278 行
RSS Emailer
本项目提供从配置的RSS源读取和将任何新帖子通过电子邮件发送给配置的接收者的功能。
当RSS Emailer运行时,接收者将收到一封主题设置为: RSS:<Feed Title> - <Feed Item Name>
的电子邮件。
电子邮件正文将是RSS条目的 description
字段的HTML内容。
配置
RSS Emailer通过位于 ~/.config/rss_emailer/config 的文件进行配置
该文件将以纯文本形式存储,因此请确保限制权限,以防止对SMTP密码的访问。
所需的最低配置如下,有关所有选项,请参阅 config.example。
[smtp]
server = "mail.example.com"
user = "[email protected]"
password = "password"
[rss_mail]
to = "[email protected]"
# Feeds are a listing of key-value pairs of feed-name and URL to the feed
# feed-name can be any string key used to identify the feed, it the feed
# does not have a title then this will be used in place of the title.
# Example feed is listed below - remove this if you do not want to receive
# updates for hanselman.com
[feeds]
hanselman = "http://feeds.hanselman.com/ScottHanselman"
调度
RSS Emailer没有配置的调度程序。如果您希望定期接收更新,您应该通过调度工具(如 cron
或 Windows任务计划程序)进行配置。
依赖关系
~13–28MB
~497K SLoC