California Sues Spammer for $2 Million
KilroyTheVeg writes "The Mercury News reports that the California Attorney General, Bill Lockyer, filed suit against Internet marketer PW Marketing LLC, accusing the company of illegally spamming millions of Californians. The Story is here and the Sidney Morning Herald also has the story here.
The suit named PW Marketing LLC (note:subpoena in link is third one down the page) and its owners Paul Willis and Claudia Griffins defendants in the suit which seeks "at least" $US2 million from them for allegedly flouting several state consumer protection laws banning spam mail. All I can say is Make 'em pay, it's the only way to hurt 'em where it counts." Update: 09/30 22:02 GMT by T : Note, that's Sydney Morning Herald.
Nice idea, but ineffective. The problem with spam is that there will always be people who respond to it, because they're uneducated. And because of them, spammers stay in business and the rest of us have to suffer.
And the men who hold high places must be the ones who start
To mold a new reality... closer to the heart
Though humorously ironic, this may fall under the definition of barratry, which is to drum up legal turmoil among those who would otherwise not bother with it. No lawyer am I, but I think it has to be made into a class action suit before the State could go contacting people.
Beer wants to be free
Slashdot: We're libertarians, except when it comes to spam.
What's libertarian about *allowing* spam?
It's not as if the law allows us to take matters into our own hands and take down the spammers personally and permanently. So this is one case where one has to turn to the law.
Personally, if people spammed me, I'd give them one warning, and then start hacking their systems. However, as this is illegal and will end up with me paying fines or in prison, this option is not open to me.
Coming soon - pyrogyra
is here (PDF format).
... would be the next logical step.
Hopefully this lawsuit will be the first of many. If enough states jump on the bandwagon & make it easier for private individuals to sue, this crap can at least be pushed out of the US (or any other country that set a good precedent). A few class-action lawsuits with only 10-20,000 offended parties receiving $100-500 apiece plus legal fees would go a *long* way to making spam economically unfeasible.
Tracking spammed e-mail addresses and affected ISPs would be the biggest challange, but a database set up to process forwarded spam (such as (uce@ftc.gov) could provide plenty of evidence as to the extent of the problem and damages. Set up a system so persons who use it reap the rewards of successful spammer prosecutions & you have the perfect incentive to get people to report this superficially "harmless" crime.
Here.
Deterring these "professional" spammers (many of whom have previous convictions for fraud) should therefore have a far greater effect than the numbers would suggest. Most would probably take their "talents" to greener pastures (anyone short of a few dodgy executives?)
But the Supreme Court is under no obligation to hear the case - they pick cases with "interesting" circumstances to establish case law. I seriously doubt they'd give spammers an audience.
So assuming that the spammers fight until the last possible appeal, this is the way it might go:
1) California State Supreme Court rules against spammers
2) Spammers appeal the ruling to Federal Circuit Court of Appeals
3) Court of Appeals rules against the spammers
4) Spammers appeal the ruling to the U.S. Supreme Court
5) Supreme Court declines to hear the case
6) Spammers are out of options
Also, there are jurisdictional problems - the State asserts that the defendants are doing business in Santa Clara County (northern California) so they can be tried there instead of down in southern California where they live, based on the assertion that spam was sent to email addresses in Santa Clara County - even though the one spam they're quoting in the complaint clearly says that they do business in Canyon Country, CA, and they don't list any recipients who live in Santa Clara county. That's basically equivalent to busting a snail-mail-order business from a remote jurisdiction because they mailed advertising postcards there.
I haven't read all the business regulation laws referred to, so some of the sections are probably legally correct interpretations of some of California's really bad laws, but the processes still seem inappropriate. A couple of examples:
("Canyon Country" is a city in Southern California), and if it's not in the US, it's not California's jurisdiction and California business regulations shouldn't apply to them.
All told, it's a terrible case, and it ought to be possible to either find a much better set of sleazy spammers to make an example of, or do a competent and Constitutional job of prosecuting them properly
Bill Stewart
New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
Use the spatula, Luke
it would be an even bigger shame if someone (or lots of someones) ran something like the following script from cron every 10 minutes or so.
/usr/bin/perl
;
& Keywords=bulk%20email';
/xargs/i ; ;
;
obvious TODO ideas are a) fetch the second and subsequent pages from the search cgi, and/or b) only fetch the first 10 results rather than all of them and/or c) only fetch results which cost >$1
#!
use strict
use LWP::UserAgent;
use HTML::TokeParser;
my @URL;
my $action = 'http://www.overture.com/d/search/?type=home&tm=1
my $ua = LWP::UserAgent->new(env_proxy => 0, keep_alive => 5, timeout => 10);
$ua->agent('Mozilla/4.51 (Macintosh; I; PPC)');
#$ua->proxy('http', 'http://localhost:3128/');
my $request = HTTP::Request->new('GET', $action);
my $response = $ua->request($request);
my $p = HTML::TokeParser->new(\$response->content);
# build the list of URLs
while (my $token = $p->get_tag("a")) {
my $url = $token->[1]{href} || "-";
my $text = $p->get_trimmed_text("/a");
next unless $url =~
push @URL, $url
}
# now fetch each URL
foreach (@URL) {
print "$_\n"
my $request = HTTP::Request->new('GET', $_);
my $response = $ua->request($request);
};