X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=cnotmuch%2Fmessage.py;h=73660c5ee62848b7a923a89e4f9afff66874318f;hb=3c8ba0f18f826c13b67eda08dd7620a65ee92065;hp=0dc8812f4e9f59e6da27b59c1062f75c7ba30c40;hpb=c0db88a95c3009e29cf6940f4c97e82d745e1840;p=notmuch diff --git a/cnotmuch/message.py b/cnotmuch/message.py index 0dc8812f..73660c5e 100644 --- a/cnotmuch/message.py +++ b/cnotmuch/message.py @@ -220,11 +220,9 @@ class Messages(object): else: raise NotmuchError next_indent = indent + 1 - - #sys.stdout.write(set_end) + + # get replies and print them also out (if there are any) replies = msg.get_replies() - # if isinstance(replies, types.NoneType): - # break if not replies is None: sys.stdout.write(set_sep) replies.print_messages(format, next_indent, entire_thread) @@ -651,17 +649,6 @@ class Message(object): email_msg = email.message_from_file(fp) fp.close() - # A subfunction to recursively unpack the message parts into a - # list. - # def msg_unpacker_gen(msg): - # if not msg.is_multipart(): - # yield msg - # else: - # for part in msg.get_payload(): - # for subpart in msg_unpacker_gen(part): - # yield subpart - # - # return list(msg_unpacker_gen(email_msg)) out = [] for msg in email_msg.walk(): if not msg.is_multipart(): @@ -669,6 +656,7 @@ class Message(object): return out def get_part(self, num): + """Returns the nth message body part""" parts = self.get_message_parts() if (num <= 0 or num > len(parts)): return "" @@ -717,7 +705,7 @@ class Message(object): elif (cont_type.lower() == "text/html" and i == 0): part_dict["content"] = msg.get_payload() - body.append(part_dict) + body.append(part_dict) output["body"] = body @@ -739,19 +727,19 @@ class Message(object): output += "\n\fheader{" #Todo: this date is supposed to be prettified, as in the index. - output += "\n%s (%s) (" % (format["headers"]["from"], - format["headers"]["date"]) + output += "\n%s (%s) (" % (format["headers"]["From"], + format["headers"]["Date"]) output += ", ".join(format["tags"]) output += ")" - output += "\nSubject: %s" % format["headers"]["subject"] - output += "\nFrom: %s" % format["headers"]["from"] - output += "\nTo: %s" % format["headers"]["to"] - if format["headers"]["cc"]: - output += "\nCc: %s" % format["headers"]["cc"] - if format["headers"]["bcc"]: - output += "\nBcc: %s" % format["headers"]["bcc"] - output += "\nDate: %s" % format["headers"]["date"] + output += "\nSubject: %s" % format["headers"]["Subject"] + output += "\nFrom: %s" % format["headers"]["From"] + output += "\nTo: %s" % format["headers"]["To"] + if format["headers"]["Cc"]: + output += "\nCc: %s" % format["headers"]["Cc"] + if format["headers"]["Bcc"]: + output += "\nBcc: %s" % format["headers"]["Bcc"] + output += "\nDate: %s" % format["headers"]["Date"] output += "\n\fheader}" output += "\n\fbody{" @@ -762,16 +750,16 @@ class Message(object): if not p.has_key("filename"): output += "\n\fpart{ " output += "ID: %d, Content-type: %s\n" % (p["id"], - p["content_type"]) + p["content-type"]) if p.has_key("content"): output += "\n%s\n" % p["content"] else: - output += "Non-text part: %s\n" % p["content_type"] + output += "Non-text part: %s\n" % p["content-type"] output += "\n\fpart}" else: output += "\n\fattachment{ " output += "ID: %d, Content-type:%s\n" % (p["id"], - p["content_type"]) + p["content-type"]) output += "Attachment: %s\n" % p["filename"] output += "\n\fattachment}\n"