Chat Core Protocols
Last updated
Was this helpful?
Last updated
Was this helpful?
The code used by Thunderbird has some abstractions to deal with the differences between protocols (e.g. IRC vs. XMPP).
Protocols are implemented in chat core using JavaScript.
Protocols must implement the proper interfaces and be registered with the category manager in order to be found. Protocols need to implement the (this can mostly be done using ). The minimum set of interfaces to implement are:
: Additional XPCOM utilities.
: Simplified socket code.
: Includes basic JavaScript implementations of the interfaces and some helper code.
: Simplified HTTP request code
The code for the JavaScript protocols we ship by default is .
: A full implementation, including private chats and MUCs, etc.
: An extremely simple example meant to serve as test code for the interfaces.
: An implementation that heavily depends on an external SDK.
: A full implementation, including private chats and MUCs, etc. There are also other protocols which inherit and customize XMPP:
There are also some stub implementations for protocols that Thunderbird used to support, but no longer does. These exist purely for the icons to show up and for a nice error message to appear when the account tries to connect.
This lists the protocol plugins that the core service knows about. You can copy the code (as it is), paste it in the error console (linebreaks will automatically be ignored) and press "Enter" to run it.