Growing and curated ejabberd contributions repository - PR or ask to join !
Go to file
Badlop 4aa09c552c Rename spec of broken modules, so ext_mod doesn't list them as available 2021-07-07 21:31:05 +02:00
atom_pubsub Rename spec of broken modules, so ext_mod doesn't list them as available 2021-07-07 21:31:05 +02:00
ejabberd_auth_http ejabberd_auth_http: add troubleshooting section 2020-09-01 19:40:57 +02:00
extra Remove obsolete file 2015-04-29 12:59:44 +02:00
ircd Rename spec of broken modules, so ext_mod doesn't list them as available 2021-07-07 21:31:05 +02:00
mod_archive Rename spec of broken modules, so ext_mod doesn't list them as available 2021-07-07 21:31:05 +02:00
mod_cron Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_default_contacts Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_default_rooms Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_deny_omemo Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_filter Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_grafite Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_irc Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_isolation Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_log_chat Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_logsession Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_logxml erlang:now() is deprecated, replace with erlang:timestamp() 2021-07-06 21:37:42 +02:00
mod_mam_mnesia Remove mod_mam_mnesia 2016-03-08 00:14:25 +01:00
mod_message_log Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_muc_log_http Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_openid Rename spec of broken modules, so ext_mod doesn't list them as available 2021-07-07 21:31:05 +02:00
mod_post_log Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_pottymouth Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_profile Rename spec of broken modules, so ext_mod doesn't list them as available 2021-07-07 21:31:05 +02:00
mod_rest Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_s2s_log Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_shcommands Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_spam_filter Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
mod_statsdx mod_stats2file also misses mod_doc/0 2021-07-06 21:37:16 +02:00
mod_webpresence Add simple mod_doc/0 to prevent warnings; they won't be used anyway 2021-07-06 21:02:29 +02:00
.gitignore Ignore .beam files 2014-03-14 11:47:54 -05:00
README.md mod_irc and mod_mam_mnesia don't work nowadays 2021-07-06 22:13:36 +02:00

README.md

ejabberd-contrib

This is a collaborative development area for ejabberd module developers and users.

For users

To use an ejabberd module coming from this repository:

  • You need to have ejabberd installed.

  • If you have not already done it, run ejabberdctl modules_update_specs to retrieve the list of available modules.

  • Run ejabberdctl module_install <module> to get the source code and to compile and install the beam file into ejabberd's module search path. This path is either ~/.ejabberd-modules or defined by the CONTRIB_MODULES_PATH setting in ejabberdctl.cfg.

  • Edit the configuration file provided in the conf directory of the installed module and update it to your needs. Then apply the changes to your main ejabberd configuration. In a future release, ejabberd will automatically add this file to its runtime configuration without changes.

  • Run ejabberdctl module_uninstall <module> to remove a module from ejabberd.

For developers

The following organization has been set up for the development:

  • Development and compilation of modules is done by ejabberd. You need ejabberd installed. Use ejabberdctl module_check <module> to ensure it compiles correctly before committing your work. The sources of your module must be located in $CONTRIB_MODULES_PATH/sources/<module>.

  • Compilation can by done manually (if you know what you are doing) so you don't need ejabberd running:

    cd /path/of/module
    mkdir ebin
    /path/of/ejabberd's/erlc \
       -o ebin \
       -I include -I /path/of/ejabberd/lib/ejabberd-XX.YY/include \
       -DLAGER -DNO_EXT_LIB \
       src/*erl
    
  • The module directory structure is usually the following:

    • README.txt: Module description.
    • COPYING: License for the module.
    • doc/: Documentation directory.
    • src/: Erlang source directory.
    • lib/: Elixir source directory.
    • priv/msgs/: Directory with translation files (pot, po and msg).
    • conf/<module>.yml: Configuration for your module.
    • <module>.spec: Yaml description file for your module.
  • Module developers should note in the README.txt file whether the module has requirements or known incompatibilities with other modules.

  • If your module project contains several erlang modules, you should export a function pre_uninstall/0 in the main one listing the other ones. See mod_statsdx as an example.

Broken modules

This is the list of modules that are known to be broken with latest ejabberd master branch.

If you feel they are worth it, your help to fix them is welcome:

  • atom_pubsub: "Provides access to all PEP nodes via an AtomPub interface."
  • ircd: "This is an IRC server frontend to ejabberd."
  • mod_archive: "Message Archiving (XEP-0136)."
  • mod_irc: "IRC transport."
  • mod_mam_mnesia: This feature got included in ejabberd 15.06
  • mod_openid: "Transform the Jabber Server in an openid provider."
  • mod_profile: "User Profile (XEP-0154) in Mnesia table."