POP3 协议支持文件夹系统吗?
我正在开发一个用 C# 编写的电子邮件客户端,作为其中的一部分,我希望能够拥有一个用于存储电子邮件的文件夹系统。 POP3 协议支持文件夹系统吗?
如果有的话,是哪个命令?
I am working on a email client written in C# and as part of this I wanted to be able to have a folder system for storing emails. Does the POP3 protocol support a folder system?
If it does, which command is it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
POP3 本身并不公开文件夹系统,但它是在文件夹被视为邮箱的时候发明的。因此,某些系统支持<用户名>#<邮箱>。登录。 Afterlogic 实际上在这里有一个很好的解释:
http://www .afterlogic.com/support/tutorials-mailbee-net/18-pop3-folders.asp
基本上,在支持它的少数系统上,要获取另一个“文件夹”的消息,您需要使用不同的文件夹名称重新登录。
POP3 itself does not expose a folder system, but it was invented at a time when a folder was considered a mailbox. Therefore, some systems support a <username>#<mailbox> login. Afterlogic actually has a good explanation here:
http://www.afterlogic.com/support/tutorials-mailbee-net/18-pop3-folders.asp
Basically, on the few systems that support it, to get messages for another "folder" you relogin with a different folder name.
不,只要简单浏览一下规格就可以知道了。 SMTP 不处理文件夹,POP3 只是从服务器获取 SMTP 缓冲区的协议。文件夹管理出现得较晚,并使用其他协议。
No. A short look at the specifications would have shown you. SMTP does not deal with folders, and POP3 is just a protocol to get an SMTP buffer from a server. Folder management came way later and uses other protocols.
不,POP3 不支持收件箱、已发送等之外的文件夹结构。
您可以参考 RFC 1939< /a> 用于 POP3。
如果您需要文件夹结构和同步,则应使用 IMAP4 (RFC 3501)。
No, POP3 does not support a folder structure outside of Inbox, Sent, etc.
You can reference RFC 1939 for POP3.
If you need a folder structure and sycing you should use IMAP4 (RFC 3501).