Add MSG to EML email conversion support (#367)
- Add new msgconvert converter using libemail-outlook-message-perl - Support conversion from Outlook MSG files to standard EML format - Add msgconvert to Docker dependencies and version checking - Register msgconvert converter in main converter registry Implements feature request #367 for email format conversion
This commit is contained in:
parent
f5f718a84a
commit
5ffb7f4a01
4 changed files with 63 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ import { convert as convertInkscape, properties as propertiesInkscape } from "./
|
|||
import { convert as convertLibheif, properties as propertiesLibheif } from "./libheif";
|
||||
import { convert as convertLibjxl, properties as propertiesLibjxl } from "./libjxl";
|
||||
import { convert as convertLibreOffice, properties as propertiesLibreOffice } from "./libreoffice";
|
||||
import { convert as convertMsgconvert, properties as propertiesMsgconvert } from "./msgconvert";
|
||||
import { convert as convertPandoc, properties as propertiesPandoc } from "./pandoc";
|
||||
import { convert as convertPotrace, properties as propertiesPotrace } from "./potrace";
|
||||
import { convert as convertresvg, properties as propertiesresvg } from "./resvg";
|
||||
|
|
@ -87,6 +88,10 @@ const properties: Record<
|
|||
properties: propertiesPandoc,
|
||||
converter: convertPandoc,
|
||||
},
|
||||
msgconvert: {
|
||||
properties: propertiesMsgconvert,
|
||||
converter: convertMsgconvert,
|
||||
},
|
||||
dvisvgm: {
|
||||
properties: propertiesDvisvgm,
|
||||
converter: convertDvisvgm,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue