PDA

View Full Version : Help with e-mail grabbing!



loginor
03-30-2015, 12:21 PM
Greetings!


I would like to ask for your help. Is there any way I could extract all the addresses from archived .eml files or through IMAP or POP3 connection?


Thank you for your answers!

Brandon
03-31-2015, 01:26 AM
..


EML is a plain-text ASCII format that "follows" the RFC822 standard. EML has no single standard however. It has never been "strictly" standardised, but RFC822 serves as its standard for all intents and purposes (almost all implementations/interpretations).

See: http://www.ietf.org/rfc/rfc0822.txt or http://www.w3.org/Protocols/rfc822/


In other words, you can pretty much open it in notepad or read it programatically so long as you can parse the format.


As for handling IMAP and POP3:

https://villavu.com/forum/showthread.php?t=108744
https://villavu.com/forum/showthread.php?t=108744&p=1314355#post1314355

loginor
03-31-2015, 07:38 AM
Thank you for your qualitative answer.