From f23de99305a97b441b7547f16ae137afcdcd485c Mon Sep 17 00:00:00 2001 From: Ralph Soika Date: Tue, 1 Aug 2023 17:44:43 +0200 Subject: [PATCH] impl Issue #191 --- .../org/imixs/archive/importer/mail/IMAPImportService.java | 6 ++++++ 1 file changed, 6 insertions(+) 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; }