Suppose: someone fills out my contact form on www.example.com/contact/.
My server-side script sends this information to a sales person at the organization.
- To make SPF work, I set the "From" as sales@example.com
- To make the "Reply" button work (for the sales person), I set "Reply-To" to the email address that the website visitor has filled in
Now, apparently this is a problem: if someone fills in the contact form with a gmail or hotmail email address for example, it triggers the following SpamAssassin rules:
- 2.1 FREEMAIL_FORGED_REPLYTO Freemail in Reply-To, but not From
- 1.0 FREEMAIL_REPLYTO Reply-To/From or Reply-To/body contain different freemails
How am I supposed to avoid that while keeping SPF working and keeping the Reply button working for the person that receives this email? Or is it simply not possible?
Note that I do not want to change SpamAssassin config because I would like to figure out how to fix this in general.