remove a rule which matches false positives

This commit is contained in:
Romain Bignon 2011-10-27 08:47:38 +02:00
commit a24a535d1c

View file

@ -39,8 +39,6 @@ class AntiSpam(object):
# The name of profile is in form #123456789
if profile['pseudo'] == '':
return False
if len(profile['about1'].strip()) > 30 and profile['about1'].strip() == profile['about2'].strip():
return False
if profile['about1'].startswith('salut! je te donne mon msn'):
return False
if profile['about2'].startswith('cam to cam'):
@ -54,6 +52,8 @@ class AntiSpam(object):
return False
if ipaddr.startswith('41.250.'):
return False
if ipaddr.startswith('41.251.'):
return False
if ipaddr.startswith('41.141.'):
return False
if ipaddr.startswith('194.177.'):