diff --git a/imixs-archive-importer/src/main/java/org/imixs/archive/importer/mail/IMAPImportService.java b/imixs-archive-importer/src/main/java/org/imixs/archive/importer/mail/IMAPImportService.java index 6f91e1b..843fac6 100644 --- a/imixs-archive-importer/src/main/java/org/imixs/archive/importer/mail/IMAPImportService.java +++ b/imixs-archive-importer/src/main/java/org/imixs/archive/importer/mail/IMAPImportService.java @@ -418,6 +418,12 @@ public ItemCollection createWorkitem(ItemCollection source) workitem.task(source.getItemValueInteger(DocumentImportService.SOURCE_ITEM_TASK)); workitem.event(source.getItemValueInteger(DocumentImportService.SOURCE_ITEM_EVENT)); workitem.setWorkflowGroup(source.getItemValueString("workflowgroup")); + + // Add import Information + workitem.setItemValue("document.import.type", source.getItemValue("type")); + workitem.setItemValue("document.import.selector", source.getItemValue("selector")); + workitem.setItemValue("document.import.options", source.getItemValue("options")); + return workitem; }