Reputation: 113
I needed to replace the Reply-To header in PostFix
I have this
/etc/postfix/header_checks
/^Reply-To:[[:space:]]+(.*)/ REPLACE Reply-To: ${1} <[email protected]>
However the Mail header comes in as:
Reply-To: Administrator <[email protected]> <[email protected]>
Upvotes: 1
Views: 2101
Reputation: 113
Got it
/^Reply-To:[[:space:]]+(.*)/ REPLACE Reply-To: <[email protected]>
Upvotes: 2