mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-07-28 18:24:38 -05:00
Mail account edit dialog
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
import { ObjectWithId } from './object-with-id'
|
||||
|
||||
export enum IMAPSecurity {
|
||||
None = 0,
|
||||
SSL = 1,
|
||||
STARTTLS = 2,
|
||||
None = 1,
|
||||
SSL = 2,
|
||||
STARTTLS = 3,
|
||||
}
|
||||
|
||||
export const IMAPSecurityLabels: Array<{ id: number; name: string }> = [
|
||||
{ id: IMAPSecurity.None, name: $localize`No encryption` },
|
||||
{ id: IMAPSecurity.SSL, name: $localize`SSL` },
|
||||
{ id: IMAPSecurity.STARTTLS, name: $localize`STARTTLS` },
|
||||
]
|
||||
|
||||
export interface PaperlessMailAccount extends ObjectWithId {
|
||||
name: string
|
||||
|
||||
|
Reference in New Issue
Block a user