Exim - 限制发送邮件退回给用户

发布于 2024-12-22 20:57:50 字数 89 浏览 1 评论 0原文

是否存在某种方法可以通过 Exim MTA 的系统过滤器限制发送的邮件退回给用户? 我需要在文件中设置邮件退回的标头,但不知道如何读取其内容。

谢谢

Exist some way of to limit sent mail bounce to the user with system filter of Exim MTA?
I need set the header from of the mail bounces in a file, but not know like read it content.

Thanks

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

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

发布评论

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

评论(1

镜花水月 2024-12-29 20:57:50

您可以创建一个中央过滤器来过滤那些退回的邮件。使用当前的 exim.pl,您可以跟踪谁在发送电子邮件。有一个选项可以打开特定用户发送的电子邮件数量的限制。要启用此限制,只需将您每天允许的电子邮件数量添加到 /etc/virtual/limit 文件中即可。

echo 300 > /etc/virtual/limit_username

其中 username 是您想要为其授予限制的用户。

另请参阅:http ://www.farhad.ca/2006/07/27/how-to-disable-delayed-bounce-back-messages-in-exim/

You can create a central filter to filter those bounced messages. With the current exim.pl you can track who is sending emails. There is an option to turn on a limit for how many emails are sent by a particular user. To enable this limit, simply add the number of emails you'd like to allow per day to the /etc/virtual/limit file.

echo 300 > /etc/virtual/limit_username

where username is the user for who you would like to give the limit to.

Also Refer: http://www.farhad.ca/2006/07/27/how-to-disable-delayed-bounce-back-messages-in-exim/

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