Overview
This plugin provides an alternative to sending emails to an Appian process model when inbound email integration is requested. Instead of the email being forwarded to Appian, this plugin reads the emails directly from the Exchange mailbox using the EWS web services API.
Deployment Instructions
Key Features & Functionality
Smart service "EWS Mail Poller To DB":
To use this plug-in:
By default, the emails successfully processed are moved to the folder Deleted Items and the emails that cannot be processed are moved to the folder Junk E-mails.
The plugin only supports basic auth. Microsoft will be disabling this for Exchange Online, but customers with Exchange Online should be migrating to MS Graph (https://community.appian.com/b/appmarket/posts/msgraph-email-poller).
Hi, isn't this plugin affected by Microsoft disabling Basic Auth for EWS?https://techcommunity.microsoft.com/t5/exchange-team-blog/basic-authentication-and-exchange-online-september-2021-update/ba-p/2772210Kind regards
Hi, we are facing an issue when we use the plug-in with a proxy that doesnt have credentials its returning the error
"required field proxyUsername does not exist in SCS(buzondesa)"
how can we solved this issue?
kind Regards
Hello, any guidance on the following issue we are facing ?
2022-01-05 11:15:40,236 [Appian Work Item - 232292 - execution02 : UnattendedJavaActivityRequest] ERROR com.appiancorp.ps.mail.EWSMailPollerToDBSmartService - Unexpected error polling for mail microsoft.exchange.webservices.data.core.exception.service.remote.ServiceRequestException: The request failed. ParseError at [row,col]:[1,1421] Message: Character reference "&# at microsoft.exchange.webservices.data.core.request.SimpleServiceRequestBase.internalExecute(SimpleServiceRequestBase.java:74)
The service has stopped in our QAS system and we urgently need to resume integration, any hep would be appreciated.
Kind regards,
Hello, we have been running the poller for some time now, but in our QAS system suddenly we are not able to process emails and always receive the following error:
Does anyone have any view on this issue ?
Hi,
We are facing an issue when we attach a file with a file name that contains (×) this character For Eg. Sample_300×300.jpg, EWS Poller move it to the Exception folder and Email Notification is sent to Alert Receivers. Any leads would be helpful.
I was able to figure it out. This version of plugin 1.0.23 expects a DB columns which isn't provided by the Application which is provided with plugin, but it's easy to add by running below script.
ALTER TABLE [dbo].[APP_MAIL_POLLER_DOC]ADD INLINE_ID int,DISPOSITION nvarchar(2000);
For those who are looking to figure out configurations. these are the steps to follow after the sample application is installed:
Update the table APP_MAIL_POLLER_DOC
ALTER TABLE [dbo].[APP_MAIL_POLLER_DOC]
ADD INLINE_ID int,
DISPOSITION nvarchar(2000);
Service URL: https://outlook.xxxx.com/EWS/Exchange.asmx
Domain: provide your domain like xxx.com
Jndi Name: change with your DB Jndi available in Data Store
Exception Folder Name: Junk Email
Processed Folder Name: Deleted Items