aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
Commit message (Collapse)AuthorAgeFilesLines
* mod_proxy65: Only handle service discovery requests when no node is present ↵Waqas Hussain2013-02-261-6/+10
| | | | in the request.
* MUC: Always return <service-unavailable/> when a node is present in service ↵Waqas Hussain2013-02-262-9/+6
| | | | discovery requests.
* MUC: Fix affiliation check for admins, and bring it in line with the spec ↵Waqas Hussain2013-02-261-1/+1
| | | | (thanks Maranda).
* mod_http: Expand $host in http_pathsKim Alvefur2013-02-181-2/+3
|
* mod_admin_adhoc: Fix 'Shut down service' commandFlorian Zeitz2013-02-071-1/+1
|
* mod_admin_adhoc: Implement global module unloadingFlorian Zeitz2013-02-071-0/+64
|
* mod_admin_adhoc: Implement global module reloadingFlorian Zeitz2013-02-071-0/+63
|
* mod_admin_adhoc: Fix info message for module reload/unloadFlorian Zeitz2013-02-061-2/+4
|
* mod_admin_adhoc: Implement global module loadingFlorian Zeitz2013-02-061-0/+55
|
* mod_admin_adhoc: Remove a TODO, our pretty_print turns out not to be helpful ↵Florian Zeitz2013-02-051-2/+1
| | | | after all
* mod_pubsub, util.pubsub: Add delete actionKim Alvefur2013-01-311-0/+18
|
* mod_pubsub: More strict checks for node and idsKim Alvefur2013-01-311-4/+19
|
* mod_pubsub: Broadcast items correctly on new subscriptionsKim Alvefur2013-01-281-1/+1
|
* mod_component: Look for the correct xmlns (thanks NebuK)Kim Alvefur2013-01-271-1/+1
|
* mod_pubsub: require usermanager.Waqas Hussain2013-01-261-0/+1
|
* mod_pubsub: Fix nil access error.Waqas Hussain2013-01-261-1/+1
|
* mod_pubsub, util.pubsub: Don't send purge notifications in an <items/> elementFlorian Zeitz2013-01-251-10/+11
|
* mod_pubsub: Ignore subscription options for now, fixes traceback due to ↵Kim Alvefur2013-01-241-0/+3
| | | | missing form
* mod_s2s: Don't try to close sessions that were destroyed before timeoutKim Alvefur2013-01-241-0/+2
|
* s2smanager: Generate session names used for logging the same way everywhereKim Alvefur2013-01-241-1/+1
|
* mod_pubsub, util.pubsub: Implement the purge actionKim Alvefur2013-01-241-0/+25
|
* mod_pubsub: Advertise autocreate_on_publish correctly.Kim Alvefur2013-01-231-2/+2
|
* mod_auth_internal_plain, mod_auth_internal_hashed: No need to nodeprep here.Waqas Hussain2013-01-222-14/+2
|
* mod_component: Make listener private (thanks Ge0rG)Kim Alvefur2013-01-171-0/+1
|
* mod_presence: Put a timestamp on presence we store for probesKim Alvefur2013-01-111-0/+2
|
* MUC: Don't reply to errors (thanks iron)Kim Alvefur2013-01-091-1/+1
|
* prosody, mod_c2s, mod_s2s: Move closing of c2s and s2s sessions to ↵Kim Alvefur2012-12-282-0/+18
| | | | respective plugins
* mod_admin_telnet: Stop processing lines when session is closedKim Alvefur2012-12-281-0/+2
|
* mod_s2s: Remove connection from sessions table as soon as we learn it is ↵Matthew Wild2012-12-281-1/+1
| | | | disconnected. Fixes a connection/session leak.
* mod_admin_telnet: Add info about port commands to helpKim Alvefur2012-12-261-0/+4
|
* mod_http_files: Fix sending Content-Type for index filesKim Alvefur2012-12-231-1/+1
|
* mod_http_files: Allow passing a string to serve()Kim Alvefur2012-12-231-1/+4
|
* mod_http_files: Expose function other modules can use to combine their ↵Kim Alvefur2012-12-211-0/+8
| | | | routes with file paths to serve
* mod_http_files: Work with non-wildcard-routes. Key cache on the original ↵Kim Alvefur2012-12-211-5/+5
| | | | HTTP path.
* mod_http_files: Replace file listing with an event, allowing a different ↵Kim Alvefur2012-12-211-19/+7
| | | | plugin to generate it
* mod_http_files: Export function can be used by other modules to serve files. ↵Kim Alvefur2012-12-211-73/+88
| | | | Don't serve files by default unless http_files_dir is set
* mod_http_files: Rename config options and variable namesKim Alvefur2012-12-211-5/+5
|
* mod_http_files: Log the error if we can't open or read a fileKim Alvefur2012-12-211-1/+2
|
* mod_http_files: Escape paths in redirectsKim Alvefur2012-12-211-1/+4
|
* mod_http_files: Only match on modification date when if-none-match is not ↵Kim Alvefur2012-12-211-1/+1
| | | | present
* mod_http_files: Only serve cached data if etag is unchanged.Kim Alvefur2012-12-211-3/+3
|
* mod_http_files: Make sure file extensions are not nil or empty stringKim Alvefur2012-12-211-2/+2
|
* mod_http_files: Avoid a bunch of table lookupsKim Alvefur2012-12-211-8/+12
|
* mod_http_files: No use in closing a file handle if we couldn't open itKim Alvefur2012-12-211-3/+5
|
* mod_http_files: Compare If-Modified-Since to last modification dateKim Alvefur2012-12-161-4/+7
|
* mod_http_files: Fix caching the stringified directory indexKim Alvefur2012-12-161-1/+1
|
* MUC: Support invite messages when stanza type is explicitly set to "normal" ↵Waqas Hussain2012-12-151-2/+2
| | | | or to an unknown value.
* mod_http_files: Generate simple directory index.Kim Alvefur2012-12-111-2/+23
|
* mod_http_files: Have mimetypes in a shared table. Get mimetypes from ↵Kim Alvefur2012-12-111-10/+28
| | | | /etc/mime.types if exists.
* mod_http_files: Cache data read from disk in a weak tableKim Alvefur2012-12-111-13/+18
|