【发布时间】:2019-03-28 01:56:32
【问题描述】:
我有一个 .eml 文件的导出文件,其中包含您的标准信息,例如 to、from、cc,以及其他元数据字段,例如 messageid、in-reply-to、references 等。根据我对 eml 标准的理解,我相信我可以利用 message-id、in-reply-to 和 references 来创建会话视图
例如,您有给 Bob 的初始消息
MSG-1
message-id: 1
to: Bob
text: hello
然后 Bob 回复 Anthony,更新元数据如下
MSG-2
message-id: 2
in-reply-to: 1
references: 1
to: Anthoy
text: howdy
然后 Anthony 回复 bob,更新元数据如下
MSG-3
message-id: 4
in-reply-to: 2
references: 1,2
to: Bob
text: Let's do this!
它是这样工作的吗?
【问题讨论】:
-
.eml不是标准术语。一些实用程序将此文件扩展名用于他们自己的专有消息格式。标准消息格式通常被称为 RFC822,尽管多年来,原始 RFC 已被多次取代(当前标准实际上是 RFC5322.)
标签: email file-format eml email-formats