export type ZimbraSettings = { serverUrl: string | null username: string | null calendarPath: string | null enabled: boolean hasPassword: boolean } export type ZimbraSettingsWrite = { serverUrl: string | null username: string | null calendarPath: string | null password?: string | null enabled: boolean } export type ZimbraTestResult = { success: boolean }