aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mod_watchregistrations: Update to pass default options to ↵Matthew Wild2011-10-121-18/+15
| | | | module:get_option(), and reformat the code a little
* mod_motd: Update to use module:get_option_stringMatthew Wild2011-09-271-2/+2
|
* mod_motd: Send no message (instead of 'blank') if no message is set in the ↵Matthew Wild2011-09-271-1/+3
| | | | config (thanks medics)
* net.server_select: Never call onincoming with nil data when a listener ↵Matthew Wild2011-09-271-2/+5
| | | | doesn't have an onconnect handler
* util.array: Fix array.collect() for iterators that expect initial value of ↵Matthew Wild2011-09-251-1/+1
| | | | var to be preserved
* util.iterators: Add range(from, to)Matthew Wild2011-09-251-0/+7
|
* util.timer: Fix corner case of timer not repeating if it returns <= 0Matthew Wild2011-09-221-1/+4
|
* tools/ejabberdsql2prosody: Track current line for error reportingMatthew Wild2011-09-201-2/+6
|
* modulemanager: Fix undefined global access in handling of module.save error ↵Waqas Hussain2011-09-211-1/+1
| | | | handling.
* prosody: Invalid escape sequence in componentmanager deprecation warning ↵Waqas Hussain2011-09-211-1/+1
| | | | (can cause luajit to throw).
* modulemanager: Fixed undefined global access in broadcast of item-remove ↵Waqas Hussain2011-09-171-1/+1
| | | | events on module unload.
* ejabberd2prosody: Added a lot more type checks to ensure XML data has proper ↵Waqas Hussain2011-09-171-1/+8
| | | | data types. Ignore attributes of invalid types. Fixes the cause of issue#261.
* mod_bosh: s/xmlns:streams/xmlns:stream/ - fixes #265 (thanks Tim)Matthew Wild2011-09-151-2/+2
|
* net.httpclient_listener: util.httpstream now always expects to be called ↵Matthew Wild2011-09-031-1/+1
| | | | with nil data, so call even when the socket closed cleanly
* net.server_event: Don't call listener.onincoming with data=nil when ↵Waqas Hussain2011-09-031-1/+0
| | | | listener.onconnect is missing. onincoming's arguments shall always be non-nil.
* mod_proxy65: Apply stringprep to activation target JID.Waqas Hussain2011-09-031-3/+6
|
* mod_proxy65: Some more cleanup.Waqas Hussain2011-09-031-20/+11
|
* mod_proxy65: Cleanup.Waqas Hussain2011-09-021-52/+16
|
* net.dns: Shorten AAAA recordsKim Alvefur2011-09-021-1/+12
|
* Merge with trunkMatthew Wild2011-08-311-1/+1
|\
| * 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
|