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 myliveaccount@hotmail.com
I don't get a response back.
I installed Windows Live Mail and that is clearly able to download my hotmail messages.
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 myliveaccount@hotmail.com"
>> pick pop 1
== none
I'm not a rebol expert but you may need to include \r\n at the end of USER command line in order to notify the POP server that you're done sending input. I'd guess the server is still waiting for you to send more information or end the line.