Andrew Hodgson wrote: > >I want to create a mailing list such that the subscribe mechanisms will give a >message to the users that this list is for invited members only, and the >subscription request will not be held for moderation.
This would require modifying code. >I initially configured the banned addresses in the ban_list section by >entering in the regular expression "^.*$", however, now we can't subscribe >anyone manually to the list, which is the only way we want to add people >anyway. > >Is there any way of doing this without having a tonne of subscription requests >in the moderation queue? Without code modification, your choices are to periodically dump the held subscription requests which could probably be done with a fairly simple cron, or to maintain the ban list and remove it before adding a member and then replace it. You could probably do the latter with a simple shell script which would run config_list to empty the ban_list, add_members and then config_list to restore the ban list. -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://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: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org
