Came across this interesting article. But what do you all think?
Say Goodbye to Contact Form Spam
https://omrilotan.medium.com/say-goodbye-to-contact-form-spam-d96c268ad5b7
https://omrilotan.medium.com/say-goodbye-to-contact-form-spam-d96c268ad5b7
Came across this interesting article. But what do you all think?
11 Comments
mark@programming.dev · 5 pts · 2y
Wouldn't this effectively mark all messages from a user who isn't using JavaScript as spam? š
rebelsimile@sh.itjust.works · 3 pts · 2y
Apparently the rate of users not using JS is about 0.2% (and has been that way for 10 years), so just applying this solution the the large margins as heās doing, Iād probably just make an alternate message saying āplease enable javascript to contact meā and let that be that.
mark@programming.dev · 3 pts · 2y
Eh. These sorts of metrics aren't always accurate. And the source company did the study in 2016, which was a very very different internet, and doesn't go into detail about how they were able to determine this number. I would take that with a grain of salt. I agree that just having a notice somewhere is better than not, though.
rebelsimile@sh.itjust.works · 1 pts · 2y
Sure, I was just curious and looked it up, thatās the first link I saw. I guess the question is ā is it better to theoretically annoy real users who arenāt using JS (and how many are there) or is it better to frustrate and annoy lazy spammers (and how many are there?). On my own sites I really rarely get non-spam email. Iād be fine making a random 10-45 second timer on my contact forms doing this, no one needs to contact me in under 10 seconds on my websites.
borari@lemmy.dbzer0.com · 2 pts · 2y
mark@programming.dev · 1 pts · 2y
Yeah, it's definitely a very unique approach I haven't seen before. I've been using the "honeypot" method for years, which has been working surprisingly well.
Blisterexe@lemmy.zip · 1 pts · 2y
they could add a little text box thats hidden by javascript tby default informing them of that
elint@programming.dev · 4 pts · 2y
Interesting. That reminds me, I need to update one of my scripts.
+time.sleep(1.2)
cosmicrose@lemmy.world · 2 pts · 2y
Speaking of a āblack holeā email address, are there any addresses set up for the purpose of catching spam? Like if Gmail had an address for spam that contributed to its spam detection.
jadero@programming.dev · 5 pts · 2y
The Stalwart mail server allows for that. They call them "spam traps".
Basically, it's a real email address that literally never gets used or referenced anywhere, thus assuring any email received is unsolicited by definition. Stalwart's spam engine uses any such email to help train the spam filter.
I can't imagine that Stalwart is only one implementing such a system.
I've never used Stalwart, but it's the email server I've selected should I decide to do what everyone tells me I shouldn't: run my own server for me, my wife, and the two domains we control. Their documentation is basically a master class in email.
cosmicrose@lemmy.world · 3 pts · 2y
āSpam trapā and āspam honeypotā are exactly the keywords to search for. I found a bunch of info about some services you can use to set them up. Iād recommend adding ā-avoidā to your search filters because every email marketer has their own article titled āAbout Spam Traps and How to Avoid Themā which just pollutes search results if youāre actually looking to set up your own.
jadero@programming.dev · 2 pts · 2y
Thanks!
mark@programming.dev · 1 pts · 2y