I would like to set the reply-to field to the sender of the mail if the recipient matches some addresses. I know I could do a regular expression like this to do this
/^(To|Cc):.*[email protected]/ PREPEND Reply-To: [email protected]
But that would be static, is there a way to set the sender of the message?
According to http://www.postfix.org/header_checks.5.html you could use Perl Syntax for text replacement e.g.
The puzzle I've left to you is to look up the Perl RE Syntax to retrieve only the email as match.
Update: In your case it's this RegExp: