Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用:Delphi XE2,来自 SVN (10.6.0.4997) 的最新 Indy 快照
在 IMAP 的情况下,有 2 个属性 - UID 和 MsgID,可用于唯一标识邮箱中的消息。
我正在编写一个电子邮件客户端,并且每次客户端连接并检索消息列表时,都需要知道两者中哪个更可靠或更推荐存储。
检查新电子邮件需要哪些步骤?我正在专门寻找正确的序列和一组 Indy IdIMAP4 命令来获取新电子邮件。
与 POP3/SMTP 不同,IMAP 定义了电子邮件的标志。该TIdMessage.Flags属性具有可用mfRecent的mfSeen标志(除其他外)。您的客户可以查找已mfRecent在其上设置的电子邮件,然后根据需要更新服务器上的标志以清除mfRecent和设置mfSeen。
TIdMessage.Flags
mfRecent
mfSeen