ienthach Posted December 19, 2012 Share Posted December 19, 2012 Hi everyone. I have a problem when use openssl (cygwin) to get messages from hotmail. After i login with user and pass, no commands get recognized. this is the log in console: +OK COL0-POP100 POP3 server ready +OK password required +OK mailbox has 38 messages -ERR unrecognized command -ERR unrecognized command but when i use cmd everything good. here my code: $POP_Server = "pop3.live.com" $POP_Port = "995" $pid = Run("openssl.exe s_client -crlf -ign_eof -connect " & $POP_Server & ":" & $POP_Port, "", "", 0x1 + 0x8) ConsoleWrite(_Read($pid)) StdinWrite($pid,"user userhere@hotmail.com"&@CRLF) ConsoleWrite(_Read($pid)) Sleep(2000) StdinWrite($pid,"pass passwordhere"&@CRLF) ConsoleWrite(_Read($pid)) Sleep(2000) StdinWrite($pid,"list"&@CRLF) ConsoleWrite(_Read($pid)) Func _Read($pid) If Not $pid Then Return -1 Local $dataA Local $dataB Do $dataB = $dataA sleep(100) $dataA &= StdOutRead($pid) ConsoleWrite($dataA) If @error Then ExitLoop Until $dataB = $dataA And $dataA And $dataB And StringInStr($dataA,"+OK") Return $dataA EndFunc When i use command "retr 1" instead of "list", the server response -ERR invalid syntax Link to comment Share on other sites More sharing options...
ienthach Posted December 19, 2012 Author Share Posted December 19, 2012 please help me. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted December 19, 2012 Moderators Share Posted December 19, 2012 ienthach, Please do not bump your threads within 24 hours. Remember this is not a 24/7 support forum - those who answer are only here because they like helping others and have some time to spare. You just have to wait until someone who knows something about your particular problem, and is willing to help, comes online. Be patient and someone will answer eventually. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now