mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-09 09:58:20 -05:00
26 lines
376 B
TypeScript
26 lines
376 B
TypeScript
import { ObjectWithPermissions } from './object-with-permissions'
|
|
|
|
export enum IMAPSecurity {
|
|
None = 1,
|
|
SSL = 2,
|
|
STARTTLS = 3,
|
|
}
|
|
|
|
export interface MailAccount extends ObjectWithPermissions {
|
|
name: string
|
|
|
|
imap_server: string
|
|
|
|
imap_port: number
|
|
|
|
imap_security: IMAPSecurity
|
|
|
|
username: string
|
|
|
|
password: string
|
|
|
|
character_set?: string
|
|
|
|
is_token: boolean
|
|
}
|