asvasdv asdvsadvs
asvasdv asdvsadvs

Reputation: 113

Postfix - Replace Reply-To

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

Answers (1)

asvasdv asdvsadvs
asvasdv asdvsadvs

Reputation: 113

Got it

/^Reply-To:[[:space:]]+(.*)/ REPLACE Reply-To: <[email protected]>

Upvotes: 2

Related Questions