Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Posted
2007-01-26 13:19:28 » |
|
I just thought of this. People these days are posting email addresses on forums and websites in the format: name[at]address[dot]com This is supposed to be a work around so email bots can't grab your address to spam it. However, what makes you think programmers that make email bots won't get smart and also search forums and websites for that kind of format to get email addresses instead of the traditional name@address.com? My point here is that almost whatever we do, we'll always get spam... However, this may prevent it a lot more than using the real address. Just a thought guys! 
|
|
|
|
Matzon
|
 |
«
Reply #1 - Posted
2007-01-26 14:20:32 » |
|
I've given up on posting my email address - so I just post it as normal, and then rely on greylisting and spam assassin - works pretty well
|
|
|
|
woogley
|
 |
«
Reply #2 - Posted
2007-01-26 15:30:36 » |
|
use an image instead of text.
|
|
|
|
Games published by our own members! Check 'em out!
|
|
Breakfast
|
 |
«
Reply #3 - Posted
2007-01-26 16:55:16 » |
|
Use literal english ("my username at the well known email service provided by google" for example) rather than any standard encoding. Until they get their Natural Language Processing up to scratch (possibly not even a computable problem) that will hold them off.
|
|
|
|
Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Reply #4 - Posted
2007-01-26 21:17:42 » |
|
Haha. Some good but probally confusing solutions.
|
|
|
|
ENC
|
 |
«
Reply #5 - Posted
2007-01-27 00:33:00 » |
|
Maybe we should insert binary codes in the email... or better.. byte codes.. heez 
|
|
|
|
Mr_Light
|
 |
«
Reply #6 - Posted
2007-01-27 01:03:48 » |
|
image recognising bots seem better at spotting the numbers and text in those security checks then I do on occasion I have to simply press next cause I can't make out what they are writing. as far as foo[at]barr[dot]comand bla@nospamgoogle.com I wouldn't worry about making it more sophisticated, its like any piece of 'commercial' software as lng as it works why touch it; as long as enough 'plain' email adresses are found I wouldn't worry to much about it.
|
It's harder to read code than to write it. - it's even harder to write readable code.
The gospel of brother Riven: "The guarantee that all bugs are in *your* code is worth gold." Amen brother a-m-e-n.
|
|
|
Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Reply #7 - Posted
2007-01-27 03:56:15 » |
|
Maybe we could just encrypt our email addresses and the other person can decrypt it. Run this and you'll see what I mean. 1 2 3 4 5 6 7 8 9 10 11 12
| public String decrypt(String str) { String newStr = ""; for (int i=0; i<str.length()/3; i++) { int off = i*3; String s = str.charAt(off)+""+str.charAt(off+1)+""+str.charAt(off+2); char ch = (char)Integer.parseInt(s); newStr += ch; } return newStr; }
System.out.println(decrypt("110097109101064097100100114101115115046099111109")); |
I used the following method for encryption: 1 2 3 4 5 6 7 8 9 10
| public String encrypt(String str) { String newStr = ""; for (int i=0; i<str.length(); i++) { String c = ""+(int)str.charAt(i); if (c.length() == 1) c = "00"+c; if (c.length() == 2) c = "0"+c; newStr += c; } return newStr; } |
Okay, yes, bad encryption. Easy to break, but maybe we'd get lucky by the email bots. Haha.
|
|
|
|
blahblahblahh
|
 |
«
Reply #8 - Posted
2007-02-02 15:24:13 » |
|
I just thought of this. People these days are posting email addresses on forums and websites in the format: name[at]address[dot]com This is supposed to be a work around so email bots can't grab your address to spam it. However, what makes you think programmers that make email bots won't get smart and also search forums and websites for that kind of format to get email addresses instead of the traditional name@address.com? Yes, people who do that and expect it to work are foolish. I never use that format, but much looser things that look like natural language.
|
malloc will be first against the wall when the revolution comes...
|
|
|
TheAnalogKid
|
 |
«
Reply #9 - Posted
2007-02-02 16:58:56 » |
|
Invent your own encoding and tell it to the receiver. For example: j-e-r-o-m-eATd-o-m-a-i-nDOTcom
|
|
|
|
Games published by our own members! Check 'em out!
|
|
Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Reply #10 - Posted
2007-02-03 03:27:27 » |
|
Or we could just not post our email addresses. 
|
|
|
|
Jackal von ÖRF
|
 |
«
Reply #11 - Posted
2007-02-03 13:09:30 » |
|
Use literal english ("my username at the well known email service provided by google" for example) rather than any standard encoding. Until they get their Natural Language Processing up to scratch (possibly not even a computable problem) that will hold them off.
I use the same method for my primary email address. This far I haven't got any spam sent to that address. See: http://www.orfjackal.net/about.php
|
|
|
|
Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Reply #12 - Posted
2007-02-03 16:00:43 » |
|
I have no spam in my new email address I got about three months ago because I haven't really posted my email address. My address listed in my profile is incorrect, not the current address; it's unmaintained. But I get next to zero spam.
|
|
|
|
Evil-Devil
|
 |
