Status/Resolution/Reason: Closed/Withdrawn/CannotReproduce
Reporter/Name(from Bugbase): Tjomme Henny / Tjomme Henny (Tjomme_H)
Created: 04/03/2014
Components: CFExchange
Versions: 10.0
Failure Type:
Found In Build/Fixed In Build: Final /
Priority/Frequency: Trivial / Unknown
Locale/System: English / Win 2008 Server R2 64 bit
Vote Count: 0
Problem Description:
Any attempts to download email attachments like forwarded emails from exchange 2010 using cfexchange fail to save to file.
Steps to Reproduce:
Code:
<cfexchangeConnection
action = "open"
username = "emailaddress"
password = "#ExchangePW#"
server = "exchangeserver"
connection = "exchangeConn"
protocol="https"
ServerVersion="2010"
>
<!--- mail from specific folder --->
<cfexchangemail action="get" name="qMail" connection="exchangeConn">
<cfexchangefilter name="folder" value="Postvak IN/Coldfusion ">
</cfexchangemail>
<cfdump var="#qMail#" />
<!--- attachment(s) --->
<cfloop query="qMail">
<cfif qMail.hasAttachment EQ "YES">
<cfoutput>#qMail.UID#</cfoutput><br>
<cfexchangemail action="getAttachments" name="qAttach" connection="exchangeConn" uid="#qMail.UID#" attachmentpath="F:\logs\CFConnector\temp" />
<cfdump var="#qAttach#" />
</cfif>
</cfloop>
<cfexchangeConnection
action = "close"
connection = "exchangeConn">
Actual Result:
No attached EML file is saved to folder. All other types of attachments do get saved to that folder.
Expected Result:
Should save all attachment including EML format.
Any Workarounds:
Using existing cfexchange classes with JAVA in CF10 allowed to get the added email-type attachments via the EWS interface.
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 3736186
External Customer Info:
External Company:
External Customer Name: Tjomme_H
External Customer Email:
External Test Config: My Hardware and Environment details:
Attachments:
- April 03, 2014 00:00:00: 1_maildump.txt
Comments: