Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
The Easy Way to Send RSS Feeds to Email
Avoid information explosion and AI Recommendation Algorithms
Improve the efficiency of information acquisition
# install
$ npm install -g rss-mailer
# run
$ rssmailer -c path/to/config
The configure file supports .json
and .js
formats.
Example:
module.exports = {
// RSS url list
feeds: [
// Easy to use via url
"https://waynegong.cn/atom.xml",
// Full usage configuration
{
url: "https://www.ruanyifeng.com/blog/atom.xml", // Url is required
charset: "utf8", // Support 'utf8' 'gbk', default 'utf8'
timeout: 30000, // Timeout for requesting RSS feeds, default 30000 ms
},
],
sender: [
{
type: "email", // Send to email
// SMTP configure
host: "mail.waynegong.cn",
port: 465,
secure: true,
auth: {
user: "rssmailer@waynegong.cn",
pass: "******",
},
// Email configure
subject: "RSSMailer Dailly",
from: "RSSMailer <RSSMailer@waynegong.cn>",
to: "me@waynegong.cn",
},
{
type: "file", // Write to file
path: "output.html", // File path is required
},
],
filter: [
{
type: "fresh", // Filter based on freshness policy
fresh: 86400000, // Within the last 24 hours (24 * 60 * 60 * 1000)ms
}
],
};
FAQs
RssMailer
The npm package rss-mailer receives a total of 4 weekly downloads. As such, rss-mailer popularity was classified as not popular.
We found that rss-mailer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.