From d5e4d8637c79dfaed8d097e2d8215e39e34b219c Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 13 Jun 2025 17:41:34 +0200 Subject: [PATCH] Set default mailbox quota if enabled to 5Gb --- dashboard/src/components/MailboxDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/components/MailboxDialog.vue b/dashboard/src/components/MailboxDialog.vue index 5c0798374..58a046d1e 100644 --- a/dashboard/src/components/MailboxDialog.vue +++ b/dashboard/src/components/MailboxDialog.vue @@ -21,7 +21,7 @@ const ownerId = ref(''); const usersAndGroups = ref([]); const storageQuotaEnabled = ref(false); const storageQuotaTicks = [ 500*1000*1000, 5*1000*1000*1000, 15*1000*1000*1000, 50*1000*1000*1000, 100*1000*1000*1000 ]; -const storageQuota = ref(0); +const storageQuota = ref(5*1000*1000*1000); const active = ref(false); const enablePop3 = ref(false);