Blocking email addresses using profanity filter?

Continuing the discussion from Inappropriate / Obscenity / Profanity Language Filter:

So the profanity filter works well … not that we see it used often.

But is there a way to add regex/patterns so it could block people from putting an email address in a post?

That would be extremely dangerous, though.

“Extremely dangerous” is a strong phrase. Can you say more about why you feel that way?

http://blog.codinghorror.com/obscenity-filters-bad-idea-or-incredibly-intercoursing-bad-idea/

Etc etc etc

Regex is like a language unto itself. Even a lot of seasoned programmers have trouble with it.

Using it requires not only understanding every possible variation you want to match, but also every possible variation you want to not match.

A lot of people do fairy well with the first, but fail with the second.

For example, using (.)* matches everything, anything, and nothing.
I see it used way too often as a “short cut” to get things to match, but unfortunately it often results in matching what it shouldn’t.

I guess if it were under the “developers only” section it might be enough to scare off Admins that shouldn’t mess with it. But human nature being what it is, give out loaded guns and it’s only a matter of time before someone shoots themselves in their foot.

And as for a valid email regex, it is notoriously difficult to craft a fool-proof one. Many come close and are “good enough” but without additional processing there will likely be problems at some point.

Fair enough, but the filter already exists in Discourse, even if you aren’t using it personally. Also, keep in mind (in response to your blog post) that the Discourse filter doesn’t replace strings, it masks them with squares. :slightly_smiling:

Regexes are inherently difficult, so I’m not necessarily proposing that you ask everyday users to use them as the mainstream use case. The current system works fine for most cases, but there’s no way to surefire way prevent people from posting most common email addresses. (I am not interested in the debate on the “perfect” email regex.)

Meanwhile, I’m simply blocking some of the most common domain names like @gmail.com, @yahoo.com, etc.

I am not interested in letting perfect get in the way of good here. Just trying to prevent the most common occurrences.

Actually, last I knew it replaces the characters with the box decimal value

eg. blocking “@gmail.com”, “someone@gmail.com” would look like

someone■■■■■■■■■■

and the source would be

someone■■■■■■■■■■ 

That is what I meant when I finished the sentence with:

Forgive my error of specificity. What I meant was that it doesn’t replace it with other letters to change the word, as described in the blog post above. :wink:

Привет,

Итак, я хочу предотвратить публикацию адресов электронной почты в открытых обсуждениях нашего сообщества в целях защиты конфиденциальности пользователей (возможно, некоторые люди, несмотря на все наши усилия, не осознают, что обсуждения являются публичными?).

Подойдёт ли такой вариант? Или есть существенные риски, которые я упускаю?

*@*.com
*@*.org
*@*.net
*@*.edu
*@*.info
*@*.biz

Все регулярные выражения несут огромный риск: чем они шире, тем выше риск. Они довольно рискованны.

Моя наивная надежда заключалась в том, что символ «@» и включение доменных имен верхнего уровня сузит поиск до адресов электронной почты. Нет ли способа нацелиться именно на них?

Что-то вроде *.?@gmail.com было бы значительно безопаснее. В идеале я бы сказал, что только буквенно-цифровые символы, а не звездочка (все символы).