O Postfix pode verificar os cabeçalhos definidos pelo milter com milter_header_check
. A documentação do postfix também fornece um exemplo:
The following example sends all mail that is marked as SPAM to a spam handling machine. Note that matches are case-insensitive by default.
/etc/postfix/main.cf:
milter_header_checks = pcre:/etc/postfix/milter_header_checks
/etc/postfix/milter_header_checks:
/^X-SPAM-FLAG:\s+YES/ FILTER mysmtp:sanitizer.example.com:25
Basta substituir a ação FILTER
por REDIRECT [email protected]
e ela deve funcionar.
Cf. link