aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_legacyauth.lua
Commit message (Collapse)AuthorAgeFilesLines
* mod_legacyauth: Default to require encryptionMatthew Wild2022-02-101-1/+1
|
* mod_legacyauth: Report failure from sessionmanager (mostly invalid username)Kim Alvefur2019-12-231-1/+3
|
* mod_legacyauth: Split a long line [luacheck]Kim Alvefur2018-05-011-1/+2
|
* mod_legacyauth, mod_saslauth, mod_tls: Pass require_encryption as default ↵Kim Alvefur2014-10-211-2/+2
| | | | option to s2s_require_encryption so the later overrides the former
* mod_lastactivity, mod_legacyauth, mod_presence, mod_saslauth, mod_tls: Use ↵Kim Alvefur2014-07-041-3/+4
| | | | the newer stanza:get_child APIs and optimize away some table lookups
* Remove all trailing whitespaceFlorian Zeitz2013-08-091-2/+2
|
* mod_legacyauth: Fix for sending error response to unauthed s2s connectionsMatthew Wild2012-09-131-1/+1
|
* mod_legacyauth: Remove unused variableKim Alvefur2012-08-071-1/+0
|
* mod_legacyauth: Return an error if username or resource fails stringprep ↵Kim Alvefur2012-08-071-0/+4
| | | | (thanks iron)
* mod_legacyauth: Disallow on unencrypted connections by default, heed ↵Matthew Wild2011-04-201-1/+3
| | | | allow_unencrypted_plain_auth config option (thanks Maranda/Zash)
* mod_legacyauth: Limit authentication to unauthenticated client connections.Waqas Hussain2010-10-161-0/+5
|
* mod_legacyauth: Updated to use the new events API.Waqas Hussain2010-10-161-42/+43
|
* usermanager, mod_auth_internal_hashed, mod_legacyauth: New order of ↵Matthew Wild2010-07-211-1/+1
| | | | parameters for usermanager.test_password - username, host, password
* mod_legacyauth: Fixed the ordering of parameters passed to ↵Waqas Hussain2010-06-101-1/+1
| | | | usermanager.test_password.
* mod_legacyauth: Use the new usermanager.test_password instead of ↵Waqas Hussain2010-06-091-1/+1
| | | | usermanager.validate_credentials.
* Merge 0.6->0.7Matthew Wild2010-03-221-2/+2
|\
| * Update copyright headers for 2010Matthew Wild2010-03-221-2/+2
| |
* | mod_legacyauth: Hook stream-features event using new events API.Waqas Hussain2010-02-121-3/+4
|/
* require_encryption deprecated, use c2s_require_encryption insteadMatthew Wild2009-10-051-1/+1
|
* Merge with 0.5Matthew Wild2009-09-271-1/+10
|\
| * mod_legacyauth: Don't allow server-generated resource identifiers, as these ↵Waqas Hussain2009-09-271-1/+5
| | | | | | | | are not support by legacy auth.
| * mod_legacyauth: Undo auth on bind fail. Legacy auth is atomic.Waqas Hussain2009-09-271-0/+1
| |
| * mod_legacyauth: Added node and resource prepping.Waqas Hussain2009-09-271-1/+5
| |
* | mod_legacyauth: Added a FIXMEWaqas Hussain2009-08-131-1/+1
| |
* | mod_legacyauth: Refactored a bitWaqas Hussain2009-08-131-9/+2
| |
* | mod_legacyauth: Updated to use module:get_option instead of configmanagerWaqas Hussain2009-08-131-2/+1
| |
* | mod_legacyauth: Removed useless 'require' call on every login attemptWaqas Hussain2009-08-131-1/+0
|/
* Remove version number from copyright headersMatthew Wild2009-07-101-1/+1
|
* mod_legacyauth: Hide stream feature when secure auth is enabled, and session ↵Matthew Wild2009-05-291-1/+6
| | | | isn't secure
* mod_saslauth, mod_legacyauth: Deny logins to unsecure sessions when ↵Matthew Wild2009-05-291-0/+8
| | | | require_encryption config option is true
* mod_*: Fix a load of global accessesMatthew Wild2009-04-221-0/+3
|
* 0.3->0.4Matthew Wild2009-03-201-1/+1
|
* mod_legacyauth: Added stream feature: <auth ↵Waqas Hussain2009-03-081-0/+3
| | | | xmlns='http://jabber.org/features/iq-auth'/>
* Update copyright notices for 2009Matthew Wild2009-01-301-2/+2
|
* 0.2->0.3Matthew Wild2009-01-301-1/+1
|
* GPL->MIT!Matthew Wild2009-01-301-13/+2
|
* 0.1 -> 0.2Matthew Wild2008-12-101-1/+1
|
* Change modules to use the new add_feature module API method.Waqas Hussain2008-12-041-1/+1
| | | | This also fixes the bug causing disco features being added to every disco reply for every host.
* Insert copyright/license headersMatthew Wild2008-12-031-0/+20
|
* Bumper commit for the new modulemanager API \o/ Updates all the modules, ↵Matthew Wild2008-11-271-2/+2
| | | | though some more changes may be in store.
* Modules now sending disco repliesWaqas Hussain2008-11-261-0/+2
|
* Fixed mod_legacyauth to use session.send for sending stanzasWaqas Hussain2008-11-161-4/+3
|
* Code cleanup for resource bindingWaqas Hussain2008-11-161-15/+3
|
* Fix mod_legacyauth to not use old stanza_dispatchMatthew Wild2008-10-241-1/+1
|
* Small fix for sending stanzas in case of resource binding errorMatthew Wild2008-10-041-1/+1
|
* SASL!Matthew Wild2008-10-021-9/+20
| | | | | (but before you get too excited, no resource binding yet. And yes, there are still plenty of rough edges to the code...) ((eg. must move <stream:features> out of xmlhandlers.lua o_O ))
* Huge commit to:Matthew Wild2008-09-301-0/+46
* Break stanza routing (to be restored in a future commit) * Remove the old stanza_dispatcher code, which was never going to be maintainable nor extendable :) * Bring us plugins, starting with mod_legacyauth and mod_roster * Sessions are now created/destroyed using a standard sessionmanager interface