tools/ejabberd2prosody: Fixed private storage export
[prosody.git] / prosody
diff --git a/prosody b/prosody
index f00fffad655ccc13ddd6d83556918731d4218171..2febe4d8b7f0dd920ff601d1b80f0d1e0e99b384 100755 (executable)
--- a/prosody
+++ b/prosody
@@ -114,8 +114,37 @@ end);
 
 ----------- End of out-of-place code --------------
 
+-- Function to reload the config file
+function prosody_reload_config()
+       log("info", "Reloading configuration file");
+       eventmanager.fire_event("reloading-config");
+       local ok, level, err = config.load((rawget(_G, "CFG_CONFIGDIR") or ".").."/prosody.cfg.lua");
+       if not ok then
+               if level == "parser" then
+                       log("error", "There was an error parsing the configuration file: %s", tostring(err));
+               elseif level == "file" then
+                       log("error", "Couldn't read the config file when trying to reload: %s", tostring(err));
+               end
+       end
+end
+
+-- Function to reopen logfiles
+function prosody_reopen_logfiles()
+       log("info", "Re-opening log files");
+       eventmanager.fire_event("reopen-log-files"); -- Handled by appropriate log sinks
+end
+
+-- Function to initiate prosody shutdown
+function prosody_shutdown(reason)
+       log("info", "Shutting down: %s", reason or "unknown reason");
+       eventmanager.fire_event("server-stopping", { reason = reason });
+       server.setquitting(true);
+end
+
+-- Signal to modules that we are ready to start
 eventmanager.fire_event("server-starting");
 
+-- Load SSL settings from config, and create a ctx table
 local global_ssl_ctx = ssl and config.get("*", "core", "ssl");
 if global_ssl_ctx then
        local default_ssl_ctx = { mode = "server", protocol = "sslv23", capath = "/etc/ssl/certs", verify = "none"; };
@@ -147,19 +176,13 @@ end
 
 net_activate_ports("c2s", "xmppclient", {5222}, (global_ssl_ctx and "tls") or "tcp");
 net_activate_ports("s2s", "xmppserver", {5269}, "tcp");
+net_activate_ports("component", "xmppcomponent", {}, "tcp");
 net_activate_ports("legacy_ssl", "xmppclient", {}, "ssl");
 
 if cl.get("console") then
        cl.start("console", { interface = config.get("*", "core", "console_interface") or "127.0.0.1" })
 end
 
--- Global function to initiate prosody shutdown
-function prosody_shutdown(reason)
-       log("info", "Shutting down: %s", reason or "unknown reason");
-       eventmanager.fire_event("server-stopping", { reason = reason });
-       server.setquitting(true);
-end
-
 -- Catch global accesses --
 local locked_globals_mt = { __index = function (t, k) error("Attempt to read a non-existent global '"..k.."'", 2); end, __newindex = function (t, k, v) error("Attempt to set a global: "..tostring(k).." = "..tostring(v), 2); end }
 
@@ -195,13 +218,16 @@ while select(2, xpcall(server.loop, catch_uncaught_error)) ~= "quitting" do
        socket.sleep(0.2);
 end
 
+log("info", "Shutdown status: Cleaning up");
 eventmanager.fire_event("server-cleanup");
 
 -- Ok, we're quitting I know, but we
 -- need to do some tidying before we go :)
 server.setquitting(false);
 
+log("info", "Shutdown status: Closing all active sessions");
 for hostname, host in pairs(hosts) do
+       log("debug", "Shutdown status: Closing client connections for %s", hostname)
        if host.sessions then
                for username, user in pairs(host.sessions) do
                        for resource, session in pairs(user.sessions) do
@@ -211,6 +237,7 @@ for hostname, host in pairs(hosts) do
                end
        end
        
+       log("debug", "Shutdown status: Closing outgoing s2s connections from %s", hostname);
        if host.s2sout then
                for remotehost, session in pairs(host.s2sout) do
                        if session.close then
@@ -222,6 +249,10 @@ for hostname, host in pairs(hosts) do
        end
 end
 
+log("info", "Shutdown status: Closing all server connections");
 server.closeall();
 
+server.setquitting(true);
+
 eventmanager.fire_event("server-stopped");
+log("info", "Shutdown status: Complete!");