tests/unwrap-message-id.py
author Raphaël Gomès <rgomes@octobus.net>
Mon, 07 Aug 2023 11:05:43 +0200
branchstable
changeset 50818 04d5cde28a7f
parent 48875 6000f5b25c9b
permissions -rw-r--r--
Added signature for changeset 787af4e0e8b7

import sys

for line in sys.stdin:
    if line.lower() in ("message-id: \n", "in-reply-to: \n"):
        line = line[:-2]
    print(line, end="")