aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/mod_muc.lua
Commit message (Collapse)AuthorAgeFilesLines
* MUC: Use type-specific config API for the 'name' optionKim Alvefur2016-03-111-2/+1
|
* Merge 0.9->0.10Kim Alvefur2015-06-251-1/+1
|\
| * MUC: Prevent admins from being given affiliatons other than ownerKim Alvefur2015-06-251-1/+1
| |
| * Backed out changeset bea3862b6bde in favor of a different approachKim Alvefur2015-06-251-0/+5
| |
| * MUC: Remove half of monkeypatch that was supposed to make admins always be ↵Kim Alvefur2015-06-161-5/+0
| | | | | | | | room owners, fixes #458
* | Merge 0.9->0.10Matthew Wild2014-01-211-0/+1
|\|
| * MUC: Fire muc-room-destroyed event when the last participant leaves a ↵Kim Alvefur2014-01-181-0/+1
| | | | | | | | non-persistent room
| * mod_muc: Remove extra parenthesis (thanks janhouse)Kim Alvefur2013-12-141-1/+1
| |
* | MUC: Expose room metatable on moduleKim Alvefur2014-01-181-2/+3
| |
* | mod_muc: Remove extra parenthesis (thanks janhouse)Kim Alvefur2013-12-141-1/+1
| |
* | Merge 0.9->0.10Matthew Wild2013-12-131-1/+1
|\|
| * mod_muc: Allow admins to always bypass restrict_room_creation (thanks Chris B)Matthew Wild2013-12-131-1/+1
| |
* | mod_muc: Support for locking newly-created rooms until they are configured ↵Matthew Wild2013-08-301-0/+13
| | | | | | | | (enabled with muc_room_locking = true)
* | mod_muc: Import util.arrayMatthew Wild2013-08-301-0/+1
| |
* | Remove all trailing whitespaceFlorian Zeitz2013-08-091-2/+2
| |
* | mod_muc: Add Ad-Hoc command to destroy MUC roomsFlorian Zeitz2013-06-051-0/+36
| |
* | mod_muc: Utilize mod_disco, instead of reimplementing disco handlingFlorian Zeitz2013-06-051-14/+9
| |
* | mod_muc: Include status code 332 on service shutdown (thanks mathieui)Matthew Wild2013-06-081-1/+2
| |
* | mod_muc: Refactor config form handling, and allow for clients to submit ↵Matthew Wild2013-05-161-1/+1
|/ | | | incomplete forms. Fixes #246
* mod_muc: Fire muc-room-created and muc-room-destroyed events (thanks nik)Matthew Wild2013-05-141-0/+1
|
* mod_auth_internal_hashed, mod_auth_internal_plain, mod_privacy, mod_private, ↵Kim Alvefur2013-04-191-7/+8
| | | | mod_register, mod_vcard, mod_muc: Use module:open_store()
* MUC: Access prosody.hosts instead of the old global hostsKim Alvefur2013-03-231-1/+1
|
* MUC: Always return <service-unavailable/> when a node is present in service ↵Waqas Hussain2013-02-261-2/+3
| | | | discovery requests.
* MUC: Expose create_room(jid).Waqas Hussain2012-11-301-12/+11
|
* muc: Make max_history_messages simply a service-wide config option, and ↵Matthew Wild2012-11-221-11/+4
| | | | don't store it per-room (rooms still have their own history_message, but this is a global limit)
* mod_muc: Fix syntax error (thanks Florob)Matthew Wild2012-08-011-1/+1
|
* MUC: Give host and server admins "owner" affiliation in all rooms.Waqas Hussain2012-08-011-1/+13
|
* MUC: Send unavailable presence when the component or server is shutting down.Waqas Hussain2012-08-011-0/+27
|
* MUC: Return <item-not-found/> on message and iq to non-existent rooms ↵Waqas Hussain2012-08-011-0/+4
| | | | (thanks Maranda).
* mod_muc: Remove unused variable and pull hosts into a localKim Alvefur2012-07-261-3/+3
|
* mod_muc: Use module:send() instead of core_*_stanza()Kim Alvefur2012-07-261-2/+2
|
* MUC: Handle missing persistent room data.Waqas Hussain2012-06-121-10/+18
|
* muc - implement per channel history limitsMarkus Kötter2012-04-131-4/+4
| | | | | | | - allow configuration via channel settings - store the settings for permanent channels - honor muc max_history_messages from the config as upper limit - only broadcast_message with historic = true if history_length is > 0
* MUC: A little cleanup.Waqas Hussain2011-08-311-33/+27
|
* mod_muc: Remove room from memory when it is made non-persistent and is emptyMatthew Wild2011-05-041-0/+3
|
* MUC: Give stanza handlers a negative priority, to allow mod_iq to process ↵Waqas Hussain2010-12-021-9/+9
| | | | them first.
* MUC: Fixed: Variable referencing the host session wasn't initialized.Waqas Hussain2010-11-171-1/+1
|
* prosody: Removed all references to componentmanager from Prosody, except the ↵Waqas Hussain2010-11-101-7/+1
| | | | main componentmanager file.
* MUC: Return true from the stanza handler to suppress error responses.Waqas Hussain2010-11-101-1/+2
|
* MUC: Preserve the global rooms table through reloads.Waqas Hussain2010-11-091-1/+0
|
* MUC: Expose the rooms table as a global 'rooms'.Waqas Hussain2010-11-091-1/+2
|
* MUC: Allow restricting room creation to local JIDs (thanks thomas.mangin).Waqas Hussain2010-11-081-3/+10
|
* MUC: Use events for hooking stanzas instead of the component stanza handler.Waqas Hussain2010-11-041-2/+14
|
* MUC: Make the room node be the default room name (thanks Zash).Waqas Hussain2010-09-281-1/+1
|
* MUC: No need to call is_admin twice now, global admins are admins on hostsMatthew Wild2010-07-171-1/+1
|
* MUC: Make number of stored history messages configurable with option ↵Matthew Wild2010-07-061-3/+13
| | | | max_history_messages (thanks michal and others who requested)
* MUC: Updated code to use :set_hidden() and :is_hidden().Waqas Hussain2010-06-131-1/+1
|
* Merge 0.6->0.7Matthew Wild2010-03-221-2/+2
|\
| * Update copyright headers for 2010Matthew Wild2010-03-221-2/+2
| |
* | mod_muc: Remove unused history_length declarationMatthew Wild2010-01-131-1/+0
|/