Improve auth. provider interface

The authentication provider can now provide multiple authorization
identities associated with credentials. Protocols that support that
(e.g. JMAP, SASL) can let the client select the wanted identity.
This commit is contained in:
fox.cpp 2020-02-27 01:22:47 +03:00
parent 8f1d57293c
commit a45c7090c4
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
11 changed files with 72 additions and 65 deletions

View file

@ -27,7 +27,7 @@ const testMsg = "From: <sender@example.org>\r\n" +
"\r\n" +
"foobar\r\n"
func testEndpoint(t *testing.T, modName string, auth module.AuthProvider, tgt module.DeliveryTarget, checks []module.Check, cfg []config.Node) *Endpoint {
func testEndpoint(t *testing.T, modName string, auth module.PlainAuth, tgt module.DeliveryTarget, checks []module.Check, cfg []config.Node) *Endpoint {
t.Helper()
mod, err := New(modName, []string{"tcp://127.0.0.1:" + testPort})