Re: [racket] pop3 connection

2010-12-16 Thread Nadeem Abdul Hamid
The net/pop3 library doesn't seem to support ssl connections to a pop3 server. Here's a simple function that uses the openssl library to connect to a server using ssl and attempt to login: (require openssl) (define (pop3auth username password [server "pop.gmail.com"]) (let-values ([(inp outp) (

[racket] pop3 connection

2010-12-16 Thread Sayed Khader
Hello I'm writing with regards to the net/pop3 library. I'm attempting to use it to pull emails from my gmail account. The connection I am trying to establish is very basic. As per the GMail connection specification ( http://mail.google.com/support/bin/answer.py?hl=en&answer=13287) I make the foll