Mercurial > prosody-modules
annotate mod_compliance_latest/mod_compliance_latest.lua @ 6319:04c3273cb81f
mod_auth_cyrus: Add empty 'profile' table to SASL handler objects
This is for compatibility with Prosody's built-in util.sasl objects.
A SASL profile table usually includes methods supported by the backend, which
can be used by SASL mechanism handlers to perform operations (such as testing
the password). It also optionally contains a 'cb' field with channel binding
method handlers.
The Cyrus backend doesn't support channel binding, and doesn't have the same
concept of auth backend methods (it handles all that internally, and Prosody
has no insight or control over it).
Thus, we create an empty profile which informs Prosody that the SASL handler
does not support any of the auth or channel binding methods. Some features
will not work, but they didn't work anyway. This just makes it explicit.
This fixes a traceback in mod_sasl2_fast, which expected SASL handlers to
always contain a 'profile' field.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 04 Sep 2025 10:14:46 +0100 |
| parents | c0cb43817b7c |
| children | 5c24fd7211c3 |
| rev | line source |
|---|---|
|
6084
4c0e3fe57e92
mod_compliance_latest: Gracefull error logging on missing dependency.
Menel <menel@snikket.de>
parents:
6083
diff
changeset
|
1 local success, err = pcall(function() module:depends("compliance_2023") end) |
|
4c0e3fe57e92
mod_compliance_latest: Gracefull error logging on missing dependency.
Menel <menel@snikket.de>
parents:
6083
diff
changeset
|
2 |
|
4c0e3fe57e92
mod_compliance_latest: Gracefull error logging on missing dependency.
Menel <menel@snikket.de>
parents:
6083
diff
changeset
|
3 if not success then |
|
6085
c0cb43817b7c
mod_compliance_latest: using module:log_status
Menel <menel@snikket.de>
parents:
6084
diff
changeset
|
4 module:log_status( "error", "Error, can't load module: mod_compliance_2023. Is this module downloaded into a folder readable by prosody?" ) |
|
c0cb43817b7c
mod_compliance_latest: using module:log_status
Menel <menel@snikket.de>
parents:
6084
diff
changeset
|
5 return false |
|
6084
4c0e3fe57e92
mod_compliance_latest: Gracefull error logging on missing dependency.
Menel <menel@snikket.de>
parents:
6083
diff
changeset
|
6 end |
