No description
Find a file
2020-07-28 15:31:08 +02:00
defaults Update defaults and docs 2020-07-12 13:55:38 +02:00
handlers initial commit 2018-01-17 17:11:07 +01:00
tasks Enable LDAP 2020-07-12 17:13:36 +02:00
templates removed pass_filter, added auth_bind_userdn 2020-07-28 15:31:08 +02:00
README.md Update defaults and docs 2020-07-12 13:55:38 +02:00

dovecot

Parameters and defaults

All configuration is to be placed inside the dovecot dict.

# Array of protocols to enable, by default 'imaps' and 'sieve' are enabled.
# Can be 'imap', 'pop3', 'pop3s', 'sieve'. Note that 'imap' only allows IMAP over TLS on port 993.
protocols: ['imap', 'sieve' ]

# Array of IPs to bind on. By default we bind wildcard IPv4 and IPv6
listen: ["*", "::"]

# Authentication mechanisms to support, for options see https://doc.dovecot.org/configuration_manual/authentication/authentication_mechanisms/
auth_mechanisms: ["plain", "login"]

# 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
user: []

userdict

# username
name: "name"

# clear text password
password: "pw"