We are running Coldfusion 9.0.1 and have successfully used cfexchangemail to retrieve email for a number of years.
Within the last few days the calls for some users never return. This leads to ColdFusion stacking up active requests which eventually leads to no response for any request.
For other users the calls work successfully.
This is the call:
<cfexchangemail action="get" folder="Inbox " name="weeksMail" connection="testconn1">
<cfexchangefilter name="maxRows" value=4>
</cfexchangemail>
Has anyone had similar problems?
UPDATE:
I ran some manual queries with a test account that was functioning fine in production. If I remove the maxRows filter I get a very long running request (have yet to see it return). Setting the maxRows to 18 allows the request to complete but only after about 10 seconds. Setting maxRows to 19 seems to get it into non responsive mode.
This seems to indicate a size of message or some kind of corrupt data.
UPDATE 2:
It appears to be a size of email issue. If Inbox has only one email the call will never return if the size is (roughly) about 20kb. A 19kb email can is returned properly.
The question now is: Has this been the case all along and we are only seeing email this large now or did something change? As far as I know nothing has changed on our CF install.
UPDATE 3
Coldfusion 10 has now been tested. We get the same result.
UPDATE 4
I've been able to trigger the problem with a straight WEBDAV hit, which take ColdFusion out of the picture.