在 PHP 中使用 imap_open() 打开本地 mbox 邮件存档
我正在尝试通过文件访问读取从本地另一台服务器导出的 mbox 电子邮件存档,但无论出于何种原因,我尝试的所有操作都失败了。是否有一些神奇的技巧可以解析本地文件并使用 PHP 的内置 IMAP 功能访问它?
I'm attempting to read an mbox email archive exported from another server locally, via file access, but for whatever reason everything I've tried fails. Is there some magical trick to parse a local file and access it with PHP's built-in IMAP functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够使用 PHP 的内置 IMAP 功能。您是否尝试过这样的事情:
并使用相应的正确路径调用它:
You should be able to use PHP's built-in IMAP functionality. Have you tried something like this:
And call this with the respective correct path:
我发现接受的答案还不够,尽管它确实为我指明了正确的方向。
PHP 的 IMAP 库可用于解析本地
.mbox
文件,例如 Gmail 导出的文件。重要的是,路径必须是绝对路径,不能相对于当前文件夹。
然后,您可以使用
imap
功能,如主题:I didn't find the accepted answer sufficient, though it did point me in the right direction.
PHP's IMAP library can be used to parse local
.mbox
files, such as the ones from Gmail exports.Importantly, the path must be absolute, it cannot be relative to the current folder.
You can then get retrieve information with
imap
functions, such as the subject: