X-LBSMTP-Spam-Policy: SendBlaster SMTP is a paid relay service.We do not tolerate UCE of any kind. Please report it ASAP to [email protected].
我想在我的 postfix 邮件服务器发送的邮件中添加这样的标头。我的 centos5 服务器中有 postfix 2.33。有没有办法在 postfix 中添加它。
答案1
你应该能够使用
smtp_header_checks=regexp:/etc/postfix/add_x_header
创建文件 /etc/postfix/add_x_header,内容如下:
/^Subject: .*/ PREPEND X-LBSMTP-Spam-Policy: SendBlaster SMTP is a paid relay service.We do not tolerate UCE of any kind. Please report it ASAP to [email protected].
这将在主题行之前插入标题。
(此外,很高兴看到您想要努力杜绝来自您域名的垃圾邮件 - 祝您好运!)