diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-08-08 21:40:31 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-08-16 00:21:02 +0200 |
commit | 2053ddac783c931053676ebc2b02bc8b82d89399 (patch) | |
tree | 2f5a9533bc41a482533993f00c9fd3ca4d2b108b /modules/private/mail | |
parent | 69e6151c0c324f920eccb34568ed7ff523592589 (diff) | |
download | Nix-2053ddac783c931053676ebc2b02bc8b82d89399.tar.gz Nix-2053ddac783c931053676ebc2b02bc8b82d89399.tar.zst Nix-2053ddac783c931053676ebc2b02bc8b82d89399.zip |
Upgrade nixos-unstable
Diffstat (limited to 'modules/private/mail')
-rw-r--r-- | modules/private/mail/dovecot.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/private/mail/dovecot.nix b/modules/private/mail/dovecot.nix index 0304b89..aa25d1f 100644 --- a/modules/private/mail/dovecot.nix +++ b/modules/private/mail/dovecot.nix | |||
@@ -69,12 +69,12 @@ in | |||
69 | mailUser = "vhost"; | 69 | mailUser = "vhost"; |
70 | mailGroup = "vhost"; | 70 | mailGroup = "vhost"; |
71 | createMailUser = false; | 71 | createMailUser = false; |
72 | mailboxes = [ | 72 | mailboxes = { |
73 | { name = "Trash"; auto = "subscribe"; specialUse = "Trash"; } | 73 | Trash = { auto = "subscribe"; specialUse = "Trash"; }; |
74 | { name = "Junk"; auto = "subscribe"; specialUse = "Junk"; } | 74 | Junk = { auto = "subscribe"; specialUse = "Junk"; }; |
75 | { name = "Sent"; auto = "subscribe"; specialUse = "Sent"; } | 75 | Sent = { auto = "subscribe"; specialUse = "Sent"; }; |
76 | { name = "Drafts"; auto = "subscribe"; specialUse = "Drafts"; } | 76 | Drafts = { auto = "subscribe"; specialUse = "Drafts"; }; |
77 | ]; | 77 | }; |
78 | mailLocation = "mbox:~/Mail:INBOX=~/Mail/Inbox:INDEX=~/.imap"; | 78 | mailLocation = "mbox:~/Mail:INBOX=~/Mail/Inbox:INDEX=~/.imap"; |
79 | sslServerCert = "/var/lib/acme/mail/fullchain.pem"; | 79 | sslServerCert = "/var/lib/acme/mail/fullchain.pem"; |
80 | sslServerKey = "/var/lib/acme/mail/key.pem"; | 80 | sslServerKey = "/var/lib/acme/mail/key.pem"; |