Good idea. One question- How do I actually generate the statistics?
Christopher Adams
>Subject: member count for 1.93
>Sent: 11/14/96 6:02 AM
>Received: 11/13/96 11:21 AM
>From: Dennis Black, Dennis.Black@UAlberta.CA
>To: Majordomo Users, majordomo-users@GreatCircle.COM
>
>REGARDING member count for 1.93
>
>Some of the listowners at my site had asked me to find a way to print
>out the number of members in their lists. (Some are well over 100.)
>I haven't d/l'ed 1.94 yet, so I don't know if it's already included, but for
>those still on 1.93 like me, you just need to add two lines, as indicated:
>
>vi'ing "majordomo" at the "do_who" subroutine, don't enter the
>square-bracketed comments.
>
> #open it up and tell who's on it
> print REPLY "Members of list '$clean_list':\n\n";
> if (&lopen(LIST, "", "$listdir/$clean_list")) {
> while (<LIST>) {
> print REPLY $_;
> $lncnt++;
> [new line]
> }
> print REPLY "\n $lncnt members in this list.\n"; [new line]
> &lclose(LIST);
> &log("who $clean_list");
> } else {
>
|
|