38 lines
825 B
Text
38 lines
825 B
Text
|
|
ssl=required
|
|
ssl_cert = <<%= dovecot_ssl_dir %>/certs/dovecot.crt
|
|
ssl_key = <<%= dovecot_ssl_dir %>/private/dovecot.key
|
|
<% if has_variable?('dovecot_ssl_ca') -%>
|
|
ssl_ca = <<%= dovecot_ssl_dir %>/certs/dovecot.ca.crt
|
|
<% end -%>
|
|
|
|
<% if has_variable=('dovecot_mailbox_format') && dovecot_mailbox_format == "mdbox" -%>
|
|
# mdbox settings
|
|
mdbox_rotate_size = 10M
|
|
mdbox_rotate_interval = 10d
|
|
<% end -%>
|
|
|
|
# zlib
|
|
<% if has_variable?('dovecot_zlib') && dovecot_zlib == "yes" -%>
|
|
mail_plugins = $mail_plugins zlib
|
|
plugin {
|
|
zlib_save_level = 1 # 1..9
|
|
zlib_save = gz # or bz2
|
|
}
|
|
<% end -%>
|
|
|
|
mail_location = <%= dovecot_mailbox_format %>:~/imapmail/
|
|
|
|
namespace {
|
|
separator = /
|
|
list = yes
|
|
}
|
|
|
|
namespace {
|
|
separator = /
|
|
prefix = "#mbox/"
|
|
location = mbox:~/imapinbox/:INBOX=/var/mail/%u
|
|
inbox = yes
|
|
hidden = yes
|
|
list = no
|
|
}
|