Bump mailbox list page size up to 10k for now

This commit is contained in:
Johannes Zellner
2026-02-25 10:14:23 +01:00
parent f4ff63485a
commit 5ef23fa49a
+1 -1
View File
@@ -9,7 +9,7 @@ function create() {
async list(domain, search = '') {
let result;
try {
result = await fetcher.get(`${API_ORIGIN}/api/v1/mail/${domain}/mailboxes`, { page: 1, per_page: 1000, access_token: accessToken });
result = await fetcher.get(`${API_ORIGIN}/api/v1/mail/${domain}/mailboxes`, { page: 1, per_page: 10000, access_token: accessToken });
} catch (e) {
return [e];
}