From a24a535d1c787482a94e3d84da58d25ada4ecf8e Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Thu, 27 Oct 2011 08:47:38 +0200 Subject: [PATCH] remove a rule which matches false positives --- weboob/backends/aum/antispam.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weboob/backends/aum/antispam.py b/weboob/backends/aum/antispam.py index 39ab0702..8dba6b59 100644 --- a/weboob/backends/aum/antispam.py +++ b/weboob/backends/aum/antispam.py @@ -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.'):