Show More
@@ -1,6 +1,8 b'' | |||
|
1 | 1 | from __future__ import absolute_import, print_function |
|
2 | 2 | |
|
3 | import re | |
|
4 | 3 | import sys |
|
5 | 4 | |
|
6 | print(re.sub(r"(?<=Message-Id:) \n ", " ", sys.stdin.read()), end="") | |
|
5 | for line in sys.stdin: | |
|
6 | if line.lower() in ("message-id: \n", "in-reply-to: \n"): | |
|
7 | line = line[:-2] | |
|
8 | print(line, end="") |
General Comments 0
You need to be logged in to leave comments.
Login now