mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
19 lines
269 B
Elixir
19 lines
269 B
Elixir
defmodule Ejabberd.ConfigFile do
|
|
use Ejabberd.Config
|
|
|
|
def start do
|
|
[loglevel: 4,
|
|
language: "en",
|
|
hosts: ["localhost"]]
|
|
end
|
|
|
|
module :mod_time do
|
|
@attr_not_supported true
|
|
end
|
|
|
|
module :mod_configure do
|
|
@dependency [:mod_adhoc]
|
|
end
|
|
|
|
end
|