理解当前弹跳电子邮件处理的问题+ Verp

发布于 2025-02-02 11:08:29 字数 939 浏览 3 评论 0 原文

我正在为生产应用程序提供支持,该应用程序已经可以发送电子邮件并阅读弹跳的电子邮件。

当应用程序需要发送电子邮件时,它会从myemaildomain.com获取DNS MX记录,目前DNSlookUp解决了两个主机。

我知道,要设置将弹跳到电子邮件的位置(如果输送失败,例如弹跳,软弹跳等),则必须将来自域名设置为域名,以发送弹跳电子邮件tor,例如bounce.myemaildomain.com,

我不明白的是,该应用程序是为何将信封邮件从

new StringBuilder(32).append("return-").append(UUID.randomUUID().toString()).append("@").append("anothercompanydomain.com");

一个示例中设置为:“ [email protected]"

Also the application is starting a local SMTP server to read bounced emails, but this is also the part I don't understand, how is this SMTP如果该应用程序的托管域不同于另一个CompanyDomain.com,则可以读取弹跳的电子邮件?另外,如果来自Verp的信封邮件是可变的,它如何读取所有带有一个帐户的弹跳电子邮件?

I'm giving support to a production application which is already able to send emails and also to read bounced emails.

When the applications needs to send an email it fetches DNS MX records from myemaildomain.com, currently that dnslookup resolves to two hosts.

I understand that in order to set where the email will be bounced to (in case of delivery failure e.g. hard bounce, soft bounce, etc.) the ENVELOPE MAIL FROM must be set with the domain name where it is desired to send the bounce email to, e.g bounce.myemaildomain.com

What I don't understand is why the application is setting the ENVELOPE MAIL FROM as

new StringBuilder(32).append("return-").append(UUID.randomUUID().toString()).append("@").append("anothercompanydomain.com");

An example would be: "[email protected]"

Also the application is starting a local SMTP server to read bounced emails, but this is also the part I don't understand, how is this SMTP server able to read the bounced emails if the domain where this app is hosted is different than anothercompanydomain.com? Also if the ENVELOPE MAIL FROM is variable because of VERP how is it reading all bounced emails with a single account?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文