add todo's about mime header parameter decoding

not sure what the correct approach is, would need to analyze email archive for practices.
This commit is contained in:
Mechiel Lukkien
2023-09-21 14:51:47 +02:00
parent f87f286b80
commit 79774c15ec
4 changed files with 4 additions and 2 deletions

View File

@ -322,7 +322,7 @@ export interface MessageEnvelope {
// viewable text or HTML part.
export interface Attachment {
Path?: number[] | null // Indices into top-level message.Part.Parts.
Filename: string // File name based on "name" attribute of "Content-Type", or the "filename" attribute of "Content-Disposition".
Filename: string // File name based on "name" attribute of "Content-Type", or the "filename" attribute of "Content-Disposition". todo: decode non-ascii character sets
Part: Part
}