paperless-ngx/src-ui/src/app/data/paperless-mail-account.ts
Michael Shamoon 98cdf614a5 Mail form tweaks
Include add button

Include add button
2022-12-03 09:31:23 -08:00

24 lines
337 B
TypeScript

import { ObjectWithId } from './object-with-id'
export enum IMAPSecurity {
None = 1,
SSL = 2,
STARTTLS = 3,
}
export interface PaperlessMailAccount extends ObjectWithId {
name: string
imap_server: string
imap_port: number
imap_security: IMAPSecurity
username: string
password: string
character_set?: string
}