RE: [PHP] (OT) Our Spam Friend

2002-07-10 Thread Brian McGarvie
we should make a script that constantly emails him single characters and all of us run it in a back ground process ;) -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED]] Sent: 10 July 2002 12:03 AM To: PHP Subject: [PHP] (OT) Our Spam Friend I just thought this

Re: [PHP] (OT) Our Spam Friend

2002-07-10 Thread Alberto Serra
ðÒÉ×ÅÔ! Brian McGarvie wrote: we should make a script that constantly emails him single characters and all of us run it in a back ground process ;) He is lucky we have all to much to do in our lives anyway :) But if anyone has got spare time... the guy's mailbox (unlike most russian public

Re: [PHP] (OT) Our Spam Friend

2002-07-10 Thread vins
Sign up for a free server somewhere and create a page that just sends the request to the server. ?php while($x != $count) { mail(The Creap, $x) $x++; } ? Note there isn't a count variable then the only person that can stop it is the system op on the free server. Brian McGarvie

RE: [PHP] (OT) Our Spam Friend

2002-07-10 Thread César Aracena
of thousand emails. I figure it out when sending 10.000.000 at one ;) -Original Message- From: vins [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 5:17 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] (OT) Our Spam Friend Sign up for a free server somewhere and create a page

Re: [PHP] (OT) Our Spam Friend

2002-07-10 Thread vins
What just a slap together of how we could make him crazy... but now that someone has pointed out to us that his mailbox is now full to he can't even unsubscribe from the list LOL WOOPS... We need to find out how to breakup the mailserver calls into 1000 emails sent every second and pause the

Re: [PHP] (OT) Our Spam Friend

2002-07-10 Thread Joshua E Minnie
Why not just use this code: ? while(TRUE) { mail(Our Special Friend,); } ? Vins [EMAIL PROTECTED] wrote: ?php while($x != $count) { mail(The Creap, $x) $x++; } ? Note there isn't a count variable then the only person that can stop it is the system op on the free server.