On 04/16/2014 08:35 AM, Kirke Johnson wrote:
> Just to confirm my suspicions, the "chunk" capability requires Mailman
> newer than version 2.1.9?


If you mean the ability to set admin_member_chunksize from the admin
General Options page, then yes, that was added in 2.1.10.  Everything
else to do with chunking the admin Membership List has always been in
Mailman 2.1


> Another question: is there a way to negate
> the findmember search, so that all members not in the example.com
> domain could be shown?


The search is a python regular expression. There is syntax for negative
lookahead/lookbehind assertions, so that for example the search pattern

$(?<!example\.com)

will match any string that doesn't have 'example.com' immediately
preceding the end of the string.

The problem is this won't work because the search is done against both
the email address and the real name so while that search won't find
u...@example.com, that user's real name (say John Doe) doesn't end with
example.com so the search result will still include that entry because
it finds the real name.

-- 
Mark Sapiro <m...@msapiro.net>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan
------------------------------------------------------
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to