docs: Fix wrong name of 'targets' directive for smtp_downstream

This commit is contained in:
fox.cpp 2020-06-03 14:02:37 +03:00
parent 64cc2b2380
commit 2a19d455f3
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
2 changed files with 3 additions and 3 deletions

View file

@ -332,7 +332,7 @@ smtp_downstream {
attempt_starttls yes attempt_starttls yes
require_yes no require_yes no
auth off auth off
target tcp://127.0.0.1:2525 targets tcp://127.0.0.1:2525
} }
``` ```
@ -392,7 +392,7 @@ Valid values:
authentication using TLS client certificates. See *maddy-tls*(5) authentication using TLS client certificates. See *maddy-tls*(5)
for how to specify the client certificate. for how to specify the client certificate.
*Syntax*: target _endpoints..._ ++ *Syntax*: targets _endpoints..._ ++
*Default:* not specified *Default:* not specified
REQUIRED. REQUIRED.

View file

@ -32,7 +32,7 @@ service lmtp {
Add `local_mailboxes` block to maddy config using `lmtp_downstream` module: Add `local_mailboxes` block to maddy config using `lmtp_downstream` module:
``` ```
lmtp_downstream local_mailboxes { lmtp_downstream local_mailboxes {
target unix:///var/run/maddy/dovecot-lmtp.sock targets unix:///var/run/maddy/dovecot-lmtp.sock
} }
``` ```