diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-04-23 13:53:18 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-04-23 13:53:18 +0100 |
commit | 51b769dc243f2c7a29c81e383400734304d3e7bf (patch) | |
tree | 5049caa623fcdfd2296f00009ea8ef73fc02c28b /spec/scansion/prosody.cfg.lua | |
parent | 4fdc7610738d092181ba0fe5f7fc1e5bee17e90e (diff) | |
parent | 80aaa484c38af613e61ad2f1af0ca186933ab3b8 (diff) | |
download | prosody-51b769dc243f2c7a29c81e383400734304d3e7bf.tar.gz prosody-51b769dc243f2c7a29c81e383400734304d3e7bf.zip |
Merge with upstream trunk
Diffstat (limited to 'spec/scansion/prosody.cfg.lua')
-rw-r--r-- | spec/scansion/prosody.cfg.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/scansion/prosody.cfg.lua b/spec/scansion/prosody.cfg.lua index 6a72584d..b7d6ccd5 100644 --- a/spec/scansion/prosody.cfg.lua +++ b/spec/scansion/prosody.cfg.lua @@ -1,5 +1,16 @@ --luacheck: ignore +-- Mock time functions to simplify tests +function _G.os.time() + return 1219439344; +end +package.preload["util.time"] = function () + return { + now = function () return 1219439344.1; end; + monotonic = function () return 0.1; end; + } +end + admins = { "admin@localhost" } use_libevent = true @@ -48,6 +59,7 @@ modules_enabled = { --"motd"; -- Send a message to users when they log in --"legacyauth"; -- Legacy authentication. Only used by some old clients and bots. --"proxy65"; -- Enables a file transfer proxy service which clients behind NAT can use + "lastactivity"; -- Useful for testing --"scansion_record"; -- Records things that happen in scansion test case format @@ -84,6 +96,8 @@ pidfile = "prosody.pid" VirtualHost "localhost" +hide_os_type = true -- absense tested for in version.scs + Component "conference.localhost" "muc" storage = "memory" |