You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently migrating feeds to a different baseURL, which means that maubot-rss would recognize all items as new, because their url changed. We don't want all users to get spammed with old messages again.
I could imagine such an option beeing useful for maubot-rss as well. If this is wanted, I would offer to implement this somewhat like this:
# bot.py line 143...skip_broadcast=self.config["skip_broadcast"]
ifnotskip_broadcast:
forentryinnew_entries.values():
awaitself._broadcast(feed, entry, feed.subscriptions)
else:
self.log.debug("Skipped broadcasting new items because config option skip_broadcasting was set to True")
The text was updated successfully, but these errors were encountered:
We are currently migrating feeds to a different baseURL, which means that maubot-rss would recognize all items as new, because their url changed. We don't want all users to get spammed with old messages again.
https://github.com/rss2email/rss2email#using-rss2email has a
--no-send
flag which still logs "new" items into the database as seen, but skips sending a notification for them.I could imagine such an option beeing useful for maubot-rss as well. If this is wanted, I would offer to implement this somewhat like this:
The text was updated successfully, but these errors were encountered: