mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
a65cd04e35
5 changed files with 18 additions and 2 deletions
|
@ -158,6 +158,11 @@ Use the specified config file instead of the default.
|
|||
.RS
|
||||
.RE
|
||||
.TP
|
||||
.B \f[C]\-\-root\f[]
|
||||
Don\[aq]t drop root privileges.
|
||||
.RS
|
||||
.RE
|
||||
.TP
|
||||
.B \f[C]\-\-help\f[]
|
||||
Display help text for the specified command.
|
||||
.RS
|
||||
|
|
|
@ -137,6 +137,9 @@ OPTIONS
|
|||
`--config filename`
|
||||
: Use the specified config file instead of the default.
|
||||
|
||||
`--root`
|
||||
: Don't drop root privileges.
|
||||
|
||||
`--help`
|
||||
: Display help text for the specified command.
|
||||
|
||||
|
|
|
@ -141,7 +141,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event)
|
|||
limit = qmax + 1;
|
||||
before = before; after = after;
|
||||
reverse = reverse;
|
||||
total = use_total;
|
||||
total = use_total or qmax == 0;
|
||||
});
|
||||
|
||||
if not data then
|
||||
|
|
|
@ -62,7 +62,13 @@ end
|
|||
|
||||
function archive:find(username, query)
|
||||
local items, err = datamanager.list_load(username, host, self.store);
|
||||
if not items then return items, err; end
|
||||
if not items then
|
||||
if err then
|
||||
return items, err;
|
||||
else
|
||||
return function () end, 0;
|
||||
end
|
||||
end
|
||||
local count = #items;
|
||||
local i = 0;
|
||||
if query then
|
||||
|
|
|
@ -932,6 +932,8 @@ function commands.cert(arg)
|
|||
return 1;
|
||||
end
|
||||
return cert_commands[subcmd](arg);
|
||||
elseif subcmd == "check" then
|
||||
return commands.check({"certs"});
|
||||
end
|
||||
end
|
||||
show_usage("cert config|request|generate|key|import", "Helpers for generating X.509 certificates and keys.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue