On Fri, 6 Aug 1999, Kirsten Petersen wrote:
> Is there a command to search for an owner in the lists?  We have several
> people who must have set up their lists with an incorrect address for
> themselves as owner.  We get error messages, but the errors don't tell me
> which list the owner is on.

I'm not aware of one, but it would be easy to write one.  Assuming
for the moment your Listserv runs on unix, you could place the following
in Listserv's /home directory and run it or redirect the output
to a file:

#!/bin/sh
for File in *.list ; do
    echo `basename $File .list`:
    listview $File | grep -i owner=
done