From: Mickael Remond Date: Fri, 12 Apr 2019 08:40:46 +0000 (+0200) Subject: Fix syntax in Elixir config file X-Git-Tag: 19.05~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6dac0a602e9b37fd43184301bf201602dd6ab0df;p=ejabberd Fix syntax in Elixir config file --- diff --git a/config/ejabberd.exs b/config/ejabberd.exs index 7e1b99016..f5f21cd5b 100644 --- a/config/ejabberd.exs +++ b/config/ejabberd.exs @@ -12,9 +12,9 @@ defmodule Ejabberd.ConfigFile do language: "en", allow_contrib_modules: true, hosts: ["localhost"], - shaper: shaper, - acl: acl, - access: access] + shaper: shaper(), + acl: acl(), + access: access()] end defp shaper do @@ -131,9 +131,10 @@ defmodule Ejabberd.ConfigFile do module :mod_register do @opts [welcome_message: [ subject: "Welcome!", - body: "Hi.\nWelcome to this XMPP Server", + body: "Hi.\nWelcome to this XMPP Server" + ], ip_access: :trusted_network, - access: :register]] + access: :register] end module :mod_roster do