aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mod_admin_telnet, prosody, prosodyctl, ejabberd2prosody: Don't depend on ↵Florian Zeitz2012-06-095-5/+10
| | | | modules setting globals
* prosody: Define a getfenv() replacement for Lua 5.2Florian Zeitz2012-06-091-1/+5
|
* Eliminate direct setfenv usageFlorian Zeitz2012-06-0811-54/+52
|
* util.envload: New module to abstract Lua 5.1's setfenv and Lua 5.2's loadFlorian Zeitz2012-06-071-0/+34
|
* mod_s2s: Remove check for socket.tcp6()Kim Alvefur2012-05-291-4/+0
|
* mod_s2s: Only do AAAA lookup if IPv6 is available, and A if IPv4 is available.Kim Alvefur2012-05-291-1/+17
|
* mod_proxy65: Fix ACLKim Alvefur2012-05-291-1/+3
|
* util.sasl.plain: make it return "not-authorized" in case of non-existant ↵Marco Cirillo2012-05-281-1/+3
| | | | accounts instead of "account-disabled" to avoid enumeration.
* stanza_router: Also don't bounce <iq type='result'>Matthew Wild2012-05-271-1/+1
|
* stanza_router: Don't bounce type=error stanzasKim Alvefur2012-05-271-0/+2
|
* mod_proxy65: Add missing import of portmanagerKim Alvefur2012-05-271-0/+1
|
* mod_proxy65: Warn about pre-0.9 config style (per host proxy65_port)Kim Alvefur2012-05-271-1/+7
|
* mod_http: Fix traceback when no HTTP services succeed in bindingMatthew Wild2012-05-261-1/+1
|
* DEPENDS: Add luafilesystem (thanks Zash)Matthew Wild2012-05-261-0/+1
|
* mod_admin_telnet: More code found and updated, which depended on ↵Kim Alvefur2012-05-251-1/+1
| | | | pre-8c5b5ebaacb0 behaviour.
* mod_admin_telnet: Code found and updated, which depended on pre-8c5b5ebaacb0 ↵Kim Alvefur2012-05-251-1/+1
| | | | behaviour.
* mod_http: Fix normalize_path('/') to not return an empty string, fixes ↵Kim Alvefur2012-05-251-1/+1
| | | | module:http_url()
* net.http.parser: Break loop when no more usable data in bufferMatthew Wild2012-05-251-0/+2
|
* mod_watchregistrations: Convert JID list to a set, and prep before use to ↵Matthew Wild2012-05-241-2/+3
| | | | fix traceback on invalid JIDs (thanks sMi)
* util.set: Change '/' operator from filter to map+filter (nil to drop from ↵Matthew Wild2012-05-241-2/+3
| | | | set, false is a valid item). No code found which depends on current behaviour.
* net.server_event: Internal changes to get plain-SSL outgoing connections ↵Matthew Wild2012-05-241-3/+3
| | | | working (as for HTTPS)
* mod_s2s, s2sout.lib: Send stream header in onconnect()Matthew Wild2012-05-242-4/+5
|
* net.server_event: Assume wrapclient() is taking a new connection, and call ↵Matthew Wild2012-05-241-1/+1
| | | | onconnect when appropriate (to match server_select)
* net.server_select: Don't close client connections when closing a server (it ↵Matthew Wild2012-05-231-7/+1
| | | | wasn't working anyway)
* net.server_select: Call ondisconnect handler, even if we closed the socket ↵Matthew Wild2012-05-231-0/+4
| | | | ourselves (fixes HTTP session hoarding, thanks Maranda)
* portmanager: Match service against service_info (:iter() doesn't match values)Matthew Wild2012-05-221-2/+5
|
* util.multitable: Some fixes for iter()... always match against query, and ↵Matthew Wild2012-05-221-10/+11
| | | | pass value after path results
* certmanager: tonumber() (fix for 0b8134015635)Matthew Wild2012-05-191-1/+1
|
* certmanager: Don't use no_ticket option before LuaSec 0.4Matthew Wild2012-05-191-1/+4
|
* mod_compression: advertise/activate compression only for authenticated ↵Tobias Markmann2012-05-191-4/+4
| | | | sessions in accordance to XEP-0170. (Thanks fippo)
* portmanager: Fix to deactivate services when they are unregistered ↵Matthew Wild2012-05-191-13/+8
| | | | (metatable:iter() wins)
* modulemanager, moduleapi: Turn module.event_handlers into a multitable and ↵Matthew Wild2012-05-192-12/+8
| | | | track object->event->handler associations correctly (thanks Zash)
* util.multitable: No longer use table.remove to drop elements from the stack, ↵Matthew Wild2012-05-191-3/+2
| | | | when key is nil immediately (on empty tables) the previous stack entry's key gets removed instead
* util.multitable: Add :iter() method to iterate over results at a fixed depth ↵Matthew Wild2012-05-191-5/+38
| | | | (parameters are equivalent to :search())
* moduleapi, modulemanager: Re-structure module.event_handlers so that the ↵Matthew Wild2012-05-182-3/+8
| | | | same handler can harmlessly handle multiple events (thanks Zash)
* mod_http: Add module:http_url([app_name,][default_path]) for a module to get ↵Matthew Wild2012-05-181-4/+25
| | | | a guess at its external URL
* util.watchdog: Pass watchdog object to callback so that it doesn't always ↵Matthew Wild2012-05-181-1/+1
| | | | have to be a closure
* certmanager: no_ticket is not a verification option (thanks Zash)Matthew Wild2012-05-181-2/+2
|
* certmanager: Add no_ticket option for OpenSSL (we don't support resumption yet)Matthew Wild2012-05-181-1/+1
|
* net.server_select: Return error when SSL handshake fails immediately (thanks ↵Matthew Wild2012-05-181-3/+6
| | | | Zash)
* util.dataforms: Don't return invalid JIDs in jid-single.Kim Alvefur2012-05-171-1/+1
|
* util.dataforms: Fix validation of booleans.Kim Alvefur2012-05-171-1/+1
|
* INSTALL: Update with changes from wiki.Kim Alvefur2012-05-171-4/+7
|
* util.dataforms: Do field validation and normalization in field readers.Kim Alvefur2012-05-171-101/+53
|
* modulemanager: Components should inherit mod_s2s from global modules_enabled tooMatthew Wild2012-05-161-1/+1
|
* Remove util.broadcastMatthew Wild2012-05-161-68/+0
|
* prosodyctl: Add duplicate code for getting version of prosodyKim Alvefur2012-05-151-0/+16
|
* mod_bosh: Set Content-Type to text/html for GET response (thanks Medics)Matthew Wild2012-05-151-9/+13
|
* net.http.parser: Keep the Host header no host is present in the URIKim Alvefur2012-05-151-1/+1
|
* prosodyctl: Fix for generating certs with UTF-8Kim Alvefur2012-05-141-0/+3
|