aboutsummaryrefslogtreecommitdiff
path: root/roles/dovecot/files/conf.d/15-mailboxes.conf
blob: 4de88b04d940a38a1bf860188247bc6efc0b9b88 (plain)
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
# Mailboxes
namespace inbox {
	mailbox Sent {
		special_use = \Sent
		auto = subscribe
	}
	mailbox Trash {
		special_use = \Trash
		auto = create
		autoexpunge = 30d
	}
	mailbox Drafts {
		special_use = \Drafts
		auto = subscribe
	}
	mailbox Spam {
		special_use = \Junk
		auto = create
		autoexpunge = 30d
	}
	mailbox Archive {
		special_use = \Archive
		auto = create
	}
}