编写一个脚本,使用postfix进行内容过滤

发布于 2024-09-17 17:42:44 字数 78 浏览 6 评论 0原文

我如何用 python 或 ruby​​ 编写脚本通过 smtp 或 uucp (不是管道)在 postfix 中进行内容过滤?有一些例子吗?

How can i write in python or ruby a script to do content filtering in postfix via smtp or uucp (not pipe)? There is some examples?

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

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

发布评论

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

评论(1

夏日落 2024-09-24 17:42:44

如果您不需要整个邮件正文来处理它,您可以简单地为 Postfix 编写一个策略服务器,请参阅 访问策略委托

如果您需要处理整个邮件,有多种可能性,请参阅 Postfix 内容检查

您可以实施内容过滤器(请参阅FILTER_README) 通过 SMTP 或 LMTP 获取邮件,并在处理后通过 SMTP 将其发送回 Postfix,或者您可以实现milter,存在适用于 Python 的库

If you don't need the whole mail body to process it, you could simply write a policy server for Postfix, see Access policy delegation.

If you need to process the whole mail, you have several possibilities, see Postfix Content Inspection.

You could either implement a content filter (see FILTER_README) which gets the mail via SMTP or LMTP and, after processing it, sends it back to Postfix through SMTP, or you could implement a milter, for which appropriate libraries for Python exist.

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