views:

365

answers:

3

how can i communicate gmail pop server from flex i used pop.gmail.com and port =995 using Socket() class but it returns 220 mx.google.com ESMTP but i dont understand nothing.

A: 

"220" is a response code from Google saying that it is ready to communicate over SMTP. There are several commands to send back and forth so you'll need to find additional information on the SMTP protocol to communicate with Google's servers.

Ben Johnson
actually i need pop protocol,by which google must return "* OK Gimap" style return but why 220 ???i am astonished..i like to connect pop server on port 995 but it connects to smtp server , why?
msaif msaif
I'm actually not sure why it's showing SMTP on port 995. That is strange.
Ben Johnson
A: 

as3 SMTP: http://code.google.com/p/smtpmailer/

i say browse the source of that project to get a good idea of where to go.

greg
A: 

I made POP3/SMTP library(Airxmail) in AS3 for AIR1.5.

http://code.google.com/p/airxmail/

The site shows a sample code to connect gmail.

coltware