diff options
Diffstat (limited to 'ansible/roles/dovecot/files/dovecot/conf.d/10-mail.conf')
-rw-r--r-- | ansible/roles/dovecot/files/dovecot/conf.d/10-mail.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ansible/roles/dovecot/files/dovecot/conf.d/10-mail.conf b/ansible/roles/dovecot/files/dovecot/conf.d/10-mail.conf new file mode 100644 index 0000000..6c03965 --- /dev/null +++ b/ansible/roles/dovecot/files/dovecot/conf.d/10-mail.conf | |||
@@ -0,0 +1,28 @@ | |||
1 | # default home directory location for all users | ||
2 | mail_home = /var/mail/vhosts/%d/%n | ||
3 | |||
4 | # directory to store mail. The tilda makes it relative to the *dovecot* | ||
5 | # virtual home directory. | ||
6 | # | ||
7 | # I use mdbox - this is Dovecot's own high-performance mail store format. | ||
8 | # There are other slower, more "traditional" formats you can choose from. | ||
9 | # Read about them here: https://wiki2.dovecot.org/MailboxFormat | ||
10 | mail_location = mdbox:~/mdbox | ||
11 | |||
12 | # nothing fancy - just a standard default namespace with '/' as the | ||
13 | # hierarchy separator | ||
14 | namespace inbox { | ||
15 | separator = / | ||
16 | inbox = yes | ||
17 | } | ||
18 | |||
19 | # set this to the group that owns your vmail directory. | ||
20 | mail_privileged_group = vmail | ||
21 | |||
22 | # these lines enable attachment deduplication. Attachments must be somewhat | ||
23 | # large (64k) to store them separately from the mail store. | ||
24 | mail_attachment_dir = /var/mail/attachments | ||
25 | mail_attachment_min_size = 64k | ||
26 | |||
27 | # we'll uncomment this after we set up Solr in the following section: | ||
28 | # mail_plugins = $mail_plugins fts fts_solr | ||