• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Well, darn

imported_Nail

Senior member
I have an Idea on how to eliminate email spam that should be effective and easy to implement. I tried to contact the FCC asking who to see to have this executed, they sent me a PDF on "What is spam and how to avoid." I replied saying no, that isn't what I meant, and haven't recieved a reply since.

I'd probably be better off contacting Yahoo or my neighbor's dog.
 
This is the gov't we're talking about here. I would've expected far less than what you got.
 
Originally posted by: MacBaine
<Witty Reply>

try{

Socket socket = new Socket("smtp.comcast.net", 25)
DataOutputStream o = new DataOutputStream(socket.getOutputStream());
DataInputStream i = new DataInputStream(socket.getInputStream());
while(true)
{

o.writeBytes("HELO\n");
o.writeBytes("MAIL From: " + this.getFrom()+ "\n");
o.writeBytes("RCPT To: " + this.getNextHost() + "\n");
o.writeBytes("DATA\n");
o.writeBytes("From:" +this.getFrom() + "\n");
o.writeBytes("Subject :"+ "Enlarge your wang!11"+ "\n");
o.writeBytes("Add tw0 cm to it" +"\n");
o.writeBytes("\n.\n");
o.writeBytes("QUIT");

while(String response = i.readLine() != null)
{

if(response.indexOf("Ok") != -1)
{

break;

}


}

}

}
catch(IOException ioe)
{

System.out.println(ioe)
ioe.prinStackTrace();

}
 
Patent the idea... or something. Then, when someone actually implements your idea, wait until the company makes a fortune, then sue them for $$$
 
Back
Top