Skip to content
Snippets Groups Projects
Commit a70540a1 authored by Jeff Wallace's avatar Jeff Wallace
Browse files

Updated reference to email parser module name in general ingest configurator.

parent cb13df07
No related branches found
No related tags found
No related merge requests found
......@@ -65,8 +65,9 @@ private List<String> loadSettingsForContext() {
String[] enabledModuleNames = ModuleSettings.getConfigSetting(moduleContext, ENABLED_INGEST_MODULES_KEY).split(", ");
List<IngestModuleAbstract> enabledModules = new ArrayList<>();
for (String moduleName : enabledModuleNames) {
if (moduleName.equals("Thunderbird Parser")) {
moduleName = "MBox Parser";
if (moduleName.equals("Thunderbird Parser")
|| moduleName.equals("MBox Parser")) {
moduleName = "Email Parser";
}
IngestModuleAbstract moduleFound = null;
for (IngestModuleAbstract module : allModules) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment