我想使用Postfix和PHP处理退回电子邮件。
我首先构建一个像这样的后缀服务器:
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-postfix-e-mail-server-with-dovecot
然后从
配置master.cfhttps://thecodingmachine.io/triggering-a-php-script-when-your-postfix-server-receives-a-mail
我能够将所有传出电子邮件的内容发送到我的php脚本,但是我怎么能仅将退回电子邮件发送到此脚本?
邮件发件人:
<div class="quote">
<span>Lorem ipsum dolor sit amet</span>
<span class="author">loremipsum.io</span>
</div>
master.cf 取件将所有传出电子邮件发送到example.php。 我试图用弹跳代替接送,但没有成功。
.quote {
display: grid;
margin: 20px;
background-color: blue;
padding: 20px;
border-radius: 15px;
color: white;
}
.quote .author {
justify-self: right;
}
我做错了什么?
谢谢
答案 0 :(得分:0)
我终于在https://serverfault.com/questions/322657/how-can-i-route-some-emails-to-a-script-in-postfix上找到了解决方案。
答案始于:“好。现在是另一种方法。”