I want to script the download of messages from hotmail.
Both Gmail and Hotmail allow access by secure POP on port 995.
My script works fine with Gmail ... but after I send the line to Hotmail
USER [email protected]
I don't get a response back.
I installed Windows Live Mail and that is clearly able to download my hotmail messages.
- Is there a way to trace SSL so I can see what I am doing wrong?
- Is hotmail expecting something else apart from the USER message from the client?
This is sample code from the REBOL shell.
>> pop: open/lines ssl://pop3.live.com:995
>> set-modes pop [secure: true]
>> pick pop 1
== "+OK BLU0-POP295 POP3 server ready"
>> insert pop "USER [email protected]"
>> pick pop 1
== none