aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * net.httpclient_listener: Define t_insertMatthew Wild2011-08-311-1/+1
| |
* | MUC: A little cleanup.Waqas Hussain2011-08-311-33/+27
| |
* | net.http: Remove extra space after method in request status line for POST.Waqas Hussain2011-08-311-1/+1
| |
* | util.sasl.scram: Return proper error and don't touch datastores on empty ↵Waqas Hussain2011-08-311-1/+1
|/ | | | username.
* util.pubsub: Remove access checking from remove_all_subscriptions (temporarily?)Matthew Wild2011-08-301-14/+0
|
* util.pubsub: Add service:remove_all_subscriptions()Matthew Wild2011-08-301-0/+26
|
* util.pubsub: Support for events (currently subscription-added and ↵Matthew Wild2011-08-301-0/+5
| | | | subscription-removed)
* util.pubsub: Use built-in actor for auto-creating nodes on publish and ↵Matthew Wild2011-08-291-2/+2
| | | | subscribe (so they never fail due to permissions)
* modulemanager: Add module:handle_items() to allow a module to more easily ↵Matthew Wild2011-08-291-0/+10
| | | | handle a list of items on a host
* util.throttle: Generic module by waqas to limit something over some timeMatthew Wild2011-08-291-0/+44
|
* mod_saslauth: Fire authentication-success and authentication-failure events ↵Matthew Wild2011-08-291-0/+2
| | | | (thanks scitor)
* ejabberd2prosody: Add support for privacy lists.Waqas Hussain2011-08-261-0/+67
|
* certmanager: Support setting ciphers in SSL config. LuaSec apparently ↵Waqas Hussain2011-08-251-1/+9
| | | | ignores the documented ciphers option.
* configmanager: resolve_relative_path: Improved detection of absolute paths ↵Waqas Hussain2011-08-251-1/+1
| | | | on Windows.
* MUC: Allow affiliation change when argument actor==true in ↵Waqas Hussain2011-08-251-14/+16
| | | | room:set_affiliation().
* net.http: Convert port to a number (for custom port in URL)Matthew Wild2011-08-221-1/+1
|
* net.http: Support for k->v maps in http.formencodeMatthew Wild2011-08-201-2/+8
|
* net.httpclient_listener: Fix to look for the request body in the right ↵Matthew Wild2011-08-201-2/+2
| | | | variable...
* net.server_select: Remove socket from sendlist before calling listener ↵Matthew Wild2011-08-201-1/+1
| | | | callbacks (thanks darkrain)
* net.http, httpclient_listener: Move request sending from net.http to ↵Matthew Wild2011-08-202-38/+43
| | | | onconnect() handler, and add support for HTTPS requests to net.http
* net.http: Whitespace fixesMatthew Wild2011-08-201-4/+8
|
* net.http: Small fix to prevent traceback when connection fails before ↵Matthew Wild2011-08-201-0/+1
| | | | sending the request
* net.server_select: Merge straight-SSL and starttls code paths, also fixes ↵Matthew Wild2011-08-201-69/+57
| | | | onconnect being called before handshake completion for straight-SSL
* net.server_select: Update error logging logic during SSL handshake (now ↵Matthew Wild2011-08-201-3/+3
| | | | shows correctly when a handshake exceeded max. allowed iterations)
* net.server_select: Small fix to SSL handshake logic, read/wrote were being ↵Matthew Wild2011-08-201-4/+3
| | | | checked despite it not being possible for them to be other than nil
* net.server_select: Do not set 'ssl' flag simply when assigning an sslctx to ↵Matthew Wild2011-08-201-1/+0
| | | | a handler, it doesn't mean anything
* mod_uptime: Use module:hook_global()Matthew Wild2011-08-141-1/+1
|
* modulemanager: Add module:hook_global(name, handler, priority) to hook ↵Matthew Wild2011-08-141-0/+11
| | | | global (server-wide) events
* mod_pubsub: Add 'publisher' affiliation (can't create/configure nodes, can ↵Matthew Wild2011-08-141-0/+22
| | | | do everything else)
* mod_pubsub: Send node items to new subscribersMatthew Wild2011-08-141-1/+11
|
* mod_pubsub: Add newline at end of fileMatthew Wild2011-08-141-1/+1
|
* mod_pubsub: Handle options tag in subscription request (currently doesn't ↵Matthew Wild2011-08-141-2/+9
| | | | work as options_form is not defined)
* tests/test.lua, tests/test_net_http.lua: Tests for net.http's url and form ↵Matthew Wild2011-08-102-0/+39
| | | | encoding/decoding functions
* net.http: Add formdecode to decode an urlencoded formMatthew Wild2011-08-101-0/+13
|
* core.modulemanager, mod_disco: Add support for XEP-0128: Service Discovery ↵Kim Alvefur2011-08-082-0/+11
| | | | Extensions
* prosodyctl: Update message on reload successMatthew Wild2011-08-041-1/+1
|
* Add "reload" command to prosodyctlVladimir Protasov2011-08-042-1/+38
|
* prosodyctl: Remove typo'd '+' after LuaRocks 1.x version (thanks spoobie)Matthew Wild2011-07-271-1/+1
|
* prosodyctl: Add info about the presence of LuaRocks to 'about' commandMatthew Wild2011-07-271-0/+5
|
* mod_bosh: Update to use typed variants of module:get_option(), makes it more ↵Matthew Wild2011-07-201-6/+6
| | | | tolerant to config variations and simplifies the code.
* prosodyctl: Fix 'about' command to not show up where it shouldn't...Matthew Wild2011-07-191-0/+5
|
* util.x509: Update references to published RFCsPaul Aurich2011-05-221-6/+6
| | | | For TLS-CERTS, see http://tools.ietf.org/rfcdiff?url1=draft-saintandre-tls-server-id-check-10.txt&url2=rfc6125.txt
* s2smanager: Update to newer luasecPaul Aurich2010-12-061-2/+4
|
* mod_admin_telnet: Update to newer luasec.Paul Aurich2010-12-061-8/+30
| | | | Matthew is responsible for figuring out a nice way to print out the whole chain O:)
* mod_bosh: Fix logging when no sid present, fix a missing semi-colon, avoid ↵Matthew Wild2011-06-281-2/+2
| | | | an extra useless table lookup (thanks Thomas)
* MUC: Change error type of badly-formatted stanza from 'auth' to 'modify' ↵Matthew Wild2011-06-271-1/+1
| | | | (thanks Andrew)
* sessionmanager: Remove dependency on util.importMatthew Wild2011-06-271-1/+1
|
* prosodyctl: Add 'about' command to list Prosody version, directories, and ↵Matthew Wild2011-06-271-1/+44
| | | | various other stuff
* mod_component: Clearer log message when bouncing a stanza from a component ↵Matthew Wild2011-06-181-1/+1
| | | | that is not connected (thanks MK)
* connlistener, server_select, prosody: Add support for binding to multiple ↵Florian Zeitz2011-06-153-39/+51
| | | | addresses