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 was worth sharing. :-)
 
 - The following addresses had permanent fatal errors -
 [EMAIL PROTECTED]
 
 - Transcript of session follows -
 RECIPIENTS MAILBOX IS FULL
 554 [EMAIL PROTECTED]... Service unavailable
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




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 mail servers) *will* accept mail from a dial-up SMTP server 
having f**k.you (or whatever, just take the ** off and replace with 
proper coding) as an host name. I just happened to check ;)

Not that I was willing to. But we are having SMTP problems so I just 
send the mail from the SMTP rauuning on the box I sit at while the 
trouble gets solved.

Western addresses will get it (including our friend's address and this 
list) while my own address returns me the mail saying that no, you 
cannot just login from a dial-up and pretend you were an internet 
server. Now your server is blacklisted LOL

My 2 kopeki (cents). :)

ÐÏËÁ
áÌØÂÅÒÔÏ
ëÉÅ×

-_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-

LoRd, CaN yOu HeAr Me, LiKe I'm HeArInG yOu?
lOrD i'M sHiNiNg...
YoU kNoW I AlMoSt LoSt My MiNd, BuT nOw I'm HoMe AnD fReE
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




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 [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
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 was worth sharing. :-)

 - The following addresses had permanent fatal errors -
 [EMAIL PROTECTED]

 - Transcript of session follows -
 RECIPIENTS MAILBOX IS FULL
 554 [EMAIL PROTECTED]... Service unavailable



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] (OT) Our Spam Friend

2002-07-10 Thread César Aracena

Hi all... If you read the latest post from me you will see that it was
my intention when creating a looping mail sender. The post was called
mail() function. Although I took it off after sending him like
25.000.000 mails that where called Hi0, Hi1, Hi2, Hi3, etc. The sender
and the subject also increased by a number in order to difficult him the
task of blocking the sender.

I took it off because I guessed I could get into trouble and because I
though that he would have killed his account by then.

The only problem I see in your scripts, is that the server will time out
after a couple 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 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 [EMAIL PROTECTED] wrote in message
 news:[EMAIL PROTECTED]
 mckinlay.co.uk...
 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 was worth sharing. :-)
 
  - The following addresses had permanent fatal errors -
  [EMAIL PROTECTED]
 
  - Transcript of session follows -
  RECIPIENTS MAILBOX IS FULL
  554 [EMAIL PROTECTED]... Service unavailable
 
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




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 server request... then the server is sure
not to timeout.


Brian McGarvie [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
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 was worth sharing. :-)

 - The following addresses had permanent fatal errors -
 [EMAIL PROTECTED]

 - Transcript of session follows -
 RECIPIENTS MAILBOX IS FULL
 554 [EMAIL PROTECTED]... Service unavailable



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




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.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] (OT) Our Spam Friend

2002-07-09 Thread Chris Shiflett

I just thought this was worth sharing. :-)

- The following addresses had permanent fatal errors -
[EMAIL PROTECTED]

- Transcript of session follows -
RECIPIENTS MAILBOX IS FULL
554 [EMAIL PROTECTED]... Service unavailable



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php