Set default mailbox quota if enabled to 5Gb

This commit is contained in:
Johannes Zellner
2025-06-13 17:41:34 +02:00
parent c5883ebe8f
commit d5e4d8637c

View File

@@ -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);