all repos — listfix @ 0e943ae4fe1b3ee4c74d5a03b1a668dca79b127f

Postfix Mailing List Software; Maintained on behalf the of Agency Economy Incorporated NFP.

Use subscripting to copy the email content from stdin.

	modified:   listfix.py
Brian Barto bartobrian@gmail.com
Wed, 30 Mar 2022 11:13:11 -0400
commit

0e943ae4fe1b3ee4c74d5a03b1a668dca79b127f

parent

ca434efa1f3ad801932cc786afa0acaa987e16e5

1 files changed, 1 insertions(+), 3 deletions(-)

jump to
M listfix.pylistfix.py

@@ -46,9 +46,7 @@

if (command == "filter"): list_email = args.get_list_email() - content = [] - for line in sys.stdin: - content.append(line) + content = list(sys.stdin)[:] email_in = Email(content)