Postfix header_checks add X-Mailgun-Tag
Solution 1:
There could be any number of white space characters between From:
and [email protected]
but your regular expression doesn't allow that. Use something like [[:space:]]+
or \s+
(depending on which regexp format you are using).