fix: IMAP hierarchical folder sync, deduplication, folder tree display, resizable panel

This commit is contained in:
Agent Zero
2026-07-15 15:59:04 +02:00
parent e0975f4044
commit 57b6df5357
5 changed files with 146 additions and 70 deletions
@@ -16,6 +16,12 @@ import { EmptyState } from '@/components/ui/EmptyState';
*/
const FOLDER_NAME_MAP: Record<string, string> = {
INBOX: 'Posteingang',
'INBOX.Sent': 'Gesendet',
'INBOX.Drafts': 'Entwürfe',
'INBOX.Trash': 'Papierkorb',
'INBOX.Archive': 'Archiv',
'INBOX.spam': 'Spam',
'INBOX.Spam': 'Spam',
Sent: 'Gesendet',
Drafts: 'Entwürfe',
Spam: 'Spam',
@@ -23,11 +29,12 @@ const FOLDER_NAME_MAP: Record<string, string> = {
Trash: 'Papierkorb',
'Sent Items': 'Gesendet',
'Sent Mail': 'Gesendet',
'Draft': 'Entwürfe',
'Deleted': 'Papierkorb',
Draft: 'Entwürfe',
Deleted: 'Papierkorb',
'Deleted Items': 'Papierkorb',
'Junk Email': 'Spam',
'Junk E-mail': 'Spam',
Archive: 'Archiv',
};
/**