Skip to content

Prosody 0.10 does not allow [email protected] JID format #94

@uncovery

Description

@uncovery

When you connect to prosody 0.10, you cannot use

$client = new JAXL(array(
        'jid' => '[email protected]',
        'pass' => 'my_password',
    ));

You need to change it to this format:

$client = new JAXL(array(
        'jid' => 'username',
        'host' => 'server.com',
        'pass' => 'my_password',
    ));

the examples in the documentation should be updated accordingly.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions