控制“不在办公室”的位置回复已发送

发布于 2024-12-21 09:32:15 字数 477 浏览 2 评论 0原文

邮件服务器如何决定何时何地发送“不在办公室”类型的自动回复?

看来这取决于邮件服务器,因此有些会使用回复:地址,其他则使用发件人:也许还有发件人:地址。一些服务器(或全部?)似乎关心优先级:字段,并且根本不会在优先级:批量(或者可能优先级:列表?)上发送外出回复。返回路径似乎用于更严重类型的反弹,但也许它也被使用?

我想要实现的(这次)是最大限度地减少发送到 from: 地址的回复电子邮件的数量。我不介意把它们送到回复地址。

我一直在寻找某种参考或最佳实践 - 有任何参考或建议吗?我查看了一些相关的 RFC(RFC2822RFC3834)但是我正在寻找事情的实际处理方式。

How do mail servers decide when and where to send "out of office"-type autoreplies?

It seems this is mail server dependent, so some will use a reply-to: address, others the From: and perhaps the Sender: address. Some servers (or all?) seem to care about the Precedence: field and will not send out of office replies at all on Precedence:bulk (or maybe precedence:list?). The return-path seems to be used for more severe types of bounces, but maybe it's used as well?

What I want is to achieve (this time) is to minimize the number of response e-mails that go to the from: address. I don't mind getting them at the reply-to address.

I've been looking for some sort of reference or best practices - any references or suggestions? I 've looked at some relevant RFCs (RFC2822, RFC3834) but I'm looking for how things are actually handled.

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

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

发布评论

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

评论(1

西瑶 2024-12-28 09:32:15

以下是一些想法:

  • 每天不要发送超过一封回复和收件人(洪水
    保护)
  • 不要回复任何看起来“自动化”的内容(批量、
    垃圾邮件、邮件列表……)。
  • 回复应设置“自动提交:
    auto-replied' 和 'Precedence:bulk' 标头

查看此示例,了解可能的标头和发件人模式来检测自动发件人:
https://github.com/gryphius/fuglu /blob/master/fuglu/src/fuglu/plugins/vacation.py

这个实现只发送到信封发件人地址(Return-Path),在我看来,外出基本上和“您的邮件被推迟”错误,因此应转到退回邮件地址。但无论如何,我很少看到非批量的回复标题,

Here are a few thoughts:

  • do not send more than one reply per day and recipient (flood
    protection)
  • don't reply to anything that looks "automated" (bulk,
    spam, mailing lists, ...).
  • the reply should set "Auto-Submitted:
    auto-replied' and 'Precedence: bulk' headers

have a look at this example to see possible header and senderpatterns to detect automated senders:
https://github.com/gryphius/fuglu/blob/master/fuglu/src/fuglu/plugins/vacation.py

This implementation only sends to the envelope sender address(Return-Path), In my opinion, out-of-office is basically the same as a "your message is deferred" error and should therefore go to the bounce address. But I rarely see Reply-To Headers in non-bulk anyway,

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