如何将 mboxo/mboxrd 转换为 mboxcl/mboxcl2

如何将 mboxo/mboxrd 转换为 mboxcl/mboxcl2

我正在尝试从 thunderbird 导出电子邮件,以便可以在 mutt 中阅读。我已开始使用ImportExportTools thunderbird 附加功能然后我将文件复制到服务器,但是 mutt 告诉我文件中没有消息。

经过进一步的研究,似乎mbox 有几种变体。导出的文件似乎是 mboxo 或 mboxrd - 无论如何,我>From在文件文本中找到了,并且没有 Content-Length 标头(就像在 mboxcl/mboxcl2 文件中那样)。

现在根据上面关于 mbox 变体的链接:“mutt MUA 尝试将“mboxo”和“mboxrd”邮箱转换为“mboxcl”格式。”但在本例中这显然没有发生。

那么有人知道如何将 mboxo/mboxrd 转换为 mboxcl 吗?有可用的工具吗?或者我必须编写一些代码来执行此操作...

编辑后添加:我使用 ImportExportTools 2.3.1.1 从 Thunderbird 3.0 导出。我尝试使用 mutt 1.5.20(在 Ubuntu 9.04 上)和 1.5.18(在 Debian Lenny 上)。

答案1

您可以尝试这个脚本。我发现我需要修改从 Mailman 类型的邮件列表存档中下载的一些 mbox 文件,以将它们转换为 mutt 可以识别的格式。我认为它对日期格式要求最高。我还没有遇到更简单的解决方法。但这对我来说很管用。

#!/usr/bin/env python
"""
Usage:   ./mailman2mbox.py  infile outfile default-to-address
"""
import sys
from time import strftime,strptime,mktime,asctime
from email.utils import parseaddr,formatdate

if len(sys.argv) not in (3,4):
    print __doc__
    sys.exit()

out = open(sys.argv[2],"w")
listid = None
if len(sys.argv)==4:
    listid = sys.argv[3]

date_patterns = ("%b %d %H:%M:%S %Y", "%d %b %H:%M:%S %Y", "%d %b %Y %H:%M:%S", "%d %b %H:%M:%S",  "%d %b %y %H:%M:%S", "%d %b %Y %H.%M.%S",'%m/%d/%y %H:%M:%S %p')

class HeaderError(TypeError):
    pass


def finish(headers, body):
    body.append("\n")
    for n,ln in enumerate(headers):
        if ln.startswith("Date:"):
            break
    else:
        raise HeaderError("No 'Date:' header:\n" + "".join(headers)+"\n")
    if listid is not None:
        for ln2 in headers:
            if ln2.lower().startswith("list-id:"):
                break
        else:
            headers.append("List-Id: <%s>\n" % (listid,))
    date_line = ln[5:].strip()
    if date_line.endswith(')'):
        date_line = date_line[:date_line.rfind('(')].rstrip()
    if date_line[-5] in "+-":
        date_line, tz = date_line[:-5].rstrip(), int(date_line[-5:])//100
    else:
        tz = -5
    if date_line[:3] in ("Mon","Tue","Wed","Thu","Fri","Sat","Sun"):
        if date_line[3:5] == ', ':
            prefix = "%a, "
        elif date_line[3] == ',':
            prefix = "%a,"
        else:
            prefix = "%a "
    else:
        prefix = ""
    while True:
        for p in date_patterns:
            try:
                date_struct = strptime(date_line, prefix+p)
            except ValueError:
                pass
            else:
                break
        else:
            if not date_line:
                raise ValueError(headers[n])
            date_line = date_line[:date_line.rfind(' ')]
            continue
        break

    date_struct = list(date_struct)
    try:
        headers[n] = 'Date: %s\n' % (formatdate(mktime(date_struct),True))
        headers[0] = "%s %s\n" % (headers[0][:-25].rstrip(), asctime(date_struct), )
    except ValueError:
        raise ValueError(headers[n])

    for w in headers, body:
        for s in w:
            out.write(s)


message = 0
headers, body = None, None
for line in open(sys.argv[1]):
    if line.startswith("From "):
        message+=1
        header = True
        if headers is not None:
            try:
                finish(headers, body)
            except HeaderError:
                message -= 1
                out.write('>')
                for w in headers, body:
                    for s in w:
                        out.write(s)
        headers, body = [], []
        line = line.replace(" at ", "@")
    elif line == '\n':
        header = False
    elif header and line.startswith('From:'):
        line = line.replace(" at ","@")
    (headers if header else body).append(line)

try:
    finish(headers, body)
except HeaderError:
    out.write('>')
    for w in headers, body:
        for s in w:
            out.write(s)

out.close()

相关内容