all repos — listfix @ bc58135869a746ab34a80b274976c6bb8926865d

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

Check list before removing element.

	modified:   listfix_filter.py
Brian Barto bartobrian@gmail.com
Mon, 21 Mar 2022 21:45:08 -0400
commit

bc58135869a746ab34a80b274976c6bb8926865d

parent

5a88c21379a845922697d27eae56486829d83767

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

jump to
M listfix_filter.pylistfix_filter.py

@@ -283,7 +283,8 @@

## Create recipient list recipients = email_lists[list_email] -recipients.remove(sender) +if sender in recipients: + recipients.remove(sender) ## Send emails