To reduce attacks, we put our servers behind cloudflare's cloud service.
But, our app sends emails (via sendmail and smtp) to users (password reset etc), and those email headers contain the real backend ip addresses. Is there anyway to hide these ip addresses in emails, such as
- setup a separate server for smtp which can strip sender ip info?
- any existing service available?
- any other thoughts?
thanks!
The ip address is not in any header, it is the base of your communication.
smtp
it's overip
(wiki). so you can't "strip" it out.The solution according to cloudflare is:
Good luck!