コード例 #1
0
def is_old_confirm(m):
    x = _confirm_re.search(m.as_string())
    if x:
        return wledb.check_presence("old_requests", "request", x.group(1))
    return False
コード例 #2
0
ファイル: wlelists.py プロジェクト: fullstackenviormentss/wle
def is_in_confirmed_list(str, c=None):
    for i in str:
        if wledb.check_presence("confirmed", "email", i.lower(), c):
            return True
    return False
コード例 #3
0
ファイル: wlelists.py プロジェクト: samueltardieu/wle
def is_in_confirmed_list (str, c = None):
    for i in str:
        if wledb.check_presence ("confirmed", "email", i.lower(), c):
            return True
    return False
コード例 #4
0
ファイル: wleconfirm.py プロジェクト: samueltardieu/wle
def is_old_confirm (m):
    x = _confirm_re.search (m.as_string())
    if x:
        return wledb.check_presence ("old_requests", "request",
                                     x.group (1))
    return False