fix indent

This commit is contained in:
nd 2020-05-29 16:43:35 +02:00
parent 2f80df9c5a
commit 433412434b
No known key found for this signature in database
GPG key ID: 21B5CD4DEE3670E9

View file

@ -7,17 +7,17 @@ All configuration is to be placed inside the `dovecot` dict.
``` ```
# Array of protocols to enable, by default 'imaps' and 'sieve' are enabled. # Array of protocols to enable, by default 'imaps' and 'sieve' are enabled.
# Can be 'imap', 'imaps', 'pop3', 'pop3s', 'sieve' # Can be 'imap', 'imaps', 'pop3', 'pop3s', 'sieve'
protocols: ['imaps', 'sieve' ] protocols: ['imaps', 'sieve' ]
# Array of IPs to bind on. By default we bind wildcard IPv4 and IPv6 # Array of IPs to bind on. By default we bind wildcard IPv4 and IPv6
listen: ["*", "::"] listen: ["*", "::"]
# Authentication mechanisms to support, for options see https://doc.dovecot.org/configuration_manual/authentication/authentication_mechanisms/ # Authentication mechanisms to support, for options see https://doc.dovecot.org/configuration_manual/authentication/authentication_mechanisms/
auth_mechanisms: ["plain", "login"] auth_mechanisms: ["plain", "login"]
# Array of users if dovecot should handle users in a db. Not usable if you enable ldap. # Array of users if dovecot should handle users in a db. Not usable if you enable ldap.
# Each user is a dict, for options see *userdict* below # Each user is a dict, for options see *userdict* below
user: [] user: []
``` ```
**userdict** **userdict**