退回邮件处理:通过 IMAP 还是管道更好?

发布于 2024-12-02 22:55:22 字数 133 浏览 1 评论 0原文

处理退回电子邮件的方法是:1) 将其发送到 IMAP 服务器,然后使用 cron 作业处理每封电子邮件,或者 2) 将退回邮件直接传送到脚本进行处理。

请证明你的答案合理。

优点/缺点也会有帮助。

谢谢!

Is it better to handle bounced emails by having them 1) sent to an IMAP server and then using a cron job to process each one, or 2) to have bounced messages pipe straight to a script for processing.

Please justify your answer.

Pros/Cons would also be helpful.

Thanks!

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

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

发布评论

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

评论(1

栀梦 2024-12-09 22:55:22

用爱因斯坦的话来说,事情应该尽可能简单,但不能太简单。对于这种情况,IMAP 服务器没有任何好处。如果处理单个消息的开销很高,则将消息排队以进行定期批处理可能是有意义的,但这也可以在同一服务器上完成。除非有额外的隐藏要求,否则我认为这是理所当然的。

To paraphrase Einstein, things should be as simple as possible, but no simpler. There is no benefit from the IMAP server for this scenario. If the overhead of processing a single message is high, it might make sense to queue messages for periodic batch processing, but that too can be done on the same server. Unless there are additional hidden requirements, I'd say this is a no-brainer.

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