diff --git a/docs/man/maddy-targets.5.scd b/docs/man/maddy-targets.5.scd index 7fd3753..31f909b 100644 --- a/docs/man/maddy-targets.5.scd +++ b/docs/man/maddy-targets.5.scd @@ -332,7 +332,7 @@ smtp_downstream { attempt_starttls yes require_yes no 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) for how to specify the client certificate. -*Syntax*: target _endpoints..._ ++ +*Syntax*: targets _endpoints..._ ++ *Default:* not specified REQUIRED. diff --git a/docs/tutorials/smtp-only.md b/docs/tutorials/smtp-only.md index 4b7e90f..ea3b37b 100644 --- a/docs/tutorials/smtp-only.md +++ b/docs/tutorials/smtp-only.md @@ -32,7 +32,7 @@ service lmtp { Add `local_mailboxes` block to maddy config using `lmtp_downstream` module: ``` lmtp_downstream local_mailboxes { - target unix:///var/run/maddy/dovecot-lmtp.sock + targets unix:///var/run/maddy/dovecot-lmtp.sock } ```