aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
Commit message (Collapse)AuthorAgeFilesLines
* MUC: Introduce an event to allow plugins to influence which messages are ↵Kim Alvefur2018-05-071-2/+5
| | | | added to history
* MUC: Move condition for what gets added to history so that other modules ↵Kim Alvefur2018-05-071-16/+16
| | | | | | | benefit (thanks jcbrand) This helps mod_muc_mam avoid logging eg chat-state-only messages without needing to implement similar logic in many places
* mod_privacy: Silence long line warning [luacheck]Kim Alvefur2018-05-021-1/+1
|
* mod_admin_adhoc: Silence various harmless warnings [luacheck]Kim Alvefur2018-05-011-0/+1
|
* mod_admin_adhoc: Rename loop variable to avoid name clash [luacheck]Kim Alvefur2018-05-011-2/+2
|
* mod_admin_adhoc: Rename variable to avoid name clash [luacheck]Kim Alvefur2018-05-011-7/+7
|
* mod_admin_adhoc: Remove unused initial values [luacheck]Kim Alvefur2018-05-011-2/+2
|
* mod_admin_adhoc: Split a long line (improves readability) [luacheck]Kim Alvefur2018-05-011-1/+6
|
* mod_legacyauth: Split a long line [luacheck]Kim Alvefur2018-05-011-1/+2
|
* mod_bosh: Fix inconsistent whitespace [luacheck]Kim Alvefur2018-05-011-2/+2
|
* mod_bosh: Fix for 7be8f649d97d to skip error handling and allow other ↵Matthew Wild2018-04-291-3/+6
| | | | modules to handle the request
* mod_c2s: Add a counter for IPv6.Emmanuel Gil Peyrot2017-09-091-1/+7
|
* mod_s2s: Add a counter for IPv6.Emmanuel Gil Peyrot2017-09-091-1/+7
|
* Merge 0.10->trunkMatthew Wild2018-04-241-1/+1
|\
| * mod_http_files: Correct cache insertion (fixes #1130)Kim Alvefur2018-04-171-1/+1
| |
* | MUC: Move something into empty if branchKim Alvefur2018-03-091-3/+2
| |
* | mod_pep_plus: Skip getting PEP service instance for sessions that have not ↵Kim Alvefur2018-04-111-1/+1
| | | | | | | | touched PEP
* | mod_bosh: Increase number of stored responses to ensure we always keep ↵Matthew Wild2018-04-111-1/+1
| | | | | | | | responses within the rid window available
* | mod_bosh: Improve connection robustness with better handling of unexpected ridsMatthew Wild2018-04-101-12/+19
| |
* | mod_bosh: Some additonal comments to improve code readabilityMatthew Wild2018-04-101-1/+3
| |
* | mod_bosh: WhitespaceMatthew Wild2018-04-101-1/+0
| |
* | mod_bosh: Improve logging - parse errors will now log through the session ↵Matthew Wild2018-04-101-1/+2
| | | | | | | | logger if possible
* | mod_bosh: Improve logging on session close (reason may be a table with params)Matthew Wild2018-04-101-1/+1
| |
* | Merge 0.10->trunkKim Alvefur2018-04-101-6/+3
|\|
| * mod_blocklist: Allow mod_presence to handle subscription stanzas before ↵Kim Alvefur2018-04-061-6/+3
| | | | | | | | bouncing outgoing presence (fixes #575)
| * MUC: Don't reply to errors with more errors (fixes #1122)Kim Alvefur2018-03-281-1/+3
| |
| * MUC: Say something about storage failure before aborting (see #1091)Kim Alvefur2018-03-121-0/+1
| |
| * MUC: Prevent creation of room that could not be loaded from storage (see #1091)Kim Alvefur2018-03-091-2/+8
| |
| * MUC: Abort module loading if unable to get list of persistent rooms from ↵Kim Alvefur2018-03-071-1/+5
| | | | | | | | storage (fixes #1091)
* | mod_register_limits: Promote log message about inability to apply ↵Kim Alvefur2018-04-101-1/+1
| | | | | | | | black/whitelists to a warning
* | mod_register_limits: Change debug message wording, there's no user yetKim Alvefur2018-04-101-1/+1
| |
* | mod_register_limits: Use existing local variableKim Alvefur2018-04-101-2/+2
| |
* | mod_register_ibr: Return a textual error to the user for problems with ↵Kim Alvefur2018-04-091-1/+3
| | | | | | | | parsing form data
* | mod_register_ibr: Reshape the code using early returns to reduce needless ↵Kim Alvefur2018-04-071-58/+71
| | | | | | | | indentation
* | mod_ping: Ignore unused arguments [luacheck]Kim Alvefur2018-04-061-1/+1
| |
* | Fix spelling throughout the codebase [codespell]Kim Alvefur2018-02-048-15/+15
| |
* | mod_muc_mam: Save the MUC <x> on recorded join stanzasKim Alvefur2018-03-241-1/+1
| |
* | mod_muc_mam: Let muc/history.lib decide which messages to storeKim Alvefur2018-03-241-4/+2
| |
* | mod_muc_mam: Remove 0.10 compat codeKim Alvefur2017-12-121-97/+4
| |
* | mod_muc_mam: Import mod_mam_muc from prosody-modules ba6466fa6823Kim Alvefur2018-04-021-0/+462
| |
* | mod_pep_plus: Validate items here too (thanks Link Mauve)Kim Alvefur2018-03-251-0/+5
| |
* | mod_pubsub: Reject publishing of non-itemsKim Alvefur2018-03-211-0/+5
| |
* | mod_announce: Remove unreachable return statement [luacheck]Kim Alvefur2018-03-231-2/+0
| |
* | mod_posix: Delay setting signal handlers until in the main threadMatthew Wild2018-03-221-18/+20
| | | | | | | | Signal handlers work by setting a debug hook. Hooks are per-thread, so we need this to be called in the main thread. However module loading is not in the main thread anymore.
* | MUC: Catch and log error in case of storage failure in iterator over roomsKim Alvefur2018-03-151-1/+9
| |
* | MUC: Override methods on broken rooms to return internal-server-error insteadKim Alvefur2018-03-221-0/+8
| |
* | MUC: Return error if unable to keep track of room due to storage failureKim Alvefur2018-03-071-2/+6
| |
* | MUC: Log failure to load room stateKim Alvefur2018-03-161-1/+4
| |
* | MUC: Only fetch stored room state if room config is loaded without errorKim Alvefur2018-03-161-1/+1
| |
* | MUC: Prevent room eviction on storage failureKim Alvefur2018-03-071-9/+15
| |