> Is there a way to set it up so that no matter what, a person cannot 'who'
> a list? I have a mailing list that I've set up and I feel it would be
> better if the subscribers wouldn't be able to get the list of
> subscribers, but if I set it private_who=yes, people who are subscribed
> can still who the list.
>
> Is there an easy solution?
Sure, edit majordomo, and hard-code something.
Look for the do_who function, and put something like this before the line
that reads "# Check to see that the list is valid":
if ($clean_list eq "my-list") {
print REPLY "**** 'who' is disabled for this list.\n";
return 0;
}
Perhaps the configuration should allow more choices than private and public,
but for now the above solves your problem. "Use the source, Luke"
--
Paul Close pdc@sgi.com ...!{ames, decwrl, uunet}!sgi!pdc
No fate but what we make
References:
|
|