我正在尝试使用IMAP检索所有未读的电子邮件,我似乎连接并找到那些未读消息(例如,我可以看到,SearchResult返回与我当前未读的3条消息相对应的3个项目),但是IMAP.Retrieve调用总是返回false,而不是检索它们。
你看到我的代码必须缺少什么吗?。
procedure TForm1.btnUnreadMessagesClick(Sender: TObject);
var i: integer;
SearchInfo: array of TIdIMAP4SearchRec;
MSG: TIdMessage;
begin
Memo1.Lines.Clear;
IMAP.Host := 'outlook.office365.com';
IMAP.Port := 993;
IMAP.Username := 'xxxxx@acme.com';
IMAP.Password := 'xxxxx';
SSL.Host := IMAP.Host;
SSL.Port := IMAP.Port;
SSL.Destination := SSL.Host + ':' + IntToStr(SSL.Port);
SSL.MaxLineLength := MaxInt;
IMAP.IOHandler := SSL;
IMAP.UseTLS := utUseImplicitTLS;
IMAP.Connect;
IMAP.SelectMailBox('INBOX');
SetLength(SearchInfo, 1);
SearchInfo[0].SearchKey := skUnseen;
IMAP.UIDSearchMailBox(SearchInfo);
for i := 0 to High(IMAP.MailBox.SearchResult) do begin
MSG := TIdMessage.Create(nil);
try
if IMAP.Retrieve(IMAP.MailBox.SearchResult[i], MSG) then begin
// Here is the problem, I never enter this section
Memo1.Lines.Add(MSG.From.Text);
end;
finally
MSG.Free;
end;
end;
IMAP.Disconnect;
end;
感谢您的帮助。
答案 0 :(得分:4)
使用SearchMailBox()
时,SearchResult
数组包含序列号。
使用UIDSearchMailBox()
时,SearchResult
数组包含UID。
Retrieve()
需要一个序列号。由于您有UID,请使用UIDRetrieve()
,例如:
IMAP.UIDRetrieve(IntToStr(IMAP.MailBox.SearchResult[i]), MSG)