diff options
| -rwxr-xr-x | bin/list_members | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/list_members b/bin/list_members index 00dc40009..e70f0294d 100755 --- a/bin/list_members +++ b/bin/list_members @@ -84,7 +84,9 @@ def usage(code, msg=''): def whymatches(mlist, addr, why): - # Filter out nomails + # Return true if the `why' matches the reason the address is enabled, or + # in the case of why is None, that they are disabled for any reason + # (i.e. not enabled). status = mlist.getDeliveryStatus(addr) if why is None: return status <> MemberAdaptor.ENABLED |
