Newsgroups : Borland : borland.public.delphi.internet.winsock : 2005 May : IMAP?
| Subject: | IMAP? |
| Posted by: | "Alexander Adam" (s..@dg.dg) |
| Date: | Mon, 9 May 2005 02:17:02 |
Hi!
I am trying to implement some imap functionality into an email client.
Now the problem is that I personally never used imap (it shell be used
with an exchange server) and I tried to use the Indy 10 IdIMAP4
Component the same way like the POP3 Component which obviously doesn't
work.. how can I get it working the way to receive all new messages from
the exchange server per IMAP?
There goes my POP3 Code...
for MessageIdx := 1 to FPOP3.CheckMessages() do
begin
FPOP3.Retrieve(MessageIdx, MessageObj);
FPOP3.Delete(MessageIdx);
end;
thanks!
Alex