Connector for MS Exchange?

1
0
-1

Hi All,
I see a connector to send an email through our exchange server. This works fine.

I am after a connector to access/view users inbox.

When a user gets a new email (outside of the Bonita 6.0.1 platform), I want a process to start based on that email.

Or perhaps a process that checks a users inbox every x seconds and if they have a new email, start the process...

Is this possible? And if so, any pointers?

Thanks,
Jim

1 answer

1
+1
-1

Hi,

Currently I identify two options to start a process using email.

First one and probably the simpler is to design a process that will loop, query the email server to get list of emails in inbox and call Bonita Engine API to start a new process instance. To achieve such solution you would need to build a new connector that can use email protocol such as POP or IMAP to list messages in inbox. Same connector can also include call to API to create process instances. Main limitation is that each loop will lead to Bonita Engine information storage. You'll probably need to think about a policy to purge this history that is likely to be useless.

Second option is to use an ESB such as Apache Camel to take care of pooling the mail server. You'll need then to integrate API call to the ESB in order to create the Bonita instance. Main advantage here is that you probably get better performance and also can take benefit from an exsiting module of the ESB. Drawback is that you need to get familiar with the ESB configuration.

Hope that can help.

Antoine Mottier, Bonitasoft consultant.

Notifications