Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2008-01-18 Thread Arno Garrels
DZ-Jay wrote: > Can you post some code so that we know how you tried to fix it? The bug I found is the "Special processing for Quit" below. procedure TCustomPop3Cli.TriggerRequestDone(Error: Word); begin ==> (* { Special processing for Quit (Roger Morton 24-12-99) } if FRequestType = po

Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2008-01-18 Thread DZ-Jay
On Jan 17, 2008, at 07:34, [EMAIL PROTECTED] wrote: > it didnt fix the issue, got a pop3 not ready exception today. Can you post some code so that we know how you tried to fix it? dZ. -- DZ-Jay [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html -- To unsubscr

Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2008-01-17 Thread Arno Garrels
[EMAIL PROTECTED] wrote: > AG> It helps alot to post a short message when you either think > AG> the problem is resolved or not. Thanks. > > it didnt fix the issue, got a pop3 not ready exception today. You did not provide any further information, "not ready exceptions" may happen, i.e. due to in

Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2008-01-17 Thread retnyg
AG> It helps alot to post a short message when you either think AG> the problem is resolved or not. Thanks. it didnt fix the issue, got a pop3 not ready exception today. AG> -- AG> Arno Garrels [TeamICS] AG> http://www.overbyte.be/eng/overbyte/teamics.html >> >> i also hope that the bug ge

Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2007-12-12 Thread Arno Garrels
[EMAIL PROTECTED] wrote: > thanks arno and dz-jay, i hope that'll fix it. It helps alot to post a short message when you either think the problem is resolved or not. Thanks. -- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html > > i also hope that the bug gets eliminated

Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2007-12-12 Thread retnyg
thanks arno and dz-jay, i hope that'll fix it. i also hope that the bug gets eliminated in the next release by FPIETTE. i don't really like using custom-patched components. -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/lis

Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2007-12-12 Thread Arno Garrels
[EMAIL PROTECTED] wrote: > as you see, the pop component is not connected when i do the connect > cmd. that's the strange thing, the connection is closed but the > component is not in a ready state. Sorry, now I recall that there is a BUG in the component since a long time!! I fighted for getting

Re: [twsocket] pop3 component not ready

2007-12-12 Thread [EMAIL PROTECTED]
PROTECTED]:[EMAIL PROTECTED] >Sent: 12/12/2007 12:21:45 PM >To : twsocket@elists.org >Cc : >Subject : RE: Re: [twsocket] pop3 component not ready > >procedure TMailAlert.CheckNewMail; begin with FPop do if not Connected then begin Fbusy := true; ClearErro

Re: [twsocket] pop3 component not ready

2007-12-12 Thread retnyg
procedure TMailAlert.CheckNewMail; begin with FPop do if not Connected then begin Fbusy := true; ClearErrorMessage; Connect; end; end; as you see, the pop component is not connected when i do the connect cmd. that's the strange thing, the connection is closed but the com

Re: [twsocket] pop3 component not ready

2007-12-12 Thread Dod
When doing POP3 you must send a QUIT command to server or all email marked for deletion (DELE command) will not be deleted. >> whats the proper command to close the connection dcn> gracefully ? dcn> The command is "Quit". On a pinch, you could use dcn> "Abort", which will close the socket connec

Re: [twsocket] pop3 component not ready

2007-12-12 Thread [EMAIL PROTECTED]
> whats the proper command to close the connection gracefully ? The command is "Quit". On a pinch, you could use "Abort", which will close the socket connection abruptly if it is opened, but "Quit" will send the "QUIT" POP3 command to the server and wait for it to close the connection. -dZ.

Re: [twsocket] pop3 component not ready

2007-12-12 Thread retnyg
whats the proper command to close the connection gracefully ? AG> [EMAIL PROTECTED] wrote: >> procedure TMailAlert.Pop3ClientRequestDone; >> begin >> if (FPop.connected) and (CheckError) then begin >> FPop.quit; >> exit; >> end; >> >> ... >> >> what could be the cause that the compon

Re: [twsocket] pop3 component not ready

2007-12-11 Thread Arno Garrels
[EMAIL PROTECTED] wrote: > procedure TMailAlert.Pop3ClientRequestDone; > begin > if (FPop.connected) and (CheckError) then begin > FPop.quit; > exit; > end; > > ... > > what could be the cause that the component is not ready after the > error ? After sending command Quit you should r

[twsocket] pop3 component not ready

2007-12-11 Thread retnyg
hi, i use a custom pop3 component in my program, and frome time to time i get this errormessage from the server: -ERR System temporarily unavailable, please try again later. on the next connect try i get the "pop3 component not ready" exception, even if i check for connected: function TMailAlert