Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何配置邮件服务器来解析每条传入消息的“TO”字段,如果它是表单,<uniqueID>.CommonID.User1@domain.com则将电子邮件路由到 user1@domain.com。否则交付给预期的收件人。看来我需要在 MTA 中配置/创建一个处理程序。我应该使用 SMTP 中继吗?
<uniqueID>.CommonID.User1@domain.com
作为一个附带问题,Godaddy 是否公开了这种类型的功能,因为我目前正在通过它们托管我的网页和电子邮件服务器。
使用 Procmail 很容易做到这一点。
:0 * ^To: <uniqueID>\.CommonID\.User1@domain\.cim ! User1@domain.com
目前尚不清楚应该表示什么<uniqueID>,CommonID但如果它们可以表示为正则表达式,那么您就大功告成了。
<uniqueID>
CommonID
LDA 可以将标准输入的电子邮件传递给您编写的任何程序。Procmail 专门用于此目的,因此即使您想用 PHP 编写程序,从 Procmail 调用它而不是直接从 LDA 调用它也可能有意义。