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?

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:

Olá,

Então, estou interessado em evitar que as pessoas compartilhem seus endereços de e-mail em discussões públicas em nossa comunidade, em prol da privacidade delas (talvez algumas pessoas não percebam, apesar de nossos melhores esforços, que as discussões são públicas?).

Isso seria adequado? Ou haveria riscos significativos que não estou percebendo?

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

Todas as expressões regulares carregam um risco enorme; quanto mais abrangente, maior o risco. Essas são… bastante arriscadas.

Minha esperança ingênua seria que o “@” e a inclusão de domínios de nível superior restringissem a busca apenas a endereços de e-mail. Não há como direcionar esses?

Algo como *.?@gmail.com seria significativamente mais seguro. Idealmente, eu diria apenas caracteres de palavra, sem o asterisco (todos os caracteres).