Susan0722 wrote:
Well maybe Borg could put in some kind of a mod to not allow those types of subject lines........now there's an idea!! Mod builders? Let's make one for that!
It's very much like spam! You don't know what you're getting until you open it.
Or how about they are just deleted as soon as they are posted? 
|
That kind of a mod is not really possible. It is theoretically possible, but ASP is the wrong language to use. At a minimum you would want a custom component or ASP.NET simply because it would be processing intensive.
You could do a quick hack for it, but you would suffer from reliability issues - many posts would trigger false positives.
A really good implementation would require a low level programming language like C or even lower. Other compiled languages would suffice, but they would still soak up a lot of CPU power.
The main problems would be spell checking, thesaurus lookups, grammar checks, and the speed to do those. At some point you would need a custom word density check, but that would make the problem even worse.
In short, "Abandon all hope ye who enter here..."