不使用delphi中的突触从电子邮件服务器删除消息

发布于 2024-10-16 13:15:44 字数 92 浏览 1 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不交电费瞎发啥光 2024-10-23 13:15:44

您确定电子邮件已被删除,但您没有使用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.

相思故 2024-10-23 13:15:44

我没有 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文