> 1) is there a place to parse tinyMCE inputs for email addresses and > have them automatically changed via a parsing function defined as > below?
Yes, in your type's CFC you can add a method called beforeSave 1. returnType="struct" 2. require an argument called stProperties 3. use rereplace() to replace all email addresses in stProperties.body with your new string 4. <cfreturn stProperties /> > 2) Is it even worth it: might spammers, when trying to robot their > way through webpages looking for emails, not also look at ascii > characters, or say other attempts like using [at] [dot] or -=At=- or > some other combination of characters to confuse things? It is very likely that spammers have figured out this tactic many years ago (although I don't have data to back that up). Personally I use javascript on page load. It's messy, but not likely that spammers will ever figure it out. Still, the ASCII replacement is not a bad idea and probably works well enough. Regards, -- Jeff Coughlin Web Application Developer http://jeffcoughlin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/farcry-dev?hl=en -~----------~----~----~----~------~----~------~--~---
