aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-12-13 12:52:39 +0000
committerMatthew Wild <mwild1@gmail.com>2013-12-13 12:52:39 +0000
commitd4a3ab7b750918ceb5a2c01def4bebab0a9a8230 (patch)
tree9392b528d10dfc77dde0fb76e4335b1b80e17491
parent02a0ea1c2a31f4cbb28b862eba1c23b248e35cab (diff)
parent8dfeb6207a594197160c19bb5e3e98aae07c2885 (diff)
downloadprosody-d4a3ab7b750918ceb5a2c01def4bebab0a9a8230.tar.gz
prosody-d4a3ab7b750918ceb5a2c01def4bebab0a9a8230.zip
Merge 0.9->0.10
-rw-r--r--plugins/muc/mod_muc.lua2
-rwxr-xr-xprosody3
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua
index cb967c90..38c97d61 100644
--- a/plugins/muc/mod_muc.lua
+++ b/plugins/muc/mod_muc.lua
@@ -164,7 +164,7 @@ function stanza_handler(event)
return true;
end
if not(restrict_room_creation) or
- (restrict_room_creation == "admin" and is_admin(stanza.attr.from)) or
+ is_admin(stanza.attr.from)) or
(restrict_room_creation == "local" and select(2, jid_split(stanza.attr.from)) == module.host:gsub("^[^%.]+%.", "")) then
room = create_room(bare);
end
diff --git a/prosody b/prosody
index 1a0f6ff2..b411370f 100755
--- a/prosody
+++ b/prosody
@@ -86,6 +86,7 @@ function read_config()
break;
end
end
+ prosody.config_file = filename
local ok, level, err = config.load(filename);
if not ok then
print("\n");
@@ -240,7 +241,7 @@ function init_global_state()
function prosody.reload_config()
log("info", "Reloading configuration file");
prosody.events.fire_event("reloading-config");
- local ok, level, err = config.load((rawget(_G, "CFG_CONFIGDIR") or ".").."/prosody.cfg.lua");
+ local ok, level, err = config.load(prosody.config_file);
if not ok then
if level == "parser" then
log("error", "There was an error parsing the configuration file: %s", tostring(err));