remove a rule which matches false positives
This commit is contained in:
parent
6444ee9146
commit
a24a535d1c
1 changed files with 2 additions and 2 deletions
|
|
@ -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.'):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue