Easy installer and structure for ejabberd contributed modules

Ejabberd comes with a lot of modules, but sometimes you may need an unsupported feature from the official sources or maybe you need to write your own custom implementation for your very special needs.

For many years, such contributed modules are stored on ejabberd-contrib repository.

However, these modules required manual compilation. This means having Erlang/OTP installed, a base knowledge of how to compile ejabberd modules and manual maintenance when ejabberd’s api is updated over time.

Complex operations to manage ejabberd contributed modules is now behind us. ejabberd is now able to fetch module sources by itself, compile with correct flags and install in a local repository, without any external dependencies. You now longer need to know Erlang and have it installed in order to use the contributed modules. This works with ejabberd modules written in Erlang and will also support new Elixir modules.

ejabberdctl module_install

Before getting started, you need to use ejabberd official repository on Github. We are gathering feedback before you see that command in the next stable release. It will work with ejabberd HEAD, starting from version 15.02.77 (aa1250a). Once you have an ejabberd compiled from source installed, you can start playing with the commands.

As a user, this is how it works:

First you need to get/update the list of available modules:

$ ejabberdctl modules_update_specs

Then you can list available modules

$ ejabberdctl modules_available
...
mod_admin_extra Additional ejabberd commands
mod_archive     Supports almost all the XEP-0136 version 0.6 except [OTR](/blog/what-is-off-the-record-messaging-otr/)
mod_cron        Execute scheduled commands
mod_log_chat    Logging chat messages in text files
...

Let’s give mod_cron a try:

$ ejabberdctl module_install mod_cron
ok

This command installs mod_cron from ejabberd-contrib repository. An example default configuration is installed in:

$HOME/.ejabberd-modules/mod_cron/conf/mod_cron.yml

All you have to do is to copy paste the module and add the values in there in the proper place in your ejabberd.yml config file. Be careful, the snippet can include ACLs, listeners and module configuration, that you have to put in the right place in your config file.

Now, check your new module is installed:

$ ejabberdctl modules_installed
mod_cron

And finally, you can remove it:

$ ejabberdctl module_uninstall mod_cron
ok

What’s next

Please note this is provided as a beta version. We want the work in progress to be released early to gather feedback from developers and users.

For now, you need to edit the configuration snippet provided in module’s conf directory and copy it into your ejabberd’s main configuration. Then you’ll need to restart ejabberd or manually start the module.

However, our plan is to keep iterating on the tool and to make our best to make module installation as easy as possible and avoid need to change main configuration: ejabberd should be able to include module configuration snippets on the fly in a near future.

As a developer, how can you provide an ejabberd contribution ?

As a developper, you still need Erlang and Ejabberd if you install everything from sources, but you can even not need Erlang if you installed ejabberd from official ProcesOne installer. The official installer includes everything needed to build ejabberd modules on its own.

First you can work on your own module by creating a repository in $HOME/.ejabberd-modules/sources/mod_mysupermodule, and creating a specification file in YAML format as mod_mysupermodule.spec (see examples from ejabberd-contrib). From that point you should see it as available module.

Before commiting your code, you should check if your module follows the policy and if it compiles correctly:

$ ejabberdctl module_check mod_mysupermodule
ok

if all is OK, your’re done ! Else, just follow the warning/error messages to fix the issues.

You can keep your repository private in this location, ejabberd see it as an available module, or you can publish it as a tgz/zip archive or git repository, and send your spec file for integration in ejabberd-contrib repository. ejabberd-contrib will only host a copy of your spec file and does not need your code to make it available to all ejabberd users.

Conclusion

We have a bright vision for the ejabberd modules ecosystem and this is just the first step. We are waiting to hear from you. With your feedback, your ejabberd installation with instantly become much much more powerful.


Let us know what you think 💬


11 thoughts on “Easy installer and structure for ejabberd contributed modules

  1. [root@chat bin]# ./ejabberdctl modules_installed
    mod_admin_extra Additional ejabberd commands
    mod_cron Execute scheduled commands
    mod_rest HTTP interface to POST stanzas into ejabberd
    [root@chat bin]# ./ejabberdctl module_check mod_rest
    Error: [{missing,”COPYING”}]

    Please help me to solve this issue

    • This errors means mod_rest does not contain a COPYING file on its root. This means the package is considered broken as it does not follow the packaging policy. i’ll check about that and commit the missing files if available.

  2. I’m using ejabberd installed from a Debian package (version 15.03). I ran ejabberctl module_install and everything appears to work but the module does not actually get installed. ejabberdctl modules_installed shows that it is installed but when I try to enable the module (mod_message_log) in the yml file, it crashed ejabberd with an ‘undef’ error. Any ideas?

  3. I have installed ejabberd 16.03 from binary source (ejabberd-16.03-osx-installer.app.zip)

    My os is OS X Yosemite

    After installation completed I started ejabberd:

    cd ejabberd_directory/bin

    ./ejabberdctl start

    I even checked the status to make sure it is started. Then I tried to retrieve the list of available modules:

    ./ejabberdctl modules_update_specs

    and it says ok!

    But I get nothing by running this:

    ./ejabberdctl modules_available

    And I cannot install any module.

    I would appreciate any help..

    • Developers usually just checkout their github repo into $HOME/.ejabberd-modules/sources

  4. I am not clear on the instructions. Copy and paste the module to where exactly?

  5. I’m using ejabberd as a dependency on an elixir app, how can i install a contrib module? Is there a magic way to use ejabberdctl on this scenario?

  6. I’m getting this error when I try to enable support for ejabberd mod_sip

    [critical] Listening module ejabberd_sip is not available: ejabberd is not compiled with SIP support

    Can you help me with that

Leave a Reply to Afaq Cancel Reply


This site uses Akismet to reduce spam. Learn how your comment data is processed.