On 2015-04-22, James Worix <[email protected]> wrote: > I'm honestly hoping there was a way to dynamically rewrite IP address in > the email header to reflect the server it's being sent from. That would > solve the issue completely.
There absolutely is. The received header is created using string expansion, so you have all the tools in chapter 11 of the exim spec at your disposal. Perhaps some sort of lookup: if the ip address isn't found in the list of good addresses substitute in "10.0.0.2" or, or just replace the dots with dashes: that may be enough to throw the errant firewalls off the scent. Messing with received headers may make dealing with loops harder. -- umop apisdn -- ## List details at https://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
