added README
This commit is contained in:
parent
38ff3f3fe4
commit
2f80df9c5a
6 changed files with 43 additions and 14 deletions
|
|
@ -96,7 +96,7 @@
|
|||
# plain login digest-md5 cram-md5 ntlm rpa apop anonymous gssapi otp skey
|
||||
# gss-spnego
|
||||
# NOTE: See also disable_plaintext_auth setting.
|
||||
auth_mechanisms = {{ dovecot.auth_mechanisms }}
|
||||
auth_mechanisms = {{ dovecot.auth_mechanisms|join(' ') }}
|
||||
|
||||
##
|
||||
## Password and user databases
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
## ManageSieve specific settings
|
||||
##
|
||||
|
||||
# Uncomment to enable managesieve protocol:
|
||||
protocols = $protocols sieve
|
||||
|
||||
# Service definitions
|
||||
|
||||
service managesieve-login {
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
## Dovecot configuration file
|
||||
|
||||
# Enable installed protocols
|
||||
protocols = {{ dovecot.protocols }}
|
||||
protocols = {{ dovecot.protocols|join(' ') }}
|
||||
|
||||
# A comma separated list of IPs or hosts where to listen in for connections.
|
||||
# "*" listens in all IPv4 interfaces, "::" listens in all IPv6 interfaces.
|
||||
# If you want to specify non-default ports or anything more complex,
|
||||
# edit conf.d/master.conf.
|
||||
listen = {{ dovecot.listen }}
|
||||
listen = {{ dovecot.listen|join(', ') }}
|
||||
|
||||
# Base directory where to store runtime data.
|
||||
#base_dir = /var/run/dovecot/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue