diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-01-23 15:29:31 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-01-23 16:48:23 +0000 |
commit | 7d2f2d360f5a8ac6e0055074db813c3c3cfbeeb4 (patch) | |
tree | 1b6b968f17c03a8cce44ca7959e33fc521c77c47 /doc | |
parent | e4a04f2a8de013abe125d9d04219343b0a32662e (diff) |
Dovecot auth: inet socket. Bug 2280
Diffstat (limited to 'doc')
-rw-r--r-- | doc/doc-txt/NewStuff | 3 | ||||
-rw-r--r-- | doc/doc-txt/experimental-spec.txt | 30 |
2 files changed, 33 insertions, 0 deletions
diff --git a/doc/doc-txt/NewStuff b/doc/doc-txt/NewStuff index e21446533..8ae95a7fb 100644 --- a/doc/doc-txt/NewStuff +++ b/doc/doc-txt/NewStuff @@ -30,6 +30,9 @@ Version 4.94 7. Named-list definitions can now be prefixed "hide" so that "-bP" commands do not output the content. Previously this could only be done on options. + 8. As an exerimental feature, the dovecot authenticatino driver supports inet + sockets. Previously it was unix-domain sockets only. + Version 4.93 ------------ diff --git a/doc/doc-txt/experimental-spec.txt b/doc/doc-txt/experimental-spec.txt index 2569ad3af..6e47b95c2 100644 --- a/doc/doc-txt/experimental-spec.txt +++ b/doc/doc-txt/experimental-spec.txt @@ -808,6 +808,36 @@ Issues: hosts_require_ocsp will fail + +Dovecot authenticator via inet socket +------------------------------------ +If Dovecot is configured similar to :- + +service auth { +... +#SASL + inet_listener { + name = exim + port = 12345 + ssl = yes + } +... +} + +then an Exim authenticator can be configured :- + + dovecot-plain: + driver = dovecot + public_name = PLAIN + server_socket = dovecot_server_name 12345 + server_tls = true + server_set_id = $auth1 + +If the server_socket does not start with a / it is taken as a hostname (or IP); +and a whitespace-separated port number must be given. + + + -------------------------------------------------------------- End of file -------------------------------------------------------------- |