Certain Mail Messages Fail to Import

Still need help?

The Atlassian Community is here for you.

Ask the community

Symptoms

Clicking on the Fetch mail now button showed success, however there are no results shown in Confluence.

This warning shows up in the log file:


2009-12-19 10:17:00,803 WARN [DefaultQuartzScheduler_Worker-2] [atlassian.confluence.mail.DefaultMailContentManager] storeIncomingMail Could not store mail message Expected ';', got ","
javax.mail.internet.ParseException: Expected ';', got ","
	at javax.mail.internet.ParameterList.<init>(ParameterList.java:281)
	at javax.mail.internet.ContentDisposition.<init>(ContentDisposition.java:100)
	at javax.mail.internet.MimeBodyPart.getDisposition(MimeBodyPart.java:1085)
	at javax.mail.internet.MimeBodyPart.getDisposition(MimeBodyPart.java:318)
	at com.atlassian.mail.MailUtils.getBodyFromMultipart(MailUtils.java:469)

Cause

Some mail messages may contain SMIME signature that does not follow RFC 2183 convention and contains header like this:


Content-Disposition: attachment;
	size=362586;
	creation-date=Wed, 23 Sep 2009 15:07:22 GMT;
	modification-date=Wed, 09 Dec 2009 16:17:06 GMT;
	filename="documentName.doc"

In this case the creation-date and modification-date fields are not encapsulated in quotes.

Resolution

The problem is caused by the program that creates the SMIME signature. If RFC 2183 is followed, the header should have the dates encapsulated in quotes:

Content-Disposition: attachment;
size=362586;
creation-date="Wed, 23 Sep 2009 15:07:22 GMT";
modification-date="Wed, 09 Dec 2009 16:17:06 GMT";
filename="documentName.doc"


Last modified on Mar 30, 2016

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.