썬더 버드에서 전자 메일을 내보내려고 시도하여 똥개로 읽을 수 있습니다. ImportExportTools thunderbird add on을 사용하여 mbox 형식으로 내보내는 것으로 시작했습니다 . 그런 다음 파일을 서버에 복사했지만 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에서)을 사용해 보았습니다.
답변
이 스크립트를 사용해보십시오. Mailman 형식 메일 링리스트 아카이브에서 다운로드 한 mbox 파일을 마사지하여 형식이 잘못 인식 된 형식으로 만들어야한다는 것을 알았습니다. 날짜 형식에 대해 가장 까다로운 것 같습니다. 아직 더 쉬운 해결 방법이 없습니다. 그러나 이것은 나를 위해 작동합니다.
#!/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()