vote up 1 vote down star
1

I would like to know and understand the steps involved in fetching mail from pop3 server using plain c language

flag

3 Answers

vote up 2 vote down check

Steps:

  1. Connect to the server's port (usually 995) using OpenSSL
  2. Verify the certificate
  3. Send regular pop3 commands over the SSL socket you just opened. (LIST, RETR and so on)
  4. Retrieve the responses
  5. Close the socket

Or use a library that does all of the above for you

link|flag
Thanks Vinko Vrsalovic – Jon Galloway Sep 27 '08 at 5:12
doesn't ssl imply asyncronous certificate ? – Blade Oct 28 '08 at 17:19
vote up 0 vote down

Use a library such as tinymail, which uses the OpenSSL library.

link|flag
vote up 0 vote down

Use one of the thousands of libraries that already exist such as libspopc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.