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 {
|
|