summaryrefslogtreecommitdiff
blob: 6c039656369bd447f250e55c85eb037740f92ac4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# default home directory location for all users
mail_home = /var/mail/vhosts/%d/%n

# directory to store mail. The tilda makes it relative to the *dovecot*
# virtual home directory.
#
# I use mdbox - this is Dovecot's own high-performance mail store format.
# There are other slower, more "traditional" formats you can choose from.
# Read about them here: https://wiki2.dovecot.org/MailboxFormat
mail_location = mdbox:~/mdbox

# nothing fancy - just a standard default namespace with '/' as the
# hierarchy separator
namespace inbox {
  separator = /
  inbox = yes
}

# set this to the group that owns your vmail directory.
mail_privileged_group = vmail

# these lines enable attachment deduplication. Attachments must be somewhat
# large (64k) to store them separately from the mail store.
mail_attachment_dir = /var/mail/attachments
mail_attachment_min_size = 64k

# we'll uncomment this after we set up Solr in the following section:
# mail_plugins = $mail_plugins fts fts_solr
Powered by cgit v1.2.3 (git 2.41.0)