Hi,
I'm trying to add a custom Ical Importer because I need to suppress email notifications when importing appointments into OX.
After reading this:
Building an importer
I started to copy&paste the default ICalImporter and applied a simple switch in order to suppress notifications, but now I'm not able to deploy my custom importer because it seems that Spring is no longer used to build the Importer and Exporter lists.
Looking at com.openexchange.ajax.ImportExport it's clear that the init() method now builds the importerExporter object by manually adding importers and exporters and it does not look to the /opt/open-xchange/etc/groupware/importerExporter.xml file (as it was supposed to).
Is this the intended behaviour? How can I add my custom Importer?
I'm trying to add a custom Ical Importer because I need to suppress email notifications when importing appointments into OX.
After reading this:
Building an importer
I started to copy&paste the default ICalImporter and applied a simple switch in order to suppress notifications, but now I'm not able to deploy my custom importer because it seems that Spring is no longer used to build the Importer and Exporter lists.
Looking at com.openexchange.ajax.ImportExport it's clear that the init() method now builds the importerExporter object by manually adding importers and exporters and it does not look to the /opt/open-xchange/etc/groupware/importerExporter.xml file (as it was supposed to).
Is this the intended behaviour? How can I add my custom Importer?
Comment