发送电子邮件至服务器上的 rss

发布于 2024-12-08 04:01:54 字数 249 浏览 0 评论 0原文

我想为我在大学的团队建立一个服务器端电子邮件到 RSS 服务。 它应该像这样工作,不同的人可以将电子邮件发送到某个地址(没有像 gmail 这样的专有地址,而是某个 imap 或 pop 服务器),该地址将被转换为 rss feed。一项主要且重要的功能必须是人们可以在提要中看到电子邮件的发件人。此外,如果电子邮件每天左右只转换为提要一次,那就太好了(减轻服务器的负担)。

有人对这个主题有一些意见吗?是否有任何脚本/服务可以实现这一点?

非常感谢。

for my group at the university I'd like to set up a server-sided email-to-rss service.
It should work like that, that different people can send emails to a certain address (nothing proprietary like gmail but a certain imap or pop server) which will the be translated into an rss feed. One main and important feature has to be that one can see the sender of the email in the feed. Furthermore it would be nice (to take the load off the server) if the emails get translated to a feed only once a day or so.

Does anyone has some input on this subject? Are there any scripts/services which will allow that?

Thanks a bunch.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼前雾蒙蒙 2024-12-15 04:01:54

您可以使用支持 RSS 的邮件列表,而不是“重新发明轮子”。然后,您的人员可以将邮件写入邮件列表,然后您可以按照您的意愿使用邮件列表的 RSS 源。

这应该可以帮助您找到解决方案:https://encrypted.google.com/search ?q=mailing%20list%20rss

Instead of "reinventing the wheel", you could use a mailing list that supports RSS. Your people can then write the mails to the mailing list and you can then use the mailing list's RSS feed however you intend to.

This should help you find a solution: https://encrypted.google.com/search?q=mailing%20list%20rss

忘羡 2024-12-15 04:01:54

选择您熟悉的编程语言,然后使用 imap 库来获取电子邮件(通过 cron,每小时或类似的方式),或者如果您可以访问邮件服务器上的 procmail,则启动您的脚本一封电子邮件到达(这对于服务器来说应该不是太多工作,除非您正在处理大量电子邮件)。

该脚本只是将电子邮件插入数据库,然后提取它们并直接从中输出 RSS 提要(这不应该超过几行代码)。

有几个提供商可以为您执行此操作,尽管最受欢迎的提供商似乎已经消失了。 Advanced Email2RSS 似乎是一个选择,尽管我不知道它们有多好,也不知道它是否能解决问题你的问题。

Pick a programming language you're familiar with, then use either an imap library to fetch the E-mails (through cron, every hour or something like that), or if you have access to procmail on your mail server, launch your script as an email arrives (this shouldn't be too much work to handle for a server, unless you're talking a vast amount of E-mail).

The script would just insert the E-mails into a database, before extracting them and outputting the RSS-feed directly from that (this shouldn't be more than a handful of lines of code).

There's a couple of providers that does this for you, although it seems that the most popular ones have disappeared. Advanced Email2RSS seems to be an option, although I have no idea how good they are or if it'll even solve your issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文