问题描述
有没有人知道读取/写入mbox格式的库(用于在ANSI C中存储
电子邮件,例如在Thunderbird中)(跨平台是关键)?
有没有更合适的地方可以问这个?
-
回收你的收件箱!
Does anyone know of a library to read/write mbox format (used to store
emails e.g. in Thunderbird) in ANSI C (cross platform is key)?
Is there a more appropriate place to ask this?
--
Reclaim Your Inbox! http://www.mozilla.org/products/thunderbird
推荐答案
我知道它有点OT,但如果我没记错的话,mbox格式是
与stdio一起使用相对简单功能。它只是一个文本
文件,消息以a结尾。通过它自己。只需在
格式上做一些谷歌,你应该可以解决它没有问题。
cura,
Adam Shea。
I know it''s a bit OT, but if I remember correctly, the mbox format is
relatively simple to use with the stdio functions. It''s just a text
file with messages ended with a . by itself. Just do some google on
the format and you should be able to parse it with no problem.
cura,
Adam Shea.
使用stdio.h。
mbox格式是简单文本,由
以From开头的行 - 注意空间和缺少冒号。
文件绝对没什么特别的。
S
-
Stephen Sprunk上帝不玩骰子。 --Albert Einstein
CCIE#3723上帝是一个顽固的赌徒,他会在每一个可能的机会投掷
K5SSS骰子。 --Stephen Hawking
-
通过
警告:不要使用Ultimate-Anonymity
他们是无价值的垃圾邮件发送者正在运行一个骗局。
Use stdio.h.
mbox format is simple text, delimited (at least on unix systems) by a
line that starts with "From " -- note the space and lack of colon.
There is absolutely nothing else special about the file.
S
--
Stephen Sprunk "God does not play dice." --Albert Einstein
CCIE #3723 "God is an inveterate gambler, and He throws the
K5SSS dice at every possible opportunity." --Stephen Hawking
--
Posted via a free Usenet account from http://www.teranews.com
Warning: Do not use Ultimate-Anonymity
They are worthless spammers that are running a scam.
使用stdio.h。
mbox格式是简单文本,由
以From开头的行 - 注意空间和缺少冒号。
文件绝对没什么特别的。
Use stdio.h.
mbox format is simple text, delimited (at least on unix systems) by a
line that starts with "From " -- note the space and lack of colon.
There is absolutely nothing else special about the file.
那是危险的。
从上面的规范来看,这似乎不是一条消息。 />
Richard
That''s dangerous.
From the above specification, it would appear that this not one message.
Richard
这篇关于ANSI C mbox库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!