Date: Fri, 2 Aug 2002 17:59:00 +0200 From: Roman Neuhauser <neuhauser@bellavista.cz> To: freebsd-questions@freebsd.org Subject: Re: Script help Message-ID: <20020802155900.GH52563@freepuppy.bellavista.cz> In-Reply-To: <20020802155258.GG52563@freepuppy.bellavista.cz> References: <3.0.5.32.20020802094620.02ba28a8@mail.sage-one.net> <20020802155258.GG52563@freepuppy.bellavista.cz>
next in thread | previous in thread | raw e-mail | index | archive | help
> Date: Fri, 2 Aug 2002 17:52:58 +0200
> From: Roman Neuhauser <neuhauser@bellavista.cz>
> To: freebsd-questions@freebsd.org
> Subject: Re: Script help
>
> > Date: Fri, 02 Aug 2002 09:46:20 -0500
> > To: freebsd-questions@freebsd.org
> > From: "Jack L. Stone" <jackstone@sage-one.net>
> > Subject: Script help
> >
> > When placing blocks on some ISPs as being sources of spam floods, one
> > consideration has to be if it affects a number of innocent members on
> > various vhost majordomo mail lists so they may have passes.
> >
> > I know I can find a list of any that would be affected by manually doing this:
> > grep spammer1.net /mj/vhost1.com/lists/list1
> > grep spammer1.net /mj/vhost2.org/lists/list2
> > grep spammer1.net /mj/vhost2.org/lists/list2-digest
> > ..etc, etc.
> >
> > ..but, doing that for each list takes a lot of time and some type of
> > script would sure speed up things, like this command that runs a script to
> > check the above 3 mail lists all at once:
> > root@myserver>> check_all_lists <spammer1.net>
> > output = goodguy1@spammer1.net
> > goodguy2@spammer1.net
> > goodguy3@spammer1.net
>
> grep -Fl spammer1.net /mj/*/lists/*
hm. if you had enough (like 3000) vhosts you could exceed your
shell's (or is it kernel? anyone?) command line argument count
limit. if that's the case, you could (not tested):
#!/bin/sh
for d in /mj/*; do
grep -Flr spammer1.net $d/lists
done
--
FreeBSD 4.6-STABLE
5:55PM up 3 days, 1:31, 10 users, load averages: 0.00, 0.00, 0.00
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020802155900.GH52563>
