mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 05:37:34 +03:00
Merge pull request #567 from the-maldridge/netauth-docs
docs/reference/auth: Add information about netauth support
This commit is contained in:
commit
0dc6c2d62a
2 changed files with 48 additions and 0 deletions
|
@ -69,6 +69,7 @@ nav:
|
|||
- reference/auth/ldap.md
|
||||
- reference/auth/dovecot_sasl.md
|
||||
- reference/auth/plain_separate.md
|
||||
- reference/auth/netauth.md
|
||||
- reference/config-syntax.md
|
||||
- Integration with software:
|
||||
- third-party/dovecot.md
|
||||
|
|
47
docs/reference/auth/netauth.md
Normal file
47
docs/reference/auth/netauth.md
Normal file
|
@ -0,0 +1,47 @@
|
|||
# Native NetAuth
|
||||
|
||||
maddy supports authentication via NetAuth using direct entity
|
||||
authentication checks. Passwords are verified by the NetAuth server.
|
||||
|
||||
maddy needs to know the Entity ID to use for authentication. It must
|
||||
match the string the user provides for the Local Atom part of their
|
||||
mail address.
|
||||
|
||||
Note that storage backends conventionally use email addresses. Since
|
||||
NetAuth recommends *nix compatible usernames, you will need to map the
|
||||
email identifiers to NetAuth Entity IDs using auth\_map (see
|
||||
documentation page for used storage backend).
|
||||
|
||||
auth.netauth also can be used as a table module. This way you can
|
||||
check whether the account exists.
|
||||
|
||||
Note that the configuration fragment provided below is very sparse.
|
||||
This is because NetAuth expects to read most of its common
|
||||
configuration values from the system NetAuth config file located at
|
||||
`/etc/netauth/config.toml`.
|
||||
|
||||
```
|
||||
auth.netauth {
|
||||
require_group "maddy-users"
|
||||
debug off
|
||||
}
|
||||
```
|
||||
|
||||
```
|
||||
auth.netauth {}
|
||||
```
|
||||
|
||||
## Configuration directives
|
||||
|
||||
**Syntax:** require\_group _group_
|
||||
|
||||
OPTIONAL.
|
||||
|
||||
Group that entities must posess to be able to use maddy services.
|
||||
This can be used to provide email to just a subset of the entities
|
||||
present in NetAuth.
|
||||
|
||||
**Syntax** debug off <br>
|
||||
debug on <br>
|
||||
debug off <br>
|
||||
**Default:** off
|
Loading…
Add table
Add a link
Reference in a new issue