tests/unwrap-message-id.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 23 Jul 2020 16:23:43 +0200
branchstable
changeset 45224 187cc478e18f
parent 44405 a1908951ca42
child 48875 6000f5b25c9b
permissions -rw-r--r--
push: test the checks preventing pushing orphaness to a server This is introduce a simple example, more are coming. See inline documentation for details.

from __future__ import absolute_import, print_function

import sys

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