PHP Classes

anti-spoofing techniques

Recommend this page to a friend!

      PHP MIME Email Message Parser  >  All threads  >  anti-spoofing techniques  >  (Un) Subscribe thread alerts  
Subject:anti-spoofing techniques
Summary:check against ip address, smtp id etc
Messages:3
Author:michael sullivan
Date:2009-07-31 21:01:03
Update:2009-08-01 02:47:22
 

  1. anti-spoofing techniques   Reply   Report abuse  
Picture of michael sullivan michael sullivan - 2009-07-31 21:01:03
Looking for best practices for managing incoming messages based on the from address and taking measure to confirm messages when sent from different locations (by comparing against ip address etc.).

The data from $array['Headers']['received:'][2] is probably the most useful here. So I suppose extracting that string into useable values is needed.

Thanks.

  2. Re: anti-spoofing techniques   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2009-08-01 02:29:20 - In reply to message 1 from michael sullivan
Do you mean you would like the class to parse the Received: headers into data structures that are easier to analyze?

  3. Re: anti-spoofing techniques   Reply   Report abuse  
Picture of michael sullivan michael sullivan - 2009-08-01 02:47:22 - In reply to message 2 from Manuel Lemos
Yes, that would be nice.
Right now, I have to use regexp to handle pieces of that string which costs a bit more.