Am 31.01.2012 12:28, schrieb Steve Crook:
[...snipped...]
> One solution would be to find a way to strip any X-Original-To headers
> on the message before my Postfix appends its own.
header_checks can do that for you. In
main.cf add:
header_checks: /etc/postfix/pcre_header_checks
then create the aforementioned pcre_header_checks file with:
/^X-Original-To: (.*)/ REPLACE X-Old-Original-To: $1
Any X-Original-To header in the incoming mail will then be
rewritten into an X-Old-Original-To header.
HTH
-Chris