aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/list_members18
1 files changed, 17 insertions, 1 deletions
diff --git a/bin/list_members b/bin/list_members
index cb574081..3d6c0e09 100755
--- a/bin/list_members
+++ b/bin/list_members
@@ -29,6 +29,12 @@ Where:
--regular / -r
Print just the regular (non-digest) members.
+ --moderated / -m
+ Print just the moderated members.
+
+ --not-moderated / -M
+ Print just the non-moderated members.
+
--digest[=kind] / -d [kind]
Print just the digest members. Optional argument can be "mime" or
"plain" which prints just the digest members receiving that kind of
@@ -154,6 +160,8 @@ def main():
fullnames = False
invalidonly = False
unicodeonly = False
+ moderatedonly = False
+ notmoderatedonly = False
# Throw away the first (program) argument
args = sys.argv[1:]
@@ -173,6 +181,10 @@ def main():
preserve = True
elif opt in ('-r', '--regular'):
regular = True
+ elif opt in ('-m', '--moderated'):
+ moderatedonly = True
+ elif opt in ('-M', '--non-moderated'):
+ notmoderatedonly = True
elif opt in ('-o', '--output'):
try:
outfile = args.pop(0)
@@ -241,7 +253,7 @@ def main():
rmembers = mlist.getMemberCPAddresses(rmembers)
dmembers = mlist.getMemberCPAddresses(dmembers)
- if invalidonly or unicodeonly:
+ if invalidonly or unicodeonly or moderatedonly or notmoderatedonly:
all = rmembers + dmembers
all.sort()
for addr in all:
@@ -251,6 +263,10 @@ def main():
showit = True
if unicodeonly and isunicode(addr):
showit = True
+ if moderatedonly and mlist.getMemberOption(addr, mm_cfg.Moderate):
+ showit = True
+ if notmoderatedonly and not mlist.getMemberOption(addr, mm_cfg.Moderate):
+ showit = True
if showit:
print >> fp, formataddr((safe(name), addr))
return