當前位置: 首頁>>代碼示例>>Python>>正文


Python GenericAccount.imap_endpoint方法代碼示例

本文整理匯總了Python中inbox.models.backends.generic.GenericAccount.imap_endpoint方法的典型用法代碼示例。如果您正苦於以下問題:Python GenericAccount.imap_endpoint方法的具體用法?Python GenericAccount.imap_endpoint怎麽用?Python GenericAccount.imap_endpoint使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在inbox.models.backends.generic.GenericAccount的用法示例。


在下文中一共展示了GenericAccount.imap_endpoint方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: create_account

# 需要導入模塊: from inbox.models.backends.generic import GenericAccount [as 別名]
# 或者: from inbox.models.backends.generic.GenericAccount import imap_endpoint [as 別名]
    def create_account(self, db_session, email_address, response):
        try:
            account = db_session.query(GenericAccount).filter_by(
                email_address=email_address).one()
        except sqlalchemy.orm.exc.NoResultFound:
            namespace = Namespace()
            account = GenericAccount(namespace=namespace)

        account.email_address = response['email']
        account.password = response['password']
        account.date = datetime.datetime.utcnow()

        provider_name = self.provider_name
        account.provider = provider_name
        if provider_name == 'custom':
            account.imap_endpoint = (response['imap_server_host'],
                                     response['imap_server_port'])
            account.smtp_endpoint = (response['smtp_server_host'],
                                     response['smtp_server_port'])

        # Hack to ensure that account syncs get restarted if they were stopped
        # because of e.g. invalid credentials and the user re-auths.
        # TODO(emfree): remove after status overhaul.
        if account.sync_state != 'running':
            account.sync_state = None

        return account
開發者ID:GEverding,項目名稱:inbox,代碼行數:29,代碼來源:generic.py

示例2: create_account

# 需要導入模塊: from inbox.models.backends.generic import GenericAccount [as 別名]
# 或者: from inbox.models.backends.generic.GenericAccount import imap_endpoint [as 別名]
    def create_account(self, email_address, response):
        # This method assumes that the existence of an account for the
        # provider and email_address has been checked by the caller;
        # callers may have different methods of performing the check
        # (redwood auth versus get_account())
        namespace = Namespace()
        account = GenericAccount(namespace=namespace)

        # The server endpoints can ONLY be set at account creation and
        # CANNOT be subsequently changed in order to prevent MITM attacks.
        account.provider = self.provider_name
        if self.provider_name == 'custom':
            account.imap_endpoint = (response['imap_server_host'],
                                     response['imap_server_port'])
            account.smtp_endpoint = (response['smtp_server_host'],
                                     response['smtp_server_port'])

        account.create_emailed_events_calendar()

        # Shim for back-compatability with legacy auth
        # The old API does NOT send these but authentication now uses them
        # so set them (included here, set in update_account()).
        for username in ['imap_username', 'smtp_username']:
            if username not in response:
                response[username] = email_address
        for password in ['imap_password', 'smtp_password']:
            if password not in response:
                response[password] = response['password']

        return self.update_account(account, response)
開發者ID:nylas,項目名稱:sync-engine,代碼行數:32,代碼來源:generic.py

示例3: add_generic_imap_account

# 需要導入模塊: from inbox.models.backends.generic import GenericAccount [as 別名]
# 或者: from inbox.models.backends.generic.GenericAccount import imap_endpoint [as 別名]
def add_generic_imap_account(db_session, email_address='[email protected]'):
    import platform
    from inbox.models.backends.generic import GenericAccount
    from inbox.models import Namespace
    account = GenericAccount(email_address=email_address,
                             sync_host=platform.node(),
                             provider='custom')
    account.imap_endpoint = ('imap.custom.com', 993)
    account.smtp_endpoint = ('smtp.custom.com', 587)
    account.imap_password = 'bananagrams'
    account.smtp_password = 'bananagrams'
    account.namespace = Namespace()
    db_session.add(account)
    db_session.commit()
    return account
開發者ID:gisho,項目名稱:sync-engine,代碼行數:17,代碼來源:base.py

示例4: create_account

# 需要導入模塊: from inbox.models.backends.generic import GenericAccount [as 別名]
# 或者: from inbox.models.backends.generic.GenericAccount import imap_endpoint [as 別名]
    def create_account(self, db_session, email_address, response):
        try:
            account = db_session.query(GenericAccount).filter_by(
                email_address=email_address).one()
        except sqlalchemy.orm.exc.NoResultFound:
            namespace = Namespace()
            account = GenericAccount(namespace=namespace)

        account.email_address = response['email']
        account.password = response['password']
        account.date = datetime.datetime.utcnow()

        provider_name = self.provider_name
        account.provider = provider_name
        if provider_name == 'custom':
            account.imap_endpoint = (response['imap_server_host'],
                                     response['imap_server_port'])
            account.smtp_endpoint = (response['smtp_server_host'],
                                     response['smtp_server_port'])

        return account
開發者ID:Klaudit,項目名稱:inbox,代碼行數:23,代碼來源:generic.py

示例5: create_account

# 需要導入模塊: from inbox.models.backends.generic import GenericAccount [as 別名]
# 或者: from inbox.models.backends.generic.GenericAccount import imap_endpoint [as 別名]
    def create_account(self, db_session, email_address, response):
        try:
            account = db_session.query(GenericAccount).filter_by(email_address=email_address).one()
        except sqlalchemy.orm.exc.NoResultFound:
            namespace = Namespace()
            account = GenericAccount(namespace=namespace)

        account.email_address = response["email"]
        if response.get("name"):
            account.name = response["name"]
        account.password = response["password"]
        account.date = datetime.datetime.utcnow()

        provider_name = self.provider_name
        account.provider = provider_name
        if provider_name == "custom":
            account.imap_endpoint = (response["imap_server_host"], response["imap_server_port"])
            account.smtp_endpoint = (response["smtp_server_host"], response["smtp_server_port"])

        # Ensure account has sync enabled after authing.
        account.enable_sync()

        return account
開發者ID:rf-,項目名稱:sync-engine,代碼行數:25,代碼來源:generic.py


注:本文中的inbox.models.backends.generic.GenericAccount.imap_endpoint方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。