mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
24 lines
337 B
TypeScript
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
|
|
}
|