diff options
author | Alexander Verbovetsky <alik@ejik.org> | 2022-05-26 23:15:31 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-05-28 09:11:38 +0700 |
commit | b21a979ee3b4f145988ef91fdc866df61fc8bf51 (patch) | |
tree | 15d369cf998a160c7f0b18ce79438956cb6a3377 /network/ejabberd/README | |
parent | 1dc5de0ec1e65b498586f64ad70a7a714ce15482 (diff) |
network/ejabberd: Added (xmpp server)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/ejabberd/README')
-rw-r--r-- | network/ejabberd/README | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/network/ejabberd/README b/network/ejabberd/README new file mode 100644 index 0000000000..f350ba3c09 --- /dev/null +++ b/network/ejabberd/README @@ -0,0 +1,22 @@ +ejabberd is an open-source, robust, scalable and extensible realtime +platform built using Erlang/OTP, that includes XMPP server, MQTT broker +and SIP service. + +A user and group "ejabberd" must exist prior to running this script. +To create them run as root: + groupadd -g 370 ejabberd + useradd -u 370 -g 370 -s /sbin/nologin -d /var/lib/ejabberd ejabberd + +You can enable the following optional features by passing variables to +the script (VAR=yes ejabberd.SlackBuild): + +ODBC=yes|no (default: no), enable ODBC support +MYSQL=yes|no (default: no), enable MySQL support +PGSQL=yes|no (default: no), enable PostgreSQL support +SQLITE=yes|no (default: no), enable SQLite support +PAM=yes|no (default: no), enable PAM authentication +REDIS=yes|no (default: no), enable Redis support +ELIXIR=yes|no (default: no), enable Elixir support +SIP=yes|no (default: no), enable SIP support +LUA=yes|no (default: no), enable Lua support (to import from Prosody) +TOOLS=yes|no (default: no), build development tools |