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.
我正在编写一个基本的 PHP 电子邮件客户端。到目前为止,我已经使用 fsockopen 编写了一个基本的 POP3 类。到目前为止它工作得很好但是我注意到一个很大的限制。POP3 协议不支持文件夹,这意味着我无法访问 SPAM 文件夹。hotmail 和 yahoo 的客户端如何访问 SPAM 文件夹?他们是否将其存储在不同的非 POP3 服务器上?
我发现垃圾邮件文件夹对于包含在客户端中很重要,因为一些不值得的电子邮件最终会出现在那里。
POP3 没有文件夹的概念。它只能访问您的收件箱。对于文件夹,您需要使用 IMAP。