Enhancement: add processed mails management UI and API

This commit is contained in:
shamoon
2025-09-15 10:08:33 -07:00
parent f2ef9af291
commit eca093189d
15 changed files with 296 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { ObjectWithId } from './object-with-id'
export interface ProcessedMail extends ObjectWithId {
rule: number // MailRule.id
folder: string
uid: number
subject: string
received: Date
processed: Date
status: string
error: string
}