Matthew Wild
|
8114fdc49e
|
mod_saslauth: Fire authentication-success and authentication-failure events (thanks scitor)
|
15 years ago |
Waqas Hussain
|
d22f972445
|
MUC: Allow affiliation change when argument actor==true in room:set_affiliation().
|
15 years ago |
Matthew Wild
|
263e2e8015
|
mod_uptime: Use module:hook_global()
|
15 years ago |
Matthew Wild
|
92cf5d2089
|
mod_pubsub: Add 'publisher' affiliation (can't create/configure nodes, can do everything else)
|
15 years ago |
Matthew Wild
|
dcba4da36a
|
mod_pubsub: Send node items to new subscribers
|
15 years ago |
Matthew Wild
|
01150f8e28
|
mod_pubsub: Add newline at end of file
|
15 years ago |
Matthew Wild
|
0b42d443f1
|
mod_pubsub: Handle options tag in subscription request (currently doesn't work as options_form is not defined)
|
15 years ago |
Kim Alvefur
|
f0ec18a8b7
|
core.modulemanager, mod_disco: Add support for XEP-0128: Service Discovery Extensions
|
15 years ago |
Matthew Wild
|
d4b99e90cf
|
mod_bosh: Update to use typed variants of module:get_option(), makes it more tolerant to config variations and simplifies the code.
|
15 years ago |
Paul Aurich
|
ac0119be7a
|
mod_admin_telnet: Update to newer luasec.
Matthew is responsible for figuring out a nice way to print out the whole chain O:)
|
15 years ago |
Matthew Wild
|
545961d983
|
mod_bosh: Fix logging when no sid present, fix a missing semi-colon, avoid an extra useless table lookup (thanks Thomas)
|
15 years ago |
Matthew Wild
|
4ce6d1e03d
|
MUC: Change error type of badly-formatted stanza from 'auth' to 'modify' (thanks Andrew)
|
15 years ago |
Matthew Wild
|
ba19cdbf9a
|
mod_component: Clearer log message when bouncing a stanza from a component that is not connected (thanks MK)
|
15 years ago |
Matthew Wild
|
8ec24c7bf7
|
mod_storage_sql: Add extra logging and error handling around table creation
|
15 years ago |
Matthew Wild
|
089b80680f
|
mod_storage_sql: Add sql_manage_tables to disable table creation/updating.
|
15 years ago |
Matthew Wild
|
7c6db5e1b2
|
Backout bcdff2b1d3ec from 0.8 - going to commit a slightly cleaner patch for the same issue to trunk
|
15 years ago |
Matthew Wild
|
b761dbf8c3
|
mod_dialback: More robust handling of multiple outstanding dialback requests for the same domain, fixes intermittent s2s with some (patched?) ejabberds
|
15 years ago |
Matthew Wild
|
16a24fc55f
|
Backout commit d6366294f618 which I was testing and didn't mean to push to 0.8
|
15 years ago |
Christian Haase
|
82639a7fbf
|
mod_groups: Persist changes to mod_groups contacts (e.g. moving groups)
|
15 years ago |
Matthew Wild
|
0ed8dc1f6e
|
mod_component: Small code clarity fix
|
15 years ago |
Matthew Wild
|
6b16aa6794
|
mod_storage_sql: Log error when failing to update MySQL schema
|
15 years ago |
Florian Zeitz
|
31dfca9524
|
mod_admin_adhoc: Only allow global admins to shut the server down
|
15 years ago |
Florian Zeitz
|
c3c3bd3a5d
|
mod_admin_adhoc: Add "Reload configuration" command
|
15 years ago |
Florian Zeitz
|
95e4d42691
|
mod_adhoc: Add support for commands only executable by global administrators
|
15 years ago |
Matthew Wild
|
7037ff8b95
|
mod_storage_sql: Switch to MEDIUMTEXT for the 'value' column when using MySQL, as it imposes a 64K limit otherwise, potentially truncating data. Automatically upgrades existing tables.
|
15 years ago |
Matthew Wild
|
50cc9d9e0a
|
mod_register: Change the default for 'allow_registration' from true to false, most users shouldn't be affected as allow_registration is already explicitly set in the default config file.
|
15 years ago |
Matthew Wild
|
87fabe0fe7
|
mod_register: Move allow_registration option into an upvalue for efficiency (now it is being checked on every new c2s stream)
|
15 years ago |
Glenn Maynard
|
49d51d062d
|
Advertise in-band registration support.
Implement optional registration support advertisement according to
XEP-0077 sec8:
<features>
<register xmlns='http://jabber.org/features/iq-register'/>
</features>
---
plugins/mod_register.lua | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
|
15 years ago |
Waqas Hussain
|
dec8a3ba7a
|
MUC: Include occupant count in room disco#info response.
|
15 years ago |
Waqas Hussain
|
0e3f3ca83d
|
mod_roster: Remove <optional/> from roster version stream feature, as per latest specs.
|
15 years ago |
Waqas Hussain
|
653971e4ca
|
mod_dialback: Remove <optional/> from stream feature, as per latest specs.
|
15 years ago |
Matthew Wild
|
69a4cd5a25
|
mod_muc: Remove room from memory when it is made non-persistent and is empty
|
15 years ago |
Matthew Wild
|
49fb45a07b
|
mod_legacyauth: Disallow on unencrypted connections by default, heed allow_unencrypted_plain_auth config option (thanks Maranda/Zash)
|
15 years ago |
Marco Cirillo
|
e279ce521d
|
mod_pubsub: Support for setting a disco name
|
15 years ago |
Matthew Wild
|
2d8a08de12
|
mod_tls: Fix for components to more reliably inherit SSL settings from their parenthost (thanks Link Mauve)
|
15 years ago |
Matthew Wild
|
662e978e43
|
mod_privacy: Remove several unused variable declarations
|
15 years ago |
Matthew Wild
|
2fb6fd3f38
|
mod_privacy: Remove unused function, sendUnavailable
|
15 years ago |
Matthew Wild
|
67e210a28a
|
mod_dialback: Use session:close() on dialback failure instead of s2smanager.destroy_session() (thanks Zash)
|
15 years ago |
Matthew Wild
|
6d716b8e25
|
mod_pubsub: Remove checks for whether the JID being (un)subscribed is the actor's own - it's possible to (un)subscribe another JID if you have the (un)subscribe_other capability, which is already checked in util.pubsub (thanks Andrew)
|
15 years ago |
Matthew Wild
|
b7ab106c48
|
mod_bosh: Fix terminate logic - process any stanzas in a terminating request, and add type='terminate' to any responses generated by those stanzas. Finally, close all remaining open requests with type='terminate' and close the session. Fixes #211 (thanks Maranda + waqas).
|
15 years ago |
Matthew Wild
|
67088429be
|
mod_storage_sql: Fix commit c806a599224a for compatibility with non-MySQL databases (thanks Ognyan Kulev)
|
15 years ago |
Matthew Wild
|
3df725786b
|
mod_bosh: Mark a session as active when a request comes in, even if we don't end up holding that request, fixes BOSH ghosts (thanks smoku)
|
15 years ago |
Matthew Wild
|
d02f7c4700
|
mod_bosh: Fix terminate logic - process any stanzas in a terminating request, and add type='terminate' to any responses generated by those stanzas. Finally, close all remaining open requests with type='terminate' and close the session. Fixes #211 (thanks Maranda + waqas).
|
15 years ago |
Matthew Wild
|
9cf13e5dcd
|
mod_storage_sql: Display friendlier error when LuaDBI is missing
|
15 years ago |
Matthew Wild
|
1370dd825c
|
mod_pep: Fix comparison between incoming hash and the cached hash for a JID, fixes repeated PEP events on presence (fixes #225)
|
15 years ago |
Waqas Hussain
|
88b861e694
|
MUC: Don't limit affiliation changes to owners, and allow owners to remove themselves if they are not the last owner.
|
15 years ago |
Waqas Hussain
|
5f8cd641ca
|
MUC: Add a textual error message when the user isn't allowed to get/set config form.
|
15 years ago |
Waqas Hussain
|
9c85f1fccd
|
mod_auth_*: Get rid of undocumented and broken 'sasl_realm' config option.
|
15 years ago |
Waqas Hussain
|
b3cc9f42df
|
mod_auth_*: Get rid of undocumented and broken 'sasl_realm' config option.
|
15 years ago |
Waqas Hussain
|
6f067417f2
|
mod_auth_cyrus: Print some diagnostic log messages about the available mechanisms.
|
15 years ago |