web-dev-qa-db-ja.com

GajimはGmailに接続できなくなりました

Gajimを開いてGmailアカウントに接続しようとすると、次のように表示されます。

  1. 安全でない接続について警告します。

    Insecure connection: You are about to send your password on an unencrypted connection. Are you sure you want to do that?

  2. 安全でない接続を選択すると、Gmailのユーザー名とパスワードは正しいのに、認証が失敗します。

    Authentication failed with "gmail.com": Please check your login and password for correctness.

  3. 「プログラミングエラー」ウィンドウを表示します。

    A programming error has been detected: It is probably not your fault, but should be reported to the developers nonetheless.

    詳細は次のとおりです。

    Traceback (most recent call last):

    _File "/usr/share/gajim/src/dialogs.py", line 1538, in on_response_ok_

    self.user_response_ok(self.is_checked())

    _File "gajim.py", line 2238, in on_ok_

    gajim.connections[account].connection_accepted(data[0], 'plain')

    _File "/usr/share/gajim/src/common/connection.py", line 739, in connection_accepted_

    _on_auth=self.__on_auth)_

    _File "/usr/share/gajim/src/common/xmpp/client_nb.py", line 445, in auth_

    self._on_doc_attrs()

    _File "/usr/share/gajim/src/common/xmpp/client_nb.py", line 470, in _on_doc_attrs_

    _if not self._sasl or self.SASL.startsasl == 'not-supported':_

    _AttributeError: NonBlockingClient instance has no attribute 'SASL'_

どうすればこれを修正できますか? Mandriva2010.1を使用しています

3
Nx212

これは、数日前に bug として報告されました。どうやらGoogleは他のサーバーとは異なる方法でデータを送信するので、特別に処理する必要がありますが、まだ修正されていません。

2
user37591