mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-02 15:27:09 +01:00
803270fc6b
Contribution for Google Summer of code 2016 by Gabriel Gatu
21 lines
296 B
Elixir
21 lines
296 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
|
|
|
|
module :mod_irc do
|
|
end
|
|
end
|