aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_saslauth.lua
Commit message (Collapse)AuthorAgeFilesLines
* mod_saslauth: Log debug message with full error if cyrussasl couldn't be loadedMatthew Wild2010-02-151-0/+1
|
* mod_saslauth: Correct syntax for gracefully handling a missing cyrussasl libraryMatthew Wild2010-02-151-2/+2
|
* mod_saslauth: Warn and fallback gracefully when Cyrus SASL is requested, but ↵Waqas Hussain2010-02-151-5/+12
| | | | missing.
* mod_saslauth: Don't print raw SASL data to avoid logging passwords unnecessarilyMatthew Wild2010-02-131-3/+3
|
* mod_saslauth: Hook stream-features event using new events API.Waqas Hussain2010-02-121-8/+9
|
* mod_saslauth: Fixed some indentation and added some semi-colons.Waqas Hussain2010-01-111-54/+51
|
* mod_saslauth: Made some variables local to avoid unnecessary global access.Waqas Hussain2010-01-111-16/+16
|
* mod_saslauth: Oops.Paul Aurich2010-01-031-1/+1
|
* mod_saslauth: Use module:get_option()Paul Aurich2010-01-031-3/+3
|
* mod_saslauth: Add sasl_backend config parameterPaul Aurich2010-01-021-2/+4
|
* mod_saslauth: Adjust sanitizing.Tobias Markmann2009-12-231-1/+1
|
* mod_saslauth: Sanitize debugging information so it won't break terminal ↵Tobias Markmann2009-12-231-1/+1
| | | | emulation when using GSSAPI auth.
* added comment to remind us to fix binary output breaking the terminaljorj2009-12-231-1/+1
| | | | later
* mod_saslauth: Make service_name configurable for CyrusSASL users.Tobias Markmann2009-12-221-2/+2
|
* mod_saslauth: Add support for CyrusSASL.Tobias Markmann2009-12-221-1/+9
|
* mod_saslauth: Requiring c2s encryption means requiring c2s encryption... ↵Matthew Wild2009-12-211-0/+3
| | | | thanks Flo
* mod_saslauth: Fix typo in variable nameMatthew Wild2009-11-281-1/+1
|
* mod_saslauth: Allow relogins after failed SASL login.Tobias Markmann2009-11-261-1/+1
|
* Use new cofig option reading API.Tobias Markmann2009-11-191-1/+1
|
* Allow SASL PLAIN over unsecure connections when intended by admin.Tobias Markmann2009-11-191-1/+1
|
* Provide SASL PLAIN mechanism only if TLS is active.Tobias Markmann2009-11-181-1/+3
|
* Merge with sasl branch.Tobias Markmann2009-11-161-47/+36
|\
| * Making mod_saslauth use the new SASL API.Tobias Markmann2009-08-281-6/+12
| |
* | mod_saslauth: Fixed access of globals.Waqas Hussain2009-10-181-2/+2
| |
* | mod_saslauth: Marked the im-session stream feature as optional. This allows ↵Waqas Hussain2009-10-181-1/+1
| | | | | | | | smart clients to save a round trip.
* | require_encryption deprecated, use c2s_require_encryption insteadMatthew Wild2009-10-051-1/+1
| |
* | Merge with 0.5Matthew Wild2009-09-291-4/+5
|\ \
| * | mod_saslauth: Prep username used for authenticating a sessionMatthew Wild2009-09-291-4/+4
| | |
* | | Add NODEprepping to SASL Digest-MD5 authentication handling.Tobias Markmann2009-09-061-1/+5
| | |
* | | Uncertain merge with 0.5's SASLMatthew Wild2009-08-201-1/+6
|\| | | |/ |/|
| * Use NODEprep for prepping usernames used during SASL logins.Tobias Markmann2009-08-191-2/+6
| |
* | mod_saslauth: Fix coding style and layout, and use of arg[] for varargMatthew Wild2009-08-051-7/+12
| |
* | mod_saslauth: Fix indentationMatthew Wild2009-08-051-16/+16
| |
* | mod_saslauth: Fix traceback on attempted login for non-existent usersMatthew Wild2009-08-051-2/+6
| |
* | Switch to using a more generic credentials_callback/handler for SASL auth.nick2009-07-241-13/+16
| | | | | | | | | | | | | | Not all authentication mechanisms have the same requirements; it makes sense to provide them only with the information they require (and for them to depend on that) so that as many auth mechanisms as possible can be supported with a variety of credentials-storing schemes. This commit patches that together
* | mod_saslauth, usermanager: Fetch list of mechanisms from usermanagerNick Thomas2009-07-231-11/+14
|/
* Remove version number from copyright headersMatthew Wild2009-07-101-1/+1
|
* Remove to-unicode conversion because it's done in sasl.lua now.Tobias Markmann2009-07-051-2/+1
|
* Fixed decoding of parameters.Tobias Markmann2009-07-051-1/+1
|
* Making sure the node is in unicode when passing it to password lookup function.Tobias Markmann2009-07-011-1/+2
|
* Adding a parameter for realm to the password_callback.Tobias Markmann2009-06-201-4/+4
|
* mod_saslauth: Don't offer bind/session when they aren't authenticated yet :) ↵Matthew Wild2009-05-291-1/+4
| | | | [thanks albert, again...]
* mod_saslauth, mod_legacyauth: Deny logins to unsecure sessions when ↵Matthew Wild2009-05-291-1/+3
| | | | require_encryption config option is true
* mod_saslauth: Fix logic error which prevented SASL ANONYMOUS from workingMatthew Wild2009-05-181-2/+4
|
* mod_saslauth: Remove 2 instances of raising errors and replacing with more ↵Matthew Wild2009-04-301-2/+7
| | | | graceful handling
* mod_saslauth: Various logging fixesMatthew Wild2009-04-301-6/+6
|
* mod_saslauth: Use module logger instead of creating a new oneMatthew Wild2009-04-301-1/+1
|
* mod_*: Fix many unnecessary global accesses in modules (already committed to ↵Matthew Wild2009-04-291-2/+4
| | | | main repo)
* Fixed: Some nil access bugsWaqas Hussain2009-03-301-1/+1
|
* Fixed: mod_saslauth: "anonymous_login" currently makes SASL ANONYMOUS an ↵Waqas Hussain2009-03-301-2/+11
| | | | exclusive mechanism. Corrected advertised mechanisms and error replies.