Method
AuthPlain
(username, password string)
Source from the content-addressed store, hash-verified
| 31 | // Modules implementing this interface should be registered with "auth." prefix in name. |
| 32 | type PlainAuth interface { |
| 33 | AuthPlain(username, password string) error |
| 34 | } |
| 35 | |
| 36 | // PlainUserDB is a local credentials store that can be managed using maddy command |
Implementers 13
Dummyframework/module/modules/dummy.go Authinternal/auth/pass_table/table.go mockAuthinternal/auth/plain_separate/plain_sep Authinternal/auth/plain_separate/plain_sep Authinternal/auth/shadow/module.go Authinternal/auth/netauth/netauth.go Authinternal/auth/dovecot_sasl/dovecot_sas Authinternal/auth/ldap/ldap.go Authinternal/auth/pam/module.go