Exemplo n.º 1
0
Arquivo: __init__.py Projeto: dax/jcl
 def filter(self, stanza, lang_class):
     """
     Filter account to be processed by the handler
     return all accounts. DB connection might already be opened.
     """
     accounts = account.get_all_accounts()
     return accounts
Exemplo n.º 2
0
Arquivo: feeder.py Projeto: dax/jmc
 def filter(self, stanza, lang_class):
     """
     Return only email account type to check mail from
     """
     accounts = account.get_all_accounts(account_class=MailAccount)
     return accounts