Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MUC: Report number of live rooms to statsmanager | Kim Alvefur | 2021-03-28 | 1 | -0/+5 |
| | | | | Should help inform on whether the cache size should be increased. | ||||
* | MUC: Merge mod_muc_occupant_id into a sub-module (thanks pep.!) | Matthew Wild | 2020-11-24 | 1 | -0/+2 |
| | |||||
* | MUC: Don't default room name to JID localpart (API breaking change) | Kim Alvefur | 2020-08-29 | 1 | -3/+13 |
| | | | | | | | | | | | | | Behavior with turning empty name into localpart was originally introduced in 711eb5bf94b4 This has caused some problems for clients, making it difficult to differentiate between a room actually named like the localpart from a room without a name. Breaking: The function signature of the :get_name() method changes from always returning a string to optional string. | ||||
* | MUC: Add ad-hoc command setting affiliation in a room (fixes #1174) | Kim Alvefur | 2020-03-21 | 1 | -0/+43 |
| | | | | | | | | | | This gives service admins a way to set an arbitrary affiliation in any room. Enables various administrative use cases such as room ownership reassignment or recovery. Reduces the need for the admins-as-owners feature, as this can be used by admins to make themselves owner in any room when needed, instead of being owners all the time. | ||||
* | MUC: Add initial hats support (broadcast only) | Matthew Wild | 2020-03-18 | 1 | -0/+1 |
| | | | | | | | | Based on the currently-deferred XEP-0317. The protocol differs a little (because XEP-0317 is incomplete), therefore currently we use a custom namespace. The plan is to update and finish XEP-0317. | ||||
* | Merge 0.11->trunk | Matthew Wild | 2020-02-13 | 1 | -1/+2 |
|\ | |||||
| * | mod_muc: Allow control over the server-admins-are-room-owners feature (see ↵ | Matthew Wild | 2020-02-13 | 1 | -1/+2 |
| | | | | | | | | #1174) | ||||
* | | MUC: Indicate the component as origin of various errors where there's no room | Kim Alvefur | 2019-11-26 | 1 | -6/+6 |
| | | | | | | | | A room that doesn't exist can't return an error, can it? | ||||
* | | MUC: Indicate that the room is the origin of various errors where 'from' is ↵ | Kim Alvefur | 2019-11-25 | 1 | -1/+1 |
| | | | | | | | | an occupant JID | ||||
* | | MUC: Strictly validate room JID on creation | Kim Alvefur | 2019-11-01 | 1 | -0/+8 |
| | | | | | | | | This should prevent any MUCs with invalid JID (according to current normalization routine) | ||||
* | | MUC: Add controls for whose presence is broadcast (closes #1335) | Lance Stout | 2019-10-20 | 1 | -0/+7 |
| | | | | | | | | Committed by Zash | ||||
* | | MUC: Move check for explicit room join earlier in room creation flow | Kim Alvefur | 2018-11-27 | 1 | -1/+1 |
|/ | |||||
* | MUC: Use defaults from config in create_room() if no config provided | Matthew Wild | 2018-11-15 | 1 | -12/+18 |
| | |||||
* | MUC: Add support for registering with a MUC, including reserving a nickname ↵ | Matthew Wild | 2018-09-03 | 1 | -0/+6 |
| | | | | as per XEP-0045 | ||||
* | MUC: Add support for storing additional data with MUC affiliations | Matthew Wild | 2018-09-03 | 1 | -2/+2 |
| | | | | | | XEP-0045 registration provides examples of registering a nickname and various other details. This also allows modules to store arbitrary private data about an affiliated entity. | ||||
* | MUC: Normalize indentation | Kim Alvefur | 2018-08-22 | 1 | -3/+3 |
| | |||||
* | MUC: Fix traceback when failing to restore a room | Matthew Wild | 2018-08-17 | 1 | -0/+3 |
| | | | | | When a room exists in the DB but cannot be loaded (e.g. due to max_rooms or a pre-restore handler) restore_room()/get_room_from_jid() returns false. | ||||
* | MUC: Pass missing argument to log message | Kim Alvefur | 2018-08-17 | 1 | -1/+1 |
| | |||||
* | MUC: Allow destruction of tombstones (eg via telnet or adhoc command) | Kim Alvefur | 2018-08-03 | 1 | -0/+3 |
| | | | | | Otherwise this just updates the timestamp, which is probably the opposite of what the user wanted | ||||
* | MUC: Split long lines [luacheck strict] | Kim Alvefur | 2018-08-03 | 1 | -4/+8 |
| | |||||
* | mod_muc: Fire event when room is (and about to be) restored | Matthew Wild | 2018-08-03 | 1 | -0/+4 |
| | |||||
* | mod_muc: Add comment | Matthew Wild | 2018-08-03 | 1 | -0/+1 |
| | |||||
* | MUC: Add some comments clarifying methods | Matthew Wild | 2018-07-17 | 1 | -0/+2 |
| | |||||
* | MUC: Add new iteration methods, all_rooms/live_rooms to eventually replace ↵ | Matthew Wild | 2018-07-17 | 1 | -10/+20 |
| | | | | each_room | ||||
* | MUC: Rename variable for consistency with other code that uses the term 'live' | Matthew Wild | 2018-07-17 | 1 | -3/+3 |
| | |||||
* | MUC: Return 'gone' error for destroyed rooms in other cases than attempted join | Kim Alvefur | 2018-07-16 | 1 | -7/+7 |
| | | | | | | | Lock expiry -> Reset Admin wants to join -> Reset Still locked -> cancel, gone Don't return error in response to an error | ||||
* | MUC: Add sections in room config form | Matthew Wild | 2018-07-13 | 1 | -0/+2 |
| | |||||
* | MUC: Include redirect in 'gone' error for destroyed rooms | Kim Alvefur | 2018-07-11 | 1 | -0/+4 |
| | |||||
* | MUC: Send an 'gone' error instead of unavailable + <destroyed> | Kim Alvefur | 2018-07-11 | 1 | -5/+1 |
| | | | | | List discussion here: https://mail.jabber.org/pipermail/standards/2018-July/035228.html | ||||
* | MUC: Allow an admin to recreate destroyed rooms | Kim Alvefur | 2018-07-11 | 1 | -2/+2 |
| | |||||
* | MUC: Add support for storing a tombstone for destroyed rooms (#1182) | Kim Alvefur | 2018-07-11 | 1 | -0/+42 |
| | |||||
* | MUC: Remove room state on successful restoration from disk | Kim Alvefur | 2018-07-11 | 1 | -1/+6 |
| | |||||
* | MUC: Purge saved room state when deleting a room | Kim Alvefur | 2018-07-11 | 1 | -0/+1 |
| | |||||
* | MUC: Log a debug message when a non-persistent room becomes empty and is ↵ | Kim Alvefur | 2018-07-11 | 1 | -0/+1 |
| | | | | destroyed | ||||
* | MUC: Flag rooms being destroyed (fixes #887) | Kim Alvefur | 2018-07-10 | 1 | -0/+1 |
| | |||||
* | mod_muc: Add support for muc_room_default_allow_member_invites | Matthew Wild | 2018-07-06 | 1 | -0/+1 |
| | |||||
* | MUC: Add config option to allow members to invite other members to the room ↵ | Matthew Wild | 2018-07-06 | 1 | -0/+2 |
| | | | | (previously only owners/admins could do this) | ||||
* | MUC: Remove affiliation notify support, nothing uses it | Matthew Wild | 2018-06-27 | 1 | -2/+0 |
| | |||||
* | MUC: Measure cache hits and misses | Kim Alvefur | 2018-06-23 | 1 | -0/+4 |
| | |||||
* | MUC: Rename eviction hit rate measure | Kim Alvefur | 2018-06-23 | 1 | -2/+2 |
| | |||||
* | MUC: Expose method for creating a bare room object | Kim Alvefur | 2018-06-06 | 1 | -0/+1 |
| | |||||
* | MUC: Track rooms created via internal public API | Kim Alvefur | 2018-06-06 | 1 | -1/+1 |
| | | | | Fixes muc:create() in the telnet console | ||||
* | MUC: Allow passing config to public create_room API | Kim Alvefur | 2018-04-14 | 1 | -2/+2 |
| | |||||
* | MUC: Fix Ooo (thanks pep.) | Kim Alvefur | 2018-06-03 | 1 | -6/+6 |
| | | | | What time is it? | ||||
* | MUC: Make rooms hidden (non-public) by default for improved privacy | Kim Alvefur | 2018-06-03 | 1 | -1/+1 |
| | | | | Thanks to jonasw for highlighting this with the MUC crawler. | ||||
* | MUC: Use xml:lang from stanza that creates a room as default for language | Kim Alvefur | 2018-06-03 | 1 | -1/+1 |
| | |||||
* | MUC: Add support for setting MUC room defaults from the config file | Kim Alvefur | 2018-06-03 | 1 | -0/+12 |
| | | | | | | | | | | | | | Defaults are roughtly like this: muc_rooom_default_public = true muc_rooom_default_persistent = false muc_rooom_default_members_only = false muc_rooom_default_moderated = false muc_rooom_default_public_jids = false muc_rooom_default_change_subject = false muc_room_default_history_length = 20 muc_room_default_language = nil | ||||
* | MUC: Move voice request into its own lib | Kim Alvefur | 2018-06-02 | 1 | -0/+3 |
| | |||||
* | MUC: Add support for setting a room language (closes #1149) | Kim Alvefur | 2018-05-30 | 1 | -0/+4 |
| | |||||
* | MUC: Add support for an optional hard limit on number of rooms (fixes #766) | Kim Alvefur | 2018-05-22 | 1 | -1/+8 |
| |