不使用delphi中的突触从电子邮件服务器删除消息
我正在 delphi 中使用 synapse 检索电子邮件,但邮件正在从服务器中删除。如何在不删除邮件的情况下检索邮件?也许只有标题?
谢谢,
乔
I am retrieving emails using synapse in delphi, but the messages are being deleted from the server. How can I retrieve the message without deleting it? Maybe the header only?
Thanks,
Joe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确定电子邮件已被删除,但您没有使用
pop3.Dele(i)
?我使用带有 SSL 的 POP3,如果我想删除邮件,那么我必须使用
pop3.Dele(i)
。在 Synapse wiki 中: http://synapse.ararat.cz/doku.php/public :howto:pop3samplessl 这里有我接收 POP3 消息的示例代码。也许您使用 POP3 以外的其他协议,然后向我们展示您的代码。
Are you sure emails are deleted, but you do not used
pop3.Dele(i)
?I use POP3 with SSL and if I want to delete message then I had to use
pop3.Dele(i)
. In Synapse wiki: http://synapse.ararat.cz/doku.php/public:howto:pop3samplessl there is my sample code to receive POP3 messages.Maybe you use other protocol than POP3 then show us your code.
我没有 Synapse 的实际操作经验,但看看代码(sourceforge trunk),只要您不显式调用 Dele 方法(映射到 DELE POP3 命令),您应该没问题。其他方法似乎都不会删除消息,包括 List 和 Retr。
您究竟如何检索这些消息?你能展示一些代码吗?
I have no hands-on experience with Synapse, but looking at the code (sourceforge trunk) you should be fine as long as you don't explicitly call the Dele method (which maps onto the DELE POP3 command). None of the other methods seems to delete the messages, including List and Retr.
How exactly are you retrieving those messages? Could you show some code?