Initial support for Dovecot 2.x versions.
This commit is contained in:
parent
2390603711
commit
95fe49abe7
4 changed files with 206 additions and 63 deletions
38
dovecot/templates/local.conf.erb
Normal file
38
dovecot/templates/local.conf.erb
Normal file
|
@ -0,0 +1,38 @@
|
|||
|
||||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue