Revert "Change of behavior when msg_body has more then 1000 lines"

This reverts commit 84a83e865e.
This commit is contained in:
Simon
2015-04-16 13:26:17 +02:00
parent 84a83e865e
commit f9f428f4c3

View File

@@ -298,7 +298,7 @@ def extract_from_plain(msg_body):
# don't process too long messages
if len(lines) > MAX_LINES_COUNT:
lines = stripped_text.split('\n', MAX_LINES_COUNT)
return stripped_text
markers = mark_message_lines(lines)
lines = process_marked_lines(lines, markers)