Release Options
When building a MongooseIM release from source code, the initial configuration files are generated with options taken from the vars-toml.config
file found in the [MongooseIM root]/rel/
directory.
You can change the values in this file to affect the resulting vm.args
and mongooseim.toml
files.
The file contains erlang tuples terminated with period ('.'). For users not familiar with Erlang syntax, here is a quick cheat sheet:
- Each config option (key and value) is a tuple. Tuples are (Erlangers, forgive us the simplification) other Erlang terms separated with commas and enclosed in curly brackets ({}).
- Tuples (at least the top-level ones) in
vars.config
are always 2-element. - The first element of each tuple is the name (Erlang atom).
- The second element is a quoted string. Any quotes (
"
) inside the string should be escaped with a backslash (\
).
There are two types of options: parameters and blocks:
- a parameter is inserted into the value of an already defined option. Parameters are mandatory - a valid value has to be provided.
- a block can be an empty string, one line or multiple lines, defining zero, one or more options. Blocks are optional - the default is an empty string.
vm.args options¶
These options are inserted into the rel/files/vm.args
template.
node_name¶
- Type: parameter
- Option: value of
-sname
in vm.args - Syntax: Erlang node name:
name@host
- Example:
{node_name, "mongooseim@localhost"}.
highload_vm_args¶
- Type: block
- Option: arguments in vm.args:
+K
,+A
,+P
,-env ERL_MAX_PORTS
- Syntax: command-line arguments
- Example:
{highload_vm_args, "+P 10000000 -env ERL_MAX_PORTS 250000"}.
epmd_module¶
Allows to set EPMD module to mongoose_epmd
in case CETS is used with RDBMS backend
to enable getting IP addresses of the remote nodes using RDBMS instead of the default
resolver.
- Type: parameter
- Option: value of
-epmd_module
in vm.args - Syntax: Erlang module name:
mongoose_epmd
- Example:
{epmd_module, "mongoose_epmd"}.
TOML Options¶
These options are inserted into the rel/files/mongooseim.toml
template.
hosts¶
- Type: parameter
- Option:
general.hosts
- Syntax: comma-separated list of strings
- Example:
{hosts, "\"localhost\", \"domain2\""}.
host_config¶
- Type: block
- Option:
host_config
- Syntax: TOML block, one or more
[[host_config]]
sections. - Example:
1 2 3 4 5 6 7 |
|
auth_ldap¶
- Type: block
- Option:
auth.ldap
- Syntax: TOML block, the
[auth.ldap]
subsection - Example:
1 2 3 4 5 |
|
s2s_addr¶
- Type: block
- Option:
auth.s2s.address
- Syntax: TOML key-value pair with the
address
option - Example:
1 2 3 4 5 6 |
|
s2s_default_policy¶
- Type: parameter
- Option:
s2s.default_policy
- Syntax: string
- Example:
{s2s_default_policy, "\"deny\""}.
outgoing_s2s_port¶
- Type: parameter
- Option:
s2s.outgoing.port
- Syntax: integer
- Example:
{outgoing_s2s_port, "5269"}.
c2s_port¶
- Type: parameter
- Option:
listen.c2s.port
- Syntax: integer
- Example:
{c2s_port, "5222"}.
s2s_port¶
- Type: parameter
- Option:
listen.s2s.port
- Syntax: integer
- Example:
{s2s_port, "5269"}.
cowboy_port¶
- Type: parameter
- Option:
listen.http.port
- Syntax: integer
- Example:
{http_port, "5280"}.
mod_last¶
- Type: block
- Option:
modules.mod_last
- Syntax: TOML section:
[modules.mod_last]
- Example:
{mod_last, "[modules.mod_last]"}.
mod_offline¶
- Type: block
- Option:
modules.mod_offline
- Syntax: TOML section:
[modules.mod_offline]
- Example:
1 2 3 4 |
|
mod_privacy¶
- Type: block
- Option:
modules.mod_privacy
- Syntax: TOML section:
[modules.mod_privacy]
- Example:
{mod_privacy, "[modules.mod_privacy]"}.
mod_private¶
- Type: block
- Option:
modules.mod_private
- Syntax: TOML section:
[modules.mod_private]
- Example:
{mod_private, "[modules.mod_private]"}.
mod_roster¶
- Type: block
- Option:
modules.mod_roster
- Syntax: TOML section:
[modules.mod_roster]
- Example:
{mod_roster, "[modules.mod_roster]"}.
mod_vcard¶
- Type: block
- Option:
modules.mod_vcard
- Syntax: TOML section:
[modules.mod_vcard]
- Example:
1 2 3 4 |
|
sm_backend¶
- Type: parameter
- Option:
general.sm_backend
- Syntax: string
- Example:
{sm_backend, "\"redis\""}.
s2s_backend¶
- Type: parameter
- Option:
general.s2s_backend
- Syntax: string
- Example:
{s2s_backend, "\"mnesia\""}.
tls_config¶
- Type: block
- Option:
listen.c2s.tls.*
- Syntax: TOML key-value pairs
- Example:
1 2 3 4 |
|
auth_method¶
- Type: parameter
- Option:
auth.methods
- Syntax: comma-separated list of strings
- Example:
{auth_method, "\"internal\""}.