«
Reply #13 - Posted
2007-02-07 11:33:37 » |
|
I have no spam in my new email address I got about three months ago because I haven't really posted my email address. My address listed in my profile is incorrect, not the current address; it's unmaintained. But I get next to zero spam.
You don't have to post it anywhere. For some years i registered an email account at Lycos. For around 2 years i got no spam at all and i never gave that email address out to anyone. It was just a placeholder office for me. So, after this 2 years the spam started...due to many open relay smtp servers.... Evil
|
|
|
|
Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Reply #14 - Posted
2007-02-08 00:35:57 » |
|
I still use my old address for posting my email address on sites or creating accounts in which I want to prevent the spam. For example, I use it on web forums in which they require you to check your email and confirm your account (only to insure it's not a bot signing up on the website anyway, so it's not like they need my address). My old address has like 900+ spam emails. In only three months of no maintenence! use an image instead of text.
I like that idea. 
|
|
|
|
keldon85
|
 |
«
Reply #15 - Posted
2007-02-08 08:20:48 » |
|
You can also get spam as a result of chain letters. There are some clever methods for getting new email addresses such as sending spam email claiming to give something for free if you send to friends but include a particular email address. Plus if your computer is infected with viruses then every email you get containing a list of email addresses from a chain mail could provide spam bots on your computer with email addresses.
Some bots guess email addresses too! But there does need to be a war against sending spam, or maybe a few changes made to the whole mail protocol for sending non personal mail.
|
|
|
|
Mr_Light
|
 |
«
Reply #16 - Posted
2007-02-08 18:18:27 » |
|
war on spam? could we trivialise the word even more so?
|
It's harder to read code than to write it. - it's even harder to write readable code.
The gospel of brother Riven: "The guarantee that all bugs are in *your* code is worth gold." Amen brother a-m-e-n.
|
|
|
keldon85
|
 |
«
Reply #17 - Posted
2007-02-08 23:10:27 » |
|
Well who knows what we'll be fighting over in the future? We could have Australia threatening Japan with DDos attacks, for which Japan retaliates with a round of spam and counterstrike sessions 
|
|
|
|
Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Reply #18 - Posted
2007-02-09 01:25:42 » |
|
Well who knows what we'll be fighting over in the future? We could have Australia threatening Japan with DDos attacks, for which Japan retaliates with a round of spam and counterstrike sessions  Hahaha. Maybe they can just make a PHP application that sends an email out to all possible addresses. Such as a program to loop through all possible addresses with a-z, A-Z, 0-9, -, and _ (upto a maximum of like 64 characters per name and domain) and sends a spam email to all the possible addresses; a lot of possible address, obviously. Spaming every possible address is quite a harsh retaliation.
|
|
|
|
Kova
|
 |
«
Reply #19 - Posted
2007-02-09 01:33:00 » |
|
don't forget it isn't all in hiding your email yourself, every person you give it to must hide it also  ... I simply rely on spam protection my ISP has, very good. If there was any important mail that was filtered ... then tough luck, you shouldn't send important stuff over e-mail without confirmation 
|
|
|
|
Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Reply #20 - Posted
2007-02-09 01:33:55 » |
|
don't forget it isn't all in hiding your email yourself, every person you give it to must hide it also  ... I simply rely on spam protection my ISP has, very good. If there was any important mail that was filtered ... then tough luck, you shouldn't send important stuff over e-mail without confirmation  Yup, true.
|
|
|
|
swpalmer
|
 |
«
Reply #21 - Posted
2007-02-17 02:02:29 » |
|
What we need are email programs that auto-respond to spam messages as if you are interested in what they have to offer. Automatically follow all the links in the message,etc.
Then there will be so much noise for the spammers to sift through that it won't be profitable to spam.
|
|
|
|
Jamison
Junior Devvie  
We're all idiots in one way or another.
|
 |
«
Reply #22 - Posted
2007-02-17 04:11:04 » |
|
Yeah, that would work nicely. Spam the spammers! 
|
|
|
|
keldon85
|
 |
«
Reply #23 - Posted
2007-02-19 10:45:32 » |
|
Maybe what we need is a new email system that counters spam!
|
|
|
|
Abuse
|
 |
«
Reply #24 - Posted
2007-02-27 13:15:43 » |
|
3 years ago I set up a 2nd hotmail account, but have *never* used it. (to either send or receive mail)
Yesterday it received ~100 spam mails. Work that one out =/
|
|
|
|
keldon85
|
 |
«
Reply #25 - Posted
2007-02-28 02:52:15 » |
|
We tend to make emails containing real words or names. A spam bot only needs to assert the existence of a particular string within an email address and it will attempt numerous permutation's of email addresses using that string as a component.
|
|
|
|
Kova
|
 |
«
Reply #26 - Posted
2007-02-28 10:03:40 » |
|
yeah, 100 emails in 3 years isn't concerning, when you get 100 emails in 3 days, that's a problem.
|
|
|
|
